Files
commandergenius/project/app/build-template.gradle
T
Sergii Pylypenko f7be0781d9 Fixed compilation
2021-08-22 01:44:37 +03:00

35 lines
825 B
Groovy

plugins {
id 'com.android.application'
}
android {
compileSdk 30
defaultConfig {
applicationId "net.olofson.ballfield"
minSdk 16
targetSdk 30
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), '../proguard-local.cfg', '../proguard.cfg'
ndk {
debugSymbolLevel 'FULL'
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
assetPacks = [":assetpack"] // ==ASSETPACK==
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.gms:play-services-games:21.0.0' // ==GOOGLEPLAYGAMESERVICES==
}