Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AChep committed Nov 7, 2020
1 parent 9068f44 commit 6e10c6b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 15 deletions.
12 changes: 6 additions & 6 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ android {
playstore {
dimension "app"
dependencies {
implementation "com.google.android.gms:play-services-games:19.0.0"
implementation "com.google.android.gms:play-services-auth:17.0.0"
implementation "com.google.android.gms:play-services-games:20.0.1"
implementation "com.google.android.gms:play-services-auth:18.1.0"
}
}
opensource {
Expand All @@ -100,8 +100,8 @@ flutter {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0"
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,10 @@ class PlayGamesPlugin(
RC_SIGN_IN -> {
val result =
Auth.GoogleSignInApi.getSignInResultFromIntent(data)
if (result.isSuccess) {
if (result == null) {
val throwable = IllegalStateException()
continuation.cancel(throwable)
} else if (result.isSuccess) {
continuation.resume(result.signInAccount!!)
} else {
val message =
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
buildscript {
ext.kotlin_version = '1.3.72'
ext.kotlin_version = '1.4.10'
repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath 'com.android.tools.build:gradle:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ dependencies:
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.0
shared_preferences: ^0.5.12
in_app_purchase: ^0.3.4+9
shared_preferences: ^0.5.12+4
in_app_purchase: ^0.3.4+16
fluttertoast: ^7.1.1
url_launcher: ^5.7.2
share: ^0.6.5+2
url_launcher: ^5.7.10
share: ^0.6.5+4
color: ^2.1.1
encrypt: ^4.0.3
package_info: ^0.4.3
package_info: ^0.4.3+2
native_device_orientation: ^0.4.3

dev_dependencies:
Expand Down

0 comments on commit 6e10c6b

Please sign in to comment.