| Index: adblock-android-webviewapp/build.gradle |
| =================================================================== |
| --- a/adblock-android-webviewapp/build.gradle |
| +++ b/adblock-android-webviewapp/build.gradle |
| @@ -1,47 +1,30 @@ |
| apply plugin: 'com.android.application' |
| -allprojects { |
| - repositories { |
| - mavenLocal() |
| - mavenCentral() |
| - } |
| -} |
| - |
| -repositories { |
| - mavenLocal() |
| - mavenCentral() |
| -} |
| - |
| android { |
| compileSdkVersion 21 |
| - buildToolsVersion "25.0.0" |
| + buildToolsVersion "27.0.3" |
| defaultConfig { |
| applicationId "org.adblockplus.libadblockplus.android.webviewapp" |
| minSdkVersion 21 |
| targetSdkVersion 21 |
| versionCode 10 |
| versionName "3.0" |
| + missingDimensionStrategy 'abi', 'abi_all', 'abi_arm', 'abi_x86' |
| } |
| sourceSets { |
| main { |
| manifest.srcFile 'AndroidManifest.xml' |
| java.srcDirs = ['src'] |
| resources.srcDirs = ['src'] |
| res.srcDirs = ['res'] |
| - |
| - jni { |
| - dependencies { |
| - project ":adblock-android" |
| - } |
| - } |
| } |
| } |
| } |
| dependencies { |
| - compile project(':adblock-android-settings') |
| - compile project(':adblock-android-webview') |
| - compile 'com.android.support:appcompat-v7:21.0.3' |
| + implementation project(':adblock-android-settings') |
| + implementation project(':adblock-android-webview') |
| + implementation 'com.android.support:appcompat-v7:21.0.3' |
| } |