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

Delta Between Two Patch Sets: libadblockplus-android-tests/build.gradle

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Left Patch Set: updated Ant/Maven build configuration files Created Oct. 3, 2016, 6:57 a.m.
Right Patch Set: changed packages, now using AdblockEngine (original ABPEngine), improved demo app Created Oct. 25, 2016, 11:20 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 apply plugin: 'com.android.application' 1 apply plugin: 'com.android.application'
2 2
3 allprojects { 3 allprojects {
4 repositories { 4 repositories {
5 mavenLocal() 5 mavenLocal()
6 mavenCentral() 6 mavenCentral()
7 } 7 }
8 } 8 }
9 9
10 repositories { 10 repositories {
11 mavenLocal() 11 mavenLocal()
12 mavenCentral() 12 mavenCentral()
13 } 13 }
14 14
15 android { 15 android {
16 compileSdkVersion 21 16 compileSdkVersion 16
17 buildToolsVersion "22.0.1" 17 buildToolsVersion "24.0.1"
18 18
19 defaultConfig { 19 defaultConfig {
20 applicationId "org.adblockplus.libadblockplus.tests" 20 applicationId "org.adblockplus.libadblockplus.tests"
21 minSdkVersion 17 21 minSdkVersion 9
22 targetSdkVersion 17 22 targetSdkVersion 16
23 versionCode 359 23 versionCode 1
24 versionName "1.3" 24 versionName "1.0"
25 25
26 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 26 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
27 } 27 }
28 28
29 sourceSets { 29 sourceSets {
30 main { 30 main {
31 manifest.srcFile 'AndroidManifest.xml' 31 manifest.srcFile 'AndroidManifest.xml'
32 } 32 }
33 33
34 androidTest { 34 androidTest {
35 manifest.srcFile 'AndroidManifest.xml' 35 manifest.srcFile 'AndroidManifest.xml'
36 java.srcDirs = ['src'] 36 java.srcDirs = ['src']
37 37
38 jni { 38 jni {
39 dependencies { 39 dependencies {
40 project ":libadblockplus-android" 40 project ":libadblockplus-android"
41 } 41 }
42 } 42 }
43 } 43 }
44 } 44 }
45 } 45 }
46 46
47 dependencies { 47 dependencies {
48 androidTestCompile project(':libadblockplus-android') 48 androidTestCompile project(':libadblockplus-android')
49 androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') 49 androidTestCompile fileTree(include: ['*.jar'], dir: 'libs')
50 } 50 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld