Skip to content
Open
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions flo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,16 @@
<array>
<string>audio</string>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>app.flo</string>
<key>CFBundleURLSchemes</key>
<array>
<string>flo</string>
</array>
</dict>
</array>
</dict>
</plist>
5 changes: 5 additions & 0 deletions flo/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,9 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
func sceneWillEnterForeground(_: UIScene) {}

func sceneDidEnterBackground(_: UIScene) {}

func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
guard let _ = URLContexts.first?.url else { return }
// URL scheme registered for app launch; routing not yet implemented
}
}