chore: fix fastlane deploy

This commit is contained in:
Zane Schepke
2025-11-02 03:30:16 -05:00
parent 880d30fdfa
commit 0abe3f67ef
2 changed files with 20 additions and 11 deletions
+2 -2
View File
@@ -30,10 +30,10 @@ android {
splits {
abi {
isEnable = true
isEnable = !project.hasProperty("noSplits")
reset()
include("armeabi-v7a", "arm64-v8a")
isUniversalApk = true
isUniversalApk = !project.hasProperty("noSplits")
}
}