Skip to content

Commit

Permalink
chore: remove bundle splitting for languages.
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Apr 29, 2024
1 parent 7fbfd60 commit ca5ee3f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
minSdk libs.versions.minSdk.get().toInteger()
targetSdk libs.versions.targetSdk.get().toInteger()
versionName '3.8.7'
versionCode 112
versionCode 113
testInstrumentationRunner "org.openobservatory.ooniprobe.TestAndroidJUnitRunner"
buildConfigField 'String', 'OONI_API_BASE_URL', '"https://api.ooni.io/"'
buildConfigField 'String', 'NOTIFICATION_SERVER', '"https://countly.ooni.io"'
Expand Down Expand Up @@ -91,6 +91,13 @@ android {
dimension 'license'
}
}

bundle {
language {
enableSplit = false
}
}

applicationVariants.all { variant ->
variant.resValue "string", "APP_ID", "\"${applicationId}\""
}
Expand Down

0 comments on commit ca5ee3f

Please sign in to comment.