feat(build): add internal build type

Allows testing release builds in parallel with Play Store
This commit is contained in:
Harsh Shandilya 2024-02-22 13:41:34 +05:30
parent f115fd8dda
commit 3bccc8748d
2 changed files with 14 additions and 0 deletions

View file

@ -32,6 +32,11 @@ android {
useLiveLiterals = false
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
}
buildTypes.create("internal") {
matchingFallbacks += "release"
signingConfig = signingConfigs["debug"]
applicationIdSuffix = ".internal"
}
}
baselineProfile {