Adding first APK build

This commit is contained in:
ml
2026-07-20 09:45:08 +02:00
parent 8712269b51
commit 9e2c9ffbe6
42 changed files with 10012 additions and 6 deletions
+25
View File
@@ -0,0 +1,25 @@
// Top-level Gradle build file. Adapted from SDL2's own android-project
// template (see app/src/main/java/org/libsdl/app/, copied from the same
// template). Unlike the C/SDL2 desktop build, this needs network access
// at build time for Gradle/AGP's own dependency resolution - see
// build-apk.sh.
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}