processing-android
processing-android copied to clipboard
Processing mode and core library to create Android apps with Processing
Rendering when the watch face is in ambient mode does not show anything on the screen, for example this sketch: ``` void setup() { fullScreen(); strokeCap(ROUND); stroke(255); noFill(); } void...
It would be great if Processing for Android could wrap the [APIs for detecting and processing user input from game controllers](https://developer.android.com/develop/ui/views/touch-and-input/game-controllers/) that are already included in the Android framework. They...
Would it be possible to add a timestamp to the entries in the 'touches' array? Say, the number of milliseconds since the app started? I know there's an 'id' field,...
I came across this error and found a solution. Here is test code to create the problem /////////////////////////////////////////////////// // requestImage test PImage img; boolean go = true; void setup() {...
On the reference page, it says "Almost all of the Processing API can be used in the Android mode." Would it be possible to add a list of things that...
On a new install of P4 and Android mode v 4.6, I get this error: `processing.mode.android.AndroidSDK$BadSDKException: Cannot find avdmanager in C:\Users\****\Documents\Processing\android\sdk\cmdline-tools\latest\bin at processing.mode.android.AndroidSDK.findCliTool(AndroidSDK.java:410) at processing.mode.android.AndroidSDK.(AndroidSDK.java:167) at processing.mode.android.AndroidSDK.locate(AndroidSDK.java:537) at processing.mode.android.AndroidMode.checkSDK(AndroidMode.java:168) at...
Right now the entire build system is stuck at Gradle 7.2 and Android 33 because anything higher would require moving to Gradle 8. which is not backwards-compatible. The official upgrade...
Google introduced changes in the Wear API that deprecates all the classes currently used to implement watch faces. https://stackoverflow.com/questions/59182586/does-androidx-contain-replacements-for-wear-os-classes-like-watchfaceservice https://stackoverflow.com/questions/71259574/gles2watchfaceservice-deprecated-what-now https://developer.android.com/reference/androidx/wear/watchface/package-summary https://developer.android.com/training/wearables/watch-faces/service Updating to the latest version of Wear will...
As per https://github.com/processing/processing-docs/issues/298#issuecomment-140218268, `size()` must be called within `settings` when using variables. This change was required to get the demo to run.
Add a nix shell script for ease of building. A simple `export NIXPKGS_ALLOW_UNFREE=1; nix-shell` and `cd processing; ./gradlew dist` with only `nix` as the dependency. A few minor bugs need...