chore: make universal package when DEBUG

This commit is contained in:
NextAlone 2022-03-23 01:26:42 +08:00
parent 22aa6abe7c
commit 6cae26e674
No known key found for this signature in database
GPG Key ID: DBA7B0AEF8C1CD2C

View File

@ -85,8 +85,13 @@ android {
enable false
universalApk true
} else {
enable true
universalApk false
if (System.getenv("DEBUG_BUILD") == "true") {
enable false
universalApk true
} else {
enable true
universalApk false
}
if (!nativeTarget.isBlank()) {
reset()
include nativeTarget