plugins { id 'com.android.application' } android { // compileSdk 31 compileSdkVersion 29 buildToolsVersion "30.0.0" defaultConfig { applicationId "net.olofson.ballfield" minSdk 14 targetSdk 21 } lintOptions { checkReleaseBuilds false // othrewise it bitches about the SDK being too old } buildTypes { release { minifyEnabled true //shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), '../proguard-local.cfg', '../proguard.cfg' } /*releaseWithDebugInfo { initWith release ndk { debugSymbolLevel 'FULL' } }*/ debug { applicationIdSuffix ".debug" // another "alternative" debuggable true } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } assetPacks = [":assetpack"] // ==ASSETPACK== } dependencies { implementation 'androidx.appcompat:appcompat:1.1.0' // implementation 'androidx.appcompat:appcompat:1.3.1' // implementation 'com.google.android.gms:play-services-games:21.0.0' // ==GOOGLEPLAYGAMESERVICES== }