Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,21 @@ Line SDK wrapper for React Native 🚀
cd ios && pod install
```

3. Change your `AppDelegate.m` to match the following:
3. Change your `AppDelegate` to match the following:

#### With Swift

```swift
import RNLine

...

override func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
return LineLogin.application(application, open: url, options: options)
}
```

#### With Objective-C

```objectivec
#import "RNLine-Swift.h"
Expand Down