-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEF-2639 Classes.dex is now always built again (bugfix) (#40)
* DEF-2639 Classes.dex is now always built again (bugfix) * DEF-2639 review fixes
- Loading branch information
1 parent
810f856
commit 2addab7
Showing
6 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
javac -source 1.6 -target 1.6 -cp . com/defoldtest/engine/Engine.java | ||
jar cvf Engine.jar com |
7 changes: 7 additions & 0 deletions
7
server/test-data/sdk/a/defoldsdk/share/java/com/defoldtest/engine/Engine.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.defoldtest.engine; | ||
|
||
public class Engine { | ||
static public String Test() { | ||
return "Hello from the SDK!!!"; | ||
} | ||
} |