mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 22:17:03 +05:30
feat(build): add internal
build type
Allows testing release builds in parallel with Play Store
This commit is contained in:
parent
f115fd8dda
commit
3bccc8748d
2 changed files with 14 additions and 0 deletions
|
@ -32,6 +32,11 @@ android {
|
|||
useLiveLiterals = false
|
||||
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
|
||||
}
|
||||
buildTypes.create("internal") {
|
||||
matchingFallbacks += "release"
|
||||
signingConfig = signingConfigs["debug"]
|
||||
applicationIdSuffix = ".internal"
|
||||
}
|
||||
}
|
||||
|
||||
baselineProfile {
|
||||
|
|
9
android/src/internal/res/values/strings.xml
Normal file
9
android/src/internal/res/values/strings.xml
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue