Skip to content

Commit

Permalink
reverting build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
UjuiUjuMandan committed Jan 11, 2025
1 parent 78b7907 commit 19a960d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions V2rayNG/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,19 @@ android {
val abiFilterList = (properties["ABI_FILTERS"] as? String)?.split(';')
splits {
abi {
isEnable = true
reset()
if (abiFilterList != null && abiFilterList.isNotEmpty()) {
isEnable = true
reset()
include(*abiFilterList.toTypedArray())
} else {
include(
"arm64-v8a",
"armeabi-v7a",
"x86_64",
"x86"
)
}
isUniversalApk = abiFilterList.isNullOrEmpty()
}
}

Expand Down

0 comments on commit 19a960d

Please sign in to comment.