We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9231dc7 commit c2dcde6Copy full SHA for c2dcde6
README.md
@@ -58,7 +58,21 @@ Line SDK wrapper for React Native 🚀
58
cd ios && pod install
59
```
60
61
-3. Change your `AppDelegate.m` to match the following:
+3. Change your `AppDelegate` to match the following:
62
+
63
+ #### With Swift
64
65
+ ```swift
66
+ import RNLine
67
68
+ ...
69
70
+ override func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
71
+ return LineLogin.application(application, open: url, options: options)
72
+ }
73
+ ```
74
75
+ #### With Objective-C
76
77
```objectivec
78
#import "RNLine-Swift.h"
0 commit comments