processing-android
processing-android copied to clipboard
Processing mode and core library to create Android apps with Processing
If ```pull request``` is created to the ```master``` branch, check whether this PR has any problem or not. it is good to make a CI process.
The following code: ``` color bckColor = #EA6411; void setup() { fullScreen(); requestPermission("android.permission.READ_EXTERNAL_STORAGE", "handlePermission"); } void draw() { background(bckColor); } void handlePermission(boolean granted) { if (granted) bckColor = #58EA11; }...
As of now, I observe that [DOWNLOAD_EMU](https://github.com/processing/processing-android/blob/475224e1d0572944f34306b9bb6dd4d1df8a92d0/mode/src/processing/mode/android/SDKDownloader.java#L69) is always set to false. It might have been set because of emulator issues. The download destination will be `/sdk/emulator` based on [this](https://github.com/processing/processing-android/blob/475224e1d0572944f34306b9bb6dd4d1df8a92d0/mode/src/processing/mode/android/SDKDownloader.java#L118)...
getContext() seems to be null when using the sketch as a Wallpaper. Maybe the context could be the Service used for the wallpaper itself.
When sketches get installed on the device they get a default launcher icon: https://github.com/processing/processing-android/blob/master/mode/icons/launcher_96.png This icon should be updated to better match the new project logo.
The OpenGL renderer in the Java mode added buffer object streaming, which should be available on Android with OpenGL ES 3: https://github.com/processing/processing4/issues/196. This should allow porting this functionality to the...
SDK Updater crahes with 'java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchema' error
Due to removal of Java EE modules in Java 11: https://jaxenter.com/jdk-11-java-ee-modules-140674.html This could be fixed by using new new Android SDK Command-line Tools For JVM 9, 10, 11, And Later:...
The integrated debugger is currently disabled due to the changes in the API of the PDE editor in Processing 4: https://github.com/processing/processing-android/blob/master/mode/src/processing/mode/android/AndroidEditor.java#L88
After shutdown of JCentral, we need a new repository to release the core, VR, and AR libraries as artifacts to include in other projects through Gradle, etc. Some options: -...
I wanted to talk about the current user experience(UX). When milestone 1 and 2 are done, we will have a revamped version of the SDK installer, SDK updater and the...