27 lines
463 B
Groovy
27 lines
463 B
Groovy
// file: Android/common/build.gradle
|
|
// version: 2
|
|
|
|
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
def sdl3AarName = providers.gradleProperty("sdl3AarName").get()
|
|
|
|
android {
|
|
namespace 'com.sasedev.games.common'
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
minSdk 21
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api files("../libs/${sdl3AarName}")
|
|
}
|