@@ -27,19 +27,19 @@ ext {
27
27
PUBLISH_GROUP_ID = rootProject. properties[" PUBLISH_GROUP_ID" ] ?: " com.algolia"
28
28
// NOTE: This is the official version number used during publication.
29
29
PUBLISH_VERSION = ' 3.22.14'
30
- APPCOMPAT_VERSION = ' 26.1.0 '
30
+ APPCOMPAT_VERSION = ' 28.0.0-beta01 '
31
31
BUILD_TOOLS_VERSION = ' 27.0.3'
32
32
33
33
nexus_username = System . getenv(" NEXUS_USERNAME" )
34
34
nexus_password = System . getenv(" NEXUS_PASSWORD" )
35
35
}
36
36
37
37
android {
38
- compileSdkVersion 26
38
+ compileSdkVersion 28
39
39
buildToolsVersion BUILD_TOOLS_VERSION
40
40
defaultConfig {
41
41
minSdkVersion 14
42
- targetSdkVersion 26
42
+ targetSdkVersion 28
43
43
versionCode 1
44
44
versionName PUBLISH_VERSION
45
45
}
@@ -84,19 +84,19 @@ repositories {
84
84
}
85
85
86
86
dependencies {
87
- compile " com.android.support:appcompat-v7:$APPCOMPAT_VERSION "
88
- compile " com.android.support:support-annotations:$APPCOMPAT_VERSION "
89
- compile fileTree(include : [' *.jar' ], dir : ' libs' )
87
+ implementation " com.android.support:appcompat-v7:$APPCOMPAT_VERSION "
88
+ implementation " com.android.support:support-annotations:$APPCOMPAT_VERSION "
89
+ implementation fileTree(include : [' *.jar' ], dir : ' libs' )
90
90
91
- testCompile " junit:junit:4.12"
92
- testCompile " org.assertj:assertj-core:1.7 .0"
93
- testCompile " org.robolectric:robolectric:3.7.1"
91
+ testImplementation " junit:junit:4.12"
92
+ testImplementation " org.assertj:assertj-core:3.10 .0"
93
+ testImplementation " org.robolectric:robolectric:3.7.1"
94
94
95
95
// PowerMock brings in the mockito dependency
96
- testCompile " org.powermock:powermock-module-junit4:1.6.4"
97
- testCompile " org.powermock:powermock-module-junit4-rule:1.6.1"
98
- testCompile " org.powermock:powermock-classloading-xstream:1.6.4"
99
- testCompile " org.powermock:powermock-api-mockito:1.6.4"
96
+ testImplementation " org.powermock:powermock-module-junit4:1.6.4"
97
+ testImplementation " org.powermock:powermock-module-junit4-rule:1.6.1"
98
+ testImplementation " org.powermock:powermock-classloading-xstream:1.6.4"
99
+ testImplementation " org.powermock:powermock-api-mockito:1.6.4"
100
100
101
101
javadoc " com.android.support:support-annotations:$APPCOMPAT_VERSION "
102
102
}
0 commit comments