[android] Added ignoring of all build variants excepting 'google' and 'web'

This commit is contained in:
Alexander Zatsepin 2018-04-16 16:34:42 +03:00 committed by Slava
parent 3bdb6eb561
commit cb3731b71b

View file

@ -77,7 +77,8 @@ dependencies {
implementation ('com.my.target:mytarget-sdk:4.6.14') {
exclude group: 'com.android.support'
}
implementation('com.mopub:mopub-sdk-native-static:4.17.0@aar') {
implementation('com.mopub:mopub-sdk-native-static:4.20.0@aar') {
exclude group: 'com.android.support'
transitive = true
}
implementation fileTree(dir: '3rd_party', include: '*.jar')
@ -310,6 +311,15 @@ android {
}
}
variantFilter { variant ->
if (!variant.getFlavors().get(0).name.equals("web")
&& !variant.getFlavors().get(0).name.equals("google")) {
println("Variant '" + variant.name + "' is ignored. If you want to build it please " +
"add variant's flavor to the variantFilter condition")
variant.setIgnore(true)
}
}
splits.abi {
boolean enabled = project.hasProperty('splitApk');
println ("Create separate apks: " + enabled)