Skip to content

Commit

Permalink
[flutter_appauth] fix non-modular header import issue (MaikuB#126)
Browse files Browse the repository at this point in the history
* fix non-modular header import issue

* update changelog entry for 0.9.2
  • Loading branch information
MaikuB authored Jun 17, 2020
1 parent e9ab9f1 commit 0ee0e3e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
4 changes: 4 additions & 0 deletions flutter_appauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.9.2

* [iOS] Fixes release build issue about including a non-modular header that came about from release 0.9.1+1. If you experienced issues with 0.9.1+1 (in my experience only occurs if your iOS app uses Swift), please update to 0.9.2

## 0.9.1+1

* Fixes warnings picked up in Xcode raised in issue [123](https://github.com/MaikuB/flutter_appauth/issues/123)
Expand Down
3 changes: 1 addition & 2 deletions flutter_appauth/ios/Classes/FlutterAppauthPlugin.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#import <Flutter/Flutter.h>

@protocol OIDExternalUserAgentSession;
#import <AppAuth/AppAuth.h>

@interface FlutterAppauthPlugin : NSObject<FlutterPlugin>

Expand Down
3 changes: 1 addition & 2 deletions flutter_appauth/ios/Classes/FlutterAppauthPlugin.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#import "FlutterAppauthPlugin.h"
#import "AppAuth.h"

#import "OIDExternalUserAgentIOSNoSSO.h"

@interface ArgumentProcessor : NSObject
+ (id _Nullable)processArgumentValue:(NSDictionary *)arguments withKey:(NSString *)key;
@end
Expand Down
2 changes: 1 addition & 1 deletion flutter_appauth/ios/Classes/OIDExternalUserAgentIOSNoSSO.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

#import <UIKit/UIKit.h>
#import "OIDExternalUserAgent.h"
#import <AppAuth/AppAuth.h>

@class SFSafariViewController;

Expand Down
3 changes: 0 additions & 3 deletions flutter_appauth/ios/Classes/OIDExternalUserAgentIOSNoSSO.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
#import <SafariServices/SafariServices.h>
#import <AuthenticationServices/AuthenticationServices.h>

#import "OIDErrorUtilities.h"
#import "OIDExternalUserAgentSession.h"
#import "OIDExternalUserAgentRequest.h"

#if !TARGET_OS_MACCATALYST

Expand Down
2 changes: 1 addition & 1 deletion flutter_appauth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_appauth
description: This plugin provides an abstraction around the Android and iOS AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID Connect providers
version: 0.9.1+1
version: 0.9.2
homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth

environment:
Expand Down

0 comments on commit 0ee0e3e

Please sign in to comment.