Implementing deep link (#41)

This commit is contained in:
Gustavo Emanuel Farias Rosa
2022-06-15 16:14:57 -03:00
committed by GitHub
parent f2115e23c7
commit b4dbb55548
8 changed files with 181 additions and 73 deletions

View File

@@ -35,6 +35,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate, RCTBridgeDelegate {
return true
}
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
BigBlueButtonSDK.handleDeepLink(app, open: url, options: options)
return true
}
func sourceURL(for bridge: RCTBridge!) -> URL! {
//#if DEBUG

View File

@@ -20,6 +20,19 @@
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>com.bigbluebutton.mobile</string>
<key>CFBundleURLSchemes</key>
<array>
<string>bigbluebutton</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>ITSAppUsesNonExemptEncryption</key>