Skip to content

Commit

Permalink
UPDATE: Minor upgrade of library dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
oasisfeng committed Sep 18, 2018
1 parent b2ff201 commit dc87855
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ dependencies {
implementation project(':shared')
implementation project(':deagle')

implementation 'android.arch.lifecycle:extensions:1.1.1'
implementation 'android.arch.lifecycle:viewmodel:1.1.1'
implementation 'android.arch.lifecycle:extensions:1.1.0'
implementation 'android.arch.lifecycle:viewmodel:1.1.0'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
Expand Down
3 changes: 2 additions & 1 deletion assembly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ android {
}

dependencies {
implementation 'com.google.firebase:firebase-core:16.0.3' // Required by Firebase

// Engine only
engineImplementation project(':engine')
// Mobile only
Expand All @@ -82,7 +84,6 @@ dependencies {
fullImplementation project(':fileprovider')

implementation 'com.android.support:support-v4:27.1.1' // To workaround the dependency conflict caused by "com.android.databinding:library"
implementation 'com.google.firebase:firebase-analytics:15.0.2' // To workaround the dependency conflict caused by "com.google.gms.google-services"
}

// Firebase plug-in
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0-rc03'
classpath 'com.google.gms:google-services:4.0.2'
classpath 'com.google.gms:google-services:4.1.0'
classpath 'io.fabric.tools:gradle:1.25.4'

// NOTE: Do not place your application dependencies here; they belong
Expand Down
11 changes: 6 additions & 5 deletions shared/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@ dependencies {
api 'net.sourceforge.streamsupport:android-retrofuture:1.6.3'
api 'com.android.support:support-annotations:27.1.1'
implementation 'org.jetbrains:annotations:15.0'
implementation 'com.google.android.gms:play-services-analytics:15.0.2'
implementation 'com.google.firebase:firebase-analytics:15.0.2'
implementation 'com.google.firebase:firebase-config:15.0.2'
api 'com.crashlytics.sdk.android:crashlytics:2.9.4'
implementation 'com.google.android.gms:play-services-analytics:16.0.3'
implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-analytics:16.0.3'
implementation 'com.google.firebase:firebase-config:16.0.0'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'
implementation 'com.oasisfeng.condom:library:2.2.0'

testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.8.9'
testImplementation 'org.mockito:mockito-core:2.18.3'

androidTestImplementation 'junit:junit:4.12'
androidTestImplementation('com.android.support.test:runner:1.0.2') { exclude group: 'com.android.support', module: 'support-annotations' }
Expand Down

0 comments on commit dc87855

Please sign in to comment.