19
19
apply plugin : ' com.android.application'
20
20
21
21
android {
22
- compileSdkVersion 25
23
- buildToolsVersion " 25 .0.2"
22
+ compileSdkVersion 26
23
+ buildToolsVersion " 26 .0.2"
24
24
defaultConfig {
25
25
applicationId " org.apache.cordova.unittests"
26
26
minSdkVersion 16
27
- targetSdkVersion 25
27
+ targetSdkVersion 26
28
28
versionCode 1
29
29
versionName " 1.0"
30
30
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
@@ -38,16 +38,15 @@ android {
38
38
}
39
39
40
40
dependencies {
41
- compile fileTree(dir : ' libs' , include : [' *.jar' ])
42
- debugCompile project(path : " :CordovaLib" , configuration : " debug" )
43
- releaseCompile project(path : " :CordovaLib" , configuration : " release" )
44
- androidTestCompile(' com.android.support.test.espresso:espresso-core:2.2.2' , {
41
+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
42
+ implementation project(path : " :CordovaLib" )
43
+ androidTestImplementation(' com.android.support.test.espresso:espresso-core:2.2.2' , {
45
44
exclude group : ' com.android.support' , module : ' support-annotations'
46
45
})
47
- androidTestCompile (' com.android.support.test.espresso:espresso-web:2.2.2' , {
46
+ androidTestImplementation (' com.android.support.test.espresso:espresso-web:2.2.2' , {
48
47
exclude group : ' com.android.support' , module : ' support-annotations'
49
48
})
50
- compile ' com.android.support:appcompat-v7:25 .1.1 '
51
- testCompile ' junit:junit:4.12'
52
- testCompile ' org.json:json:20140107'
49
+ implementation ' com.android.support:appcompat-v7:26 .1.0 '
50
+ testImplementation ' junit:junit:4.12'
51
+ testImplementation ' org.json:json:20140107'
53
52
}
0 commit comments