Upgrade to Android API 36 (Android 16)
This commit is contained in:
+8
-8
@@ -1,25 +1,25 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
namespace "net.moasdawiki.app"
|
||||
compileSdk 34 // 34 = Android 14
|
||||
namespace = "net.moasdawiki.app"
|
||||
compileSdk = 36 // 36 = Android 16
|
||||
defaultConfig {
|
||||
applicationId "net.moasdawiki.app"
|
||||
minSdk 28 // 28 = Android 9
|
||||
targetSdk 34 // should be same as compileSdk
|
||||
versionCode 46
|
||||
versionName "3.9.3.0"
|
||||
minSdk = 28 // 28 = Android 9
|
||||
targetSdk = 36 // should be same as compileSdk
|
||||
versionCode = 46
|
||||
versionName = "3.9.3.0"
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
}
|
||||
buildFeatures {
|
||||
buildConfig true
|
||||
buildConfig = true
|
||||
}
|
||||
lintOptions {
|
||||
// Workaround for NullPointerException in :app:lintVitalAnalyzeRelease in fdroid build
|
||||
checkReleaseBuilds false
|
||||
checkReleaseBuilds = false
|
||||
}
|
||||
base {
|
||||
archivesName = "moasdawiki-" + defaultConfig.versionName + "-" + defaultConfig.versionCode
|
||||
|
||||
Reference in New Issue
Block a user