Android Project

This commit is contained in:
Isuru Samarathunga
2025-10-12 23:04:48 +05:30
parent 35ecd108ab
commit bf755a6d02
798 changed files with 8634 additions and 8 deletions

View File

@ -0,0 +1,29 @@
plugins {
id 'com.android.application'
}
def buildWithCMake = project.hasProperty('BUILD_WITH_CMAKE');
android {
namespace = "org.libsdl.app"
compileSdkVersion 35
defaultConfig {
minSdkVersion 21
targetSdkVersion 35
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lint {
abortOnError = false
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
}