File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,13 @@ import groovy.json.JsonOutput
1818android {
1919 defaultConfig {
2020 applicationId " org.mozilla.reference.browser"
21+ buildToolsVersion Config . buildToolsVersion
22+ compileSdk {
23+ version = release(Config . compileSdkMajorVersion) {
24+ minorApiLevel = Config . compileSdkMinorVersion
25+ }
26+ }
2127 minSdkVersion Config . minSdkVersion
22- compileSdk = Config . compileSdkVersion
2328 targetSdkVersion Config . targetSdkVersion
2429 versionCode 1
2530 versionName Config . generateDebugVersionName()
Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ import java.util.Locale
99
1010object Config {
1111 // Synchronized build configuration for all modules
12- const val compileSdkVersion = 36
12+ const val buildToolsVersion = " 36.1.0"
13+ const val compileSdkMajorVersion = 36
14+ const val compileSdkMinorVersion = 1
1315 const val minSdkVersion = 26
1416 const val targetSdkVersion = 36
1517 const val jvmTargetCompatibility = 17
You can’t perform that action at this time.
0 commit comments