32 lines
659 B
Groovy
32 lines
659 B
Groovy
// file: Android/game-reflex-poc/build.gradle
|
|
// version: 5
|
|
|
|
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
def sdl3AarName = providers.gradleProperty("sdl3AarName").get()
|
|
|
|
android {
|
|
namespace 'com.sasedev.games.reflex'
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
applicationId 'com.sasedev.games.reflex'
|
|
minSdk 21
|
|
targetSdk 36
|
|
versionCode 1
|
|
versionName '0.1.0-0-pre.7.fix.1'
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation files("../libs/${sdl3AarName}")
|
|
implementation project(':common')
|
|
}
|