This file contains hidden or 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
(module-name net.kjeldahl.kawatest) | |
(define-alias Bundle android.os.Bundle) | |
(define-alias Activity android.app.Activity) | |
(define-alias View android.view.View) | |
(define-alias TextView android.widget.TextView) | |
(define-alias LinearLayout android.widget.LinearLayout) | |
(define-alias Override java.lang.Override) | |
(define-alias Date java.util.Date) |
This file contains hidden or 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
mariuss-mbp:kawa marius$ make | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make do-preprocess SELECTOR='%java7' | |
CLASSPATH=".:$CLASSPATH" java gnu.kawa.util.PreProcess \ | |
%java7 +use:com.sun.net.httpserver +enable:XML \ | |
`sed -e 's|\([^ ]*\)|./\1|' < ./patch-source-list` | |
(variant java7 maps to: +JAVA5 +JAVA2 +use:java.util.IdentityHashMap +use:java.lang.CharSequence +use:java.lang.Throwable.getCause +use:java.net.URI +use:java.util.regex +SAX2 +use:java.nio +use:org.w3c.dom.Node +use:javax.xml.transform +JAXP-1.3 -JAXP-QName +JAVA6 +JAVA7 -JAVA8 -JAVA6COMPAT5 +use:java.text.Normalizer +use:javax.lang.model +use:java.lang.invoke -Android) | |
caught java.io.FileNotFoundException: ./gnu/mapping/CharArrayInPort.java (No such file or directory) | |
java.io.FileNotFoundException: ./gnu/mapping/CharArrayInPort.java (No such file or directory) | |
at java.io.FileInputStream.open(Native Method) | |
at java.io.FileInputStream.<init>(FileInputStream.java:146) |
This file contains hidden or 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
Mariuss-MacBook-Pro:test2 marius$ tree ios | |
ios | |
├── build | |
│ ├── classes | |
│ │ └── main | |
│ │ └── com | |
│ │ └── foo | |
│ │ └── bar | |
│ │ ├── IOSLauncher$InnerClass.class | |
│ │ └── IOSLauncher.class |
This file contains hidden or 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
Mariuss-MacBook-Pro:test2 marius$ tree ios/build | |
ios/build | |
├── classes | |
│ └── main | |
│ └── com | |
│ └── foo | |
│ └── bar | |
│ ├── IOSLauncher$InnerClass.class | |
│ └── IOSLauncher.class | |
├── dependency-cache |
This file contains hidden or 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
Mariuss-MacBook-Pro:test2 marius$ ./gradlew clean ios:assemble launchIPhoneSimulator | |
:android:clean UP-TO-DATE | |
:core:clean | |
:desktop:clean UP-TO-DATE | |
:gwt:clean UP-TO-DATE | |
:ios:clean | |
:core:compileJava | |
warning: [options] bootstrap class path not set in conjunction with -source 1.6 | |
1 warning | |
:core:processResources UP-TO-DATE |
This file contains hidden or 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
buildscript { | |
repositories { | |
maven { | |
url 'https://github.com/steffenschaefer/gwt-gradle-plugin/raw/maven-repo/' | |
} | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.2' |
This file contains hidden or 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
apply plugin: "java" | |
apply plugin: "application" | |
sourceCompatibility = 1.6 | |
mainClassName = "net.kjeldahl.mktest.client.GwtLauncher" | |
sourceSets.main.java.srcDirs = [ "src/" ] | |
sourceSets.main.resources.srcDirs = [file("../android/assets").getAbsolutePath()] | |
sourceSets.main.compileClasspath += files(sourceSets.main.java.srcDirs) | |
sourceSets.main.compileClasspath += files(project(':core').sourceSets.main.java.srcDirs) |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
marius@marius-ThinkPad-W530:~/p/gdxproj2/mytest$ /usr/lib/jvm/java-7-oracle/bin/java -Xms1024m -Xmx1024m -Dgwt.persistentunitcachedir=/home/marius/p/gdxproj2/mytest/gwt/build/gwt/cache -Xms256M -Xmx256M -Dfile.encoding=UTF-8 -cp /home/marius/p/gdxproj2/mytest/gwt/src/main/java:/home/marius/p/gdxproj2/mytest/gwt/build/resources/main:/home/marius/p/gdxproj2/mytest/core/src/main/java:/home/marius/p/gdxproj2/mytest/core/build/libs/core-1.0.jar:/home/marius/.gradle/caches/artifacts-26/filestore/com.badlogicgames.gdx/gdx-backend-gwt/1.0-SNAPSHOT/jar/d7e91302918c2b5c8365655d118635ab9785f4a6/gdx-backend-gwt-1.0-SNAPSHOT.jar:/home/marius/.gradle/caches/artifacts-26/filestore/com.badlogicgames.gdx/gdx-backend-gwt/1.0-SNAPSHOT/jar/d2d2f161e3b8809fe7153e85fec094807bae12c8/gdx-backend-gwt-1.0-SNAPSHOT-sources.jar:/home/marius/.gradle/caches/artifacts-26/filestore/com.badlogicgames.gdx/gdx/1.0-SNAPSHOT/jar/cced0e484b74b918acc1dea046a94a7aa6877b2/gdx-1.0-SNAPSHOT-sources.jar:/home/marius/.gradle/caches/artifacts-26/filesto |
This file contains hidden or 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
marius@marius-ThinkPad-W530:~/p/gdxproj2/mytest$ /usr/lib/jvm/java-7-oracle/bin/java -Dgwt.persistentunitcachedir=/home/marius/p/gdxproj2/mytest/gwt/build/gwt/cache -Xms256M -Xmx256M -Dfile.encoding=UTF-8 -cp /home/marius/p/gdxproj2/mytest/gwt/src:/home/marius/p/gdxproj2/mytest/gwt/build/resources/main:/home/marius/p/gdxproj2/mytest/core/build/libs/core-1.0.jar:/home/marius/.gradle/caches/artifacts-26/filestore/com.badlogicgames.gdx/gdx-backend-gwt/1.0-SNAPSHOT/jar/d7e91302918c2b5c8365655d118635ab9785f4a6/gdx-backend-gwt-1.0-SNAPSHOT.jar:/home/marius/.gradle/caches/artifacts-26/filestore/com.badlogicgames.gdx/gdx-backend-gwt/1.0-SNAPSHOT/jar/d2d2f161e3b8809fe7153e85fec094807bae12c8/gdx-backend-gwt-1.0-SNAPSHOT-sources.jar:/home/marius/.gradle/caches/artifacts-26/filestore/com.badlogicgames.gdx/gdx/1.0-SNAPSHOT/jar/cced0e484b74b918acc1dea046a94a7aa6877b2/gdx-1.0-SNAPSHOT-sources.jar:/home/marius/.gradle/caches/artifacts-26/filestore/com.badlogicgames.gdx/gdx/1.0-SNAPSHOT/jar/91cb8ceda656e12e5eebdb19cf86b0d4c55 |
This file contains hidden or 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
5384 dalvikvm W threadid=11: thread exiting with uncaught exception (group=0x4152d700) | |
5384 AndroidRuntime E FATAL EXCEPTION: GLThread 213 | |
5384 AndroidRuntime E com.badlogic.gdx.utils.GdxRuntimeException: Pixmap already disposed | |
5384 AndroidRuntime E at com.badlogic.gdx.graphics.Pixmap.getPixels(Pixmap.java:356) | |
5384 AndroidRuntime E at com.badlogic.gdx.graphics.GLTexture.uploadImageData(GLTexture.java:270) | |
5384 AndroidRuntime E at com.badlogic.gdx.graphics.Texture.load(Texture.java:145) | |
5384 AndroidRuntime E at com.badlogic.gdx.graphics.Texture.reload(Texture.java:158) | |
5384 AndroidRuntime E at com.badlogic.gdx.graphics.Texture.invalidateAllTextures(Texture.java:231) | |
5384 AndroidRuntime E at com.badlogic.gdx.backends.android.AndroidGraphics.onSurfaceCreated(AndroidGraphics.java:351) | |
5384 AndroidRuntime E at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1501) |