Files
games/Android/common/build.gradle
2026-09-16 11:32:07 +02:00

29 lines
580 B
Groovy

// file: Android/common/build.gradle
// version: 4
plugins {
id 'com.android.library'
}
def sdl3AarName = providers.gradleProperty("sdl3AarName").get()
def androidNdkVersion = providers.gradleProperty("androidNdkVersion").get()
android {
namespace 'com.sasedev.games.common'
compileSdk 36
ndkVersion androidNdkVersion
defaultConfig {
minSdk 21
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
compileOnly files("../libs/${sdl3AarName}")
}