Skip to content

Commit df4dc88

Browse files
committed
targetSdk 36.
1 parent e6eb354 commit df4dc88

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

mobile/build.gradle

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,17 @@ if (new File(getRootDir().absolutePath + "/buildSrc").exists() || project.plugin
1313
}
1414

1515
android {
16-
namespace = 'io.syslogic.cloudbuild'
17-
buildToolsVersion = '35.0.0'
16+
namespace = "io.syslogic.cloudbuild"
17+
buildToolsVersion = "36.0.0"
1818
defaultConfig {
19-
applicationId = 'io.syslogic.cloudbuild'
19+
applicationId = "io.syslogic.cloudbuild"
2020
minSdk = 22
21-
compileSdk = 35
22-
targetSdk = 35
21+
compileSdk = 36
22+
targetSdk = 36
2323
versionCode = 2
2424
versionName = "1.0.1"
2525
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2626
testBuildType = "debug"
27-
multiDexEnabled = true
2827
}
2928

3029
compileOptions {
@@ -56,11 +55,13 @@ android {
5655
buildTypes {
5756

5857
debug {
59-
signingConfig signingConfigs.debug
58+
signingConfig = signingConfigs.debug
59+
multiDexEnabled = true
6060
}
6161

6262
release {
63-
signingConfig signingConfigs.release
63+
signingConfig = signingConfigs.release
64+
multiDexEnabled = true
6465

6566
firebaseAppDistribution {
6667
serviceCredentialsFile = rootProject.file("credentials/google-service-account.json")

0 commit comments

Comments
 (0)