Skip to content

Commit

Permalink
Updated compile to implementation in gradle to reduce the build warni…
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydeetay authored Aug 20, 2018
1 parent 5bd0ba7 commit 09f8e61
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,20 +66,20 @@ android {
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-annotations:23.2.1'
compile 'com.google.guava:guava:19.0'
gmsCompile 'com.google.android.gms:play-services-analytics:8.4.0'
gmsCompile 'com.google.android.gms:play-services-location:8.4.0'
compile "com.android.support:support-v4:26.1.0"
compile 'com.google.dagger:dagger:2.14.1'
provided 'javax.annotation:jsr250-api:1.0' // For annotations not in Android but needed by Dagger
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:support-annotations:23.2.1'
implementation 'com.google.guava:guava:19.0'
gmsImplementation 'com.google.android.gms:play-services-analytics:8.4.0'
gmsImplementation 'com.google.android.gms:play-services-location:8.4.0'
implementation "com.android.support:support-v4:26.1.0"
implementation 'com.google.dagger:dagger:2.14.1'
compileOnly 'javax.annotation:jsr250-api:1.0' // For annotations not in Android but needed by Dagger
annotationProcessor 'com.google.dagger:dagger-compiler:2.14.1'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.robolectric:robolectric:3.0'
androidTestCompile 'junit:junit:4.12'
androidTestCompile 'org.easymock:easymock:2.5.2'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:1.10.19'
testImplementation 'org.robolectric:robolectric:3.0'
androidTestImplementation 'junit:junit:4.12'
androidTestImplementation 'org.easymock:easymock:2.5.2'
}

apply plugin: 'com.google.gms.google-services'
Expand Down

0 comments on commit 09f8e61

Please sign in to comment.