mirror of
https://github.com/KokaKiwi/BarInsta
synced 2026-01-01 07:26:31 +00:00
Fix multiple apk build not triggered
This commit is contained in:
parent
437a123f5c
commit
870eac1b6a
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ android {
|
||||||
// Configures multiple APKs based on ABI.
|
// Configures multiple APKs based on ABI.
|
||||||
abi {
|
abi {
|
||||||
// Enables building multiple APKs per ABI.
|
// Enables building multiple APKs per ABI.
|
||||||
enable !project.hasProperty("noAbiSplits") && gradle.startParameter.taskNames.contains("Release")
|
enable !project.hasProperty("noAbiSplits") && !gradle.startParameter.taskNames.isEmpty() && gradle.startParameter.taskNames.get(0).contains('Release')
|
||||||
|
|
||||||
// By default all ABIs are included, so use reset() and include to specify that we only
|
// By default all ABIs are included, so use reset() and include to specify that we only
|
||||||
// want APKs for x86 and x86_64.
|
// want APKs for x86 and x86_64.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue