Skip to content

Commit

Permalink
Updated libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
mtogneri committed Sep 20, 2018
1 parent 6233412 commit cc8e09b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
7 changes: 6 additions & 1 deletion build.gradle
Expand Up @@ -13,7 +13,7 @@ buildscript

dependencies
{
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'io.fabric.tools:gradle:1.25.4'
}
}
Expand All @@ -24,6 +24,11 @@ allprojects
{
google()
jcenter()

maven
{
url 'https://s3.amazonaws.com/repo.commonsware.com'
}
}

ext
Expand Down
6 changes: 3 additions & 3 deletions common/build.gradle
Expand Up @@ -9,8 +9,8 @@ android
{
minSdkVersion 16
targetSdkVersion 27
versionCode 12
versionName '2.0.0'
versionCode 13
versionName '2.1.0'
}

signingConfigs
Expand Down Expand Up @@ -69,7 +69,7 @@ dependencies
api "com.android.support:design:$support"

// gson
api 'com.google.code.gson:gson:2.8.4'
api 'com.google.code.gson:gson:2.8.5'

// wearable
api 'com.google.android.gms:play-services-wearable:15.0.1'
Expand Down
18 changes: 9 additions & 9 deletions mobile/build.gradle
Expand Up @@ -11,8 +11,8 @@ android
applicationId 'com.mauriciotogneri.shoppinglist'
minSdkVersion 16
targetSdkVersion 27
versionCode 12
versionName '2.0.0'
versionCode 13
versionName '2.1.0'
}

signingConfigs
Expand Down Expand Up @@ -73,24 +73,24 @@ dependencies
wearApp project(':wear')

// okhttp
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
implementation 'com.squareup.okhttp3:okhttp:3.11.0'

// glide
implementation 'com.github.bumptech.glide:glide:4.7.1'
implementation 'com.github.bumptech.glide:glide:4.8.0'

// android utils
implementation 'com.mauriciotogneri:androidutils:2.9.0'
implementation 'com.mauriciotogneri:androidutils:3.3.0'

// database
implementation 'com.github.satyan:sugar:1.3.1'

// google analytics
implementation 'com.google.android.gms:play-services-analytics:15.0.2'
implementation 'com.google.android.gms:play-services-analytics:16.0.3'

// crashlytics
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.2'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'

// room
implementation 'android.arch.persistence.room:runtime:1.1.0'
annotationProcessor 'android.arch.persistence.room:compiler:1.1.0'
implementation 'android.arch.persistence.room:runtime:1.1.1'
annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'
}
2 changes: 1 addition & 1 deletion settings.gradle
@@ -1 +1 @@
include ':mobile', ':wear', ':common'
include ':mobile', ':wear', ':common'
4 changes: 2 additions & 2 deletions wear/build.gradle
Expand Up @@ -10,8 +10,8 @@ android
applicationId 'com.mauriciotogneri.shoppinglist'
minSdkVersion 23
targetSdkVersion 27
versionCode 12
versionName '2.0.0'
versionCode 13
versionName '2.1.0'
}

signingConfigs
Expand Down

0 comments on commit cc8e09b

Please sign in to comment.