Compare commits

...

2 Commits

Author SHA1 Message Date
Bix
e256e29387 Add tested Optimised string.
Uses Genshin Impact package name, In order to enable device features.

Signed-off-by: Bix <xq9zp7f2@proton.me>
2025-06-21 12:17:59 +00:00
Bix
caf79d7562 add Optimised build config.
Signed-off-by: Bix <xq9zp7f2@proton.me>
2025-06-21 11:09:10 +00:00

View File

@@ -127,7 +127,7 @@ android {
applicationIdSuffix = ".relWithDebInfo"
isJniDebuggable = true
}
// Signed by debug key disallowing distribution on Play Store.
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
debug {
@@ -140,14 +140,22 @@ android {
}
}
flavorDimensions.add("version")
productFlavors {
create("mainline") {
isDefault = true
dimension = "version"
android {
flavorDimensions.add("version")
productFlavors {
create("mainline") {
dimension = "version"
// No need to set applicationId here
}
create("genshinSpoof") {
dimension = "version"
applicationId = "com.miHoYo.Yuanshen" // Correct use of applicationId inside the flavor block
}
}
}
externalNativeBuild {
cmake {
version = "3.22.1"