diff --git a/app/build.gradle b/app/build.gradle index 7cbf0c0..dee7efc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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