Skip to content

Commit 51f0b22

Browse files
authored
[various] prepare for 9.0.0 stable release (#603)
* removed redundant setActivity method * prepare for 9.0.0 stable release * Google Java Format --------- Co-authored-by: github-actions <>
1 parent cb903b0 commit 51f0b22

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

flutter_appauth/CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [9.0.0-dev.1]
1+
## [9.0.0]
22

33
* **Breaking change** updated minimum supported SDK version to Flutter 3.19/Dart 3.3
44
* [Android] **Breaking changes** updated `compileSdkVersion` to 33 and AGP to 8.0.1 to align with what's used by the AppAuth Android SDK
@@ -12,7 +12,6 @@
1212

1313
## [8.0.2]
1414

15-
1615
* [iOS][macOS] bumped AppAuth iOS dependency to 1.7.6
1716
* [iOS][macOS] **BAD** added Swift Package Manager support but "local" testing didn't uncover. This has been reverted by 8.0.3
1817

flutter_appauth/android/src/main/java/io/crossingthestreams/flutterappauth/FlutterAppauthPlugin.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,6 @@ public class FlutterAppauthPlugin
8989
private AuthorizationService defaultAuthorizationService;
9090
private AuthorizationService insecureAuthorizationService;
9191

92-
private void setActivity(Activity flutterActivity) {
93-
this.mainActivity = flutterActivity;
94-
}
95-
9692
private void onAttachedToEngine(Context context, BinaryMessenger binaryMessenger) {
9793
this.applicationContext = context;
9894
createAuthorizationServices();

flutter_appauth/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_appauth
22
description: This plugin provides an abstraction around the Android and iOS
33
AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID
44
Connect providers
5-
version: 9.0.0-dev.1
5+
version: 9.0.0
66
homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth
77

88
environment:
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
flutter:
1414
sdk: flutter
15-
flutter_appauth_platform_interface: ^9.0.0-dev.1
15+
flutter_appauth_platform_interface: ^9.0.0
1616

1717
flutter:
1818
plugin:

flutter_appauth_platform_interface/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [9.0.0-dev.1]
1+
## [9.0.0]
22

33
* **Breaking change** updated minimum supported SDK version to Flutter 3.19/Dart 3.3
44
* Bumped `flutter_lints` dev dependency

flutter_appauth_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_appauth_platform_interface
22
description: A common platform interface for the flutter_appauth plugin.
3-
version: 9.0.0-dev.1
3+
version: 9.0.0
44
homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth_platform_interface
55

66
environment:

0 commit comments

Comments
 (0)