This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
splits { | |
abi { | |
// Enables building multiple APKs per ABI only when build with property | |
enable project.hasProperty('splitApks') | |
reset() | |
// Resets the list of ABIs that Gradle should create APKs for to none. | |
// Specifies a list of ABIs that Gradle should create APKs for. | |
include "armeabi-v7a", "arm64-v8a", "x86" |
NewerOlder