make android ci apk build work, also launches and connects to tox

This commit is contained in:
2024-06-02 18:09:20 +02:00
parent 7a2d7336fb
commit e7b1eec2cc
15 changed files with 271 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package org.libsdl.app.tomato;
import org.libsdl.app.SDLActivity;
public class TomatoActivity extends SDLActivity {
protected String[] getLibraries() {
return new String[] {
// "SDL3", // we link statically
// "SDL3_image",
// "SDL3_mixer",
// "SDL3_net",
// "SDL3_ttf",
// "main"
"tomato"
};
}
}