Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 146b751

Browse files
authored
[google_sign_in] Bump GMS dependency and remove the need for Jetifier (#4657)
1 parent 94e80fc commit 146b751

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

packages/google_sign_in/google_sign_in/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
## 5.2.3
2+
3+
* Bumps the Android dependency on `com.google.android.gms:play-services-auth` and therefore removes the need for `jetifier`.
4+
15
## 5.2.2
26

37
* Updates Android compileSdkVersion to 31.
4-
* Removes depenedncy on `meta`.
8+
* Removes dependency on `meta`.
59

610
## 5.2.1
711

packages/google_sign_in/google_sign_in/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
dependencies {
51-
implementation 'com.google.android.gms:play-services-auth:16.0.1'
52-
implementation 'com.google.guava:guava:20.0'
51+
implementation 'com.google.android.gms:play-services-auth:20.0.1'
52+
implementation 'com.google.guava:guava:28.1-android'
5353
testImplementation 'junit:junit:4.12'
5454
testImplementation 'org.mockito:mockito-inline:3.9.0'
5555
}

packages/google_sign_in/google_sign_in/android/src/main/java/io/flutter/plugins/googlesignin/GoogleSignInPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public void onMethodCall(MethodCall call, Result result) {
183183

184184
/**
185185
* A delegate interface that exposes all of the sign-in functionality for other plugins to use.
186-
* The below {@link #Delegate} implementation should be used by any clients unless they need to
186+
* The below {@link Delegate} implementation should be used by any clients unless they need to
187187
* override some of these functions, such as for testing.
188188
*/
189189
public interface IDelegate {
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
org.gradle.jvmargs=-Xmx1536M
22
android.enableR8=true
33
android.useAndroidX=true
4-
android.enableJetifier=true

packages/google_sign_in/google_sign_in/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for Google Sign-In, a secure authentication system
33
for signing in with a Google account on Android and iOS.
44
repository: https://github.com/flutter/plugins/tree/master/packages/google_sign_in/google_sign_in
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
6-
version: 5.2.2
6+
version: 5.2.3
77

88
environment:
99
sdk: ">=2.14.0 <3.0.0"

0 commit comments

Comments
 (0)