Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblock-android-webviewapp/build.gradle

Issue 29784577: Issue 6205 - Upload artifacs to maven repository (Closed)
Patch Set: Adjustments regarding comments Created July 10, 2018, 12:39 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « adblock-android-webview/build.gradle ('k') | adblock-android/AndroidManifest.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'
}
« no previous file with comments | « adblock-android-webview/build.gradle ('k') | adblock-android/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld