OLD | NEW |
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 { |
(...skipping 26 matching lines...) Expand all Loading... |
37 jni { | 37 jni { |
38 dependencies { | 38 dependencies { |
39 project(path: ":adblock-android", configuration: getAbiFlavor() + "Deb
ug") | 39 project(path: ":adblock-android", configuration: getAbiFlavor() + "Deb
ug") |
40 } | 40 } |
41 } | 41 } |
42 } | 42 } |
43 } | 43 } |
44 } | 44 } |
45 | 45 |
46 dependencies { | 46 dependencies { |
47 androidTestCompile project(path: ':adblock-android', configuration: getAbiFlav
or() + "Debug") | |
48 androidTestCompile project(':adblock-android-settings') | 47 androidTestCompile project(':adblock-android-settings') |
49 androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') | 48 androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') |
50 | 49 |
51 androidTestCompile 'org.mockito:mockito-core:1.10.19' | 50 androidTestCompile 'org.mockito:mockito-core:1.10.19' |
52 androidTestCompile 'com.google.dexmaker:dexmaker:1.2' | 51 androidTestCompile 'com.google.dexmaker:dexmaker:1.2' |
53 androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2' | 52 androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2' |
54 } | 53 } |
OLD | NEW |