Issues getting up and running on android mode
in
Android Processing
•
1 year ago
Hey all I'm trying to get set up with processing in android mode. I have processing 2.0 alpha 5. the code I have is pretty simple
But when I run it...
I'm pretty sure I got all the parts of the sdk that the processing wiki said. Is there something I'm missing
- void setup(){
- size(screenWidth, screenHeight, P2D);
- background(0);
- frameRate(15);
- }
- void draw(){
- println(mouseX);
- }
But when I run it...
- Exception in thread "Thread-35" java.lang.NullPointerException
- at processing.mode.android.AndroidBuild.writeLocalProps(AndroidBuild.java:547)
- at processing.mode.android.AndroidBuild.createProject(AndroidBuild.java:135)
- at processing.mode.android.AndroidBuild.build(AndroidBuild.java:71)
- at processing.mode.android.AndroidMode.handleRunEmulator(AndroidMode.java:147)
- at processing.mode.android.AndroidEditor$13.run(AndroidEditor.java:344)
I'm pretty sure I got all the parts of the sdk that the processing wiki said. Is there something I'm missing
1