Merge pull request #388 from okcaptain/dev

build.gradle
pull/390/head
okcaptain 2 years ago committed by GitHub
commit 25f2216482
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      app/build.gradle

@ -73,6 +73,14 @@ android {
}
}
android.applicationVariants.all { variant ->
if (variant.buildType.name == 'release' && variant.productFlavors[0].name == 'mobile') {
variant.mergeAssets.doLast {
delete(fileTree(dir: variant.mergeAssets.outputDir, includes: ['x5.tbs.apk']))
}
}
}
configurations.configureEach {
resolutionStrategy {
force 'com.squareup.okhttp3:okhttp:' + okhttpVersion

Loading…
Cancel
Save