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 {

View File

@ -0,0 +1,9 @@
<!--
~ Copyright © 2021-2024 Harsh Shandilya.
~ Use of this source code is governed by an MIT-style
~ license that can be found in the LICENSE file or at
~ https://opensource.org/licenses/MIT.
-->
<resources>
<string name="app_name">Claw 🤫</string>
</resources>