google_sign_in 1.0.1
google_sign_in: ^1.0.1 copied to clipboard
Google Sign-In plugin for Flutter.
1.0.1 #
- Change GMS dependency to 11.+
1.0.0 #
- Make GoogleUserCircleAvatar fade profile image over the top of placeholder
- Bump to released version
0.3.1 #
- Updated GMS to always use latest patch version for 11.0.x builds
0.3.0 #
- Add a new
GoogleIdentityinterface, implemented byGoogleSignInAccount. - Move
GoogleUserCircleAvatarto "widgets" library (exported by base library for backwards compatibility) and make it take an instance ofGoogleIdentity, thus allowing it to be used by other packages that provide implementations ofGoogleIdentity.
0.2.1 #
- Plugin can (once again) be used in apps that extend
FlutterActivity signInSilentlyis guaranteed to never throw- A failed sign-in (caused by a failing
initstep) will no longer block subsequent sign-in attempts
0.2.0 #
- Updated dependencies
- Breaking Change: You need to add a maven section with the "https://maven.google.com" endpoint to the repository section of your
android/build.gradle. For example:
allprojects {
repositories {
jcenter()
maven { // NEW
url "https://maven.google.com" // NEW
} // NEW
}
}
0.1.0 #
- Update to use
GoogleSignInCocoaPod
0.0.6 #
- Fix crash on iOS when signing in caused by nil uiDelegate
0.0.5 #
- Require the use of
support-v4library on Android. This is an API change in that plugin users will need their activity class to be an instance ofandroid.support.v4.app.FragmentActivity. Flutter framework provides such an activity out of the box:io.flutter.app.FlutterFragmentActivity - Ignore "Broken pipe" errors affecting iOS simulator
- Update to non-deprecated
application:openURL:options:on iOS
0.0.4 #
- Prevent race conditions when GoogleSignIn methods are called concurrently (#94)
0.0.3 #
- Fix signOut and disconnect (they were silently ignored)
- Fix test (#10050)
0.0.2 #
- Don't try to sign in again if user is already signed in
0.0.1 #
- Initial Release