File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed
Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -25,21 +25,22 @@ android {
2525}
2626
2727dependencies {
28- compile " com.android.support:appcompat-v7:$supportLibraryVersion "
28+ implementation " com.android.support:appcompat-v7:$supportLibraryVersion "
2929
30- compile (" com.github.hotchemi:permissionsdispatcher:$permissionsdispatcherVersion " ) {
30+ implementation (" com.github.hotchemi:permissionsdispatcher:$permissionsdispatcherVersion " ) {
3131 exclude module : ' support-compat'
3232 exclude module : ' support-v13'
3333 }
3434 annotationProcessor " com.github.hotchemi:permissionsdispatcher-processor:$permissionsdispatcherVersion "
3535
36- compile " org.androidannotations:androidannotations-api:$androidannotationsVersion "
36+ implementation " org.androidannotations:androidannotations-api:$androidannotationsVersion "
3737 annotationProcessor " org.androidannotations:androidannotations:$androidannotationsVersion "
3838
3939 annotationProcessor project(' :androidannotationspermissionsdispatcherplugin' )
4040
41- testCompile " junit:junit:$junitVersion "
42- androidTestCompile (" com.android.support.test.espresso:espresso-core:$espressoCoreVersion " , {
41+ testImplementation " junit:junit:$junitVersion "
42+ androidTestImplementation (" com.android.support.test.espresso:espresso-core:$espressoCoreVersion " , {
4343 exclude group : ' com.android.support' , module : ' support-annotations'
44+ exclude group : ' com.google.code.findbugs'
4445 })
4546}
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ buildscript {
66 apply from : ' dependencies.gradle'
77
88 repositories {
9+ google()
910 jcenter()
1011 }
1112 dependencies {
@@ -19,8 +20,8 @@ buildscript {
1920
2021allprojects {
2122 repositories {
23+ google()
2224 jcenter()
23- maven { url " https://maven.google.com" }
2425 }
2526}
2627
Original file line number Diff line number Diff line change 55
66 minSdkVersionVersion = 23
77 sdkVersion = 27
8- buildToolsVersionVersion = " 27.0.0 "
8+ buildToolsVersionVersion = " 27.0.3 "
99
10- toolsBuildGradleVersion = ' 2.3.3 '
10+ toolsBuildGradleVersion = ' 3.0.1 '
1111 gradleVersionsPluginVersion = ' 0.17.0'
1212 androidMavenGradlePluginVersion = ' 1.5'
1313
1414 espressoCoreVersion = ' 3.0.1'
1515 junitVersion = ' 4.12'
16- supportLibraryVersion = ' 27.0.0 '
17- androidannotationsVersion = ' 4.3.1 '
18- permissionsdispatcherVersion = ' 3.0.1 '
16+ supportLibraryVersion = ' 27.0.2 '
17+ androidannotationsVersion = ' 4.4.0 '
18+ permissionsdispatcherVersion = ' 3.1.0 '
1919}
You can’t perform that action at this time.
0 commit comments