forked from hardcoresushi/DroidFS
Fix gradle nosplits
This commit is contained in:
parent
de3a1a9538
commit
f6d1fc8b67
@ -13,6 +13,12 @@ if (hasProperty("disableGocryptfs")) {
|
||||
ext.disableGocryptfs = false
|
||||
}
|
||||
|
||||
if (hasProperty("nosplits")) {
|
||||
ext.splits = false
|
||||
} else {
|
||||
ext.splits = true
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 33
|
||||
buildToolsVersion "33.0.0"
|
||||
@ -44,7 +50,7 @@ android {
|
||||
}
|
||||
}
|
||||
|
||||
if (!hasProperty("nosplits")) {
|
||||
if (project.ext.splits) {
|
||||
splits {
|
||||
abi {
|
||||
enable true
|
||||
|
Loading…
Reference in New Issue
Block a user