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

Unified Diff: adblock-android-tests/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-settings/build.gradle ('k') | adblock-android-webview/build.gradle » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblock-android-tests/build.gradle
===================================================================
--- a/adblock-android-tests/build.gradle
+++ b/adblock-android-tests/build.gradle
@@ -1,54 +1,36 @@
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.tests"
minSdkVersion 21
targetSdkVersion 21
versionCode 2
versionName "1.1"
+ missingDimensionStrategy 'abi', 'abi_all', 'abi_arm', 'abi_x86'
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
}
androidTest {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
-
- jni {
- dependencies {
- project(path: ":adblock-android", configuration: getAbiFlavor() + "Debug")
- }
- }
}
}
}
dependencies {
- androidTestCompile project(path: ':adblock-android', configuration: getAbiFlavor() + "Debug")
- androidTestCompile project(':adblock-android-settings')
- androidTestCompile fileTree(include: ['*.jar'], dir: 'libs')
+ androidTestImplementation project(':adblock-android-settings')
+ androidTestImplementation fileTree(include: ['*.jar'], dir: 'libs')
- androidTestCompile 'org.mockito:mockito-core:1.10.19'
- androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
- androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
+ androidTestImplementation 'org.mockito:mockito-core:1.10.19'
+ androidTestImplementation 'com.google.dexmaker:dexmaker:1.2'
+ androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2'
}
« no previous file with comments | « adblock-android-settings/build.gradle ('k') | adblock-android-webview/build.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld