forked from organicmaps/organicmaps
[android] Added ignoring of all build variants excepting 'google' and 'web'
This commit is contained in:
parent
3bdb6eb561
commit
cb3731b71b
1 changed files with 11 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue