-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hi TAKAware team,
I’m integrating TAKAware with a companion application and would like to be able to open the TAKAware app directly from my app.
Current Problem
TAKAware’s Info.plist currently does not define:
• CFBundleURLTypes (custom URL schemes)
• Associated Domains for Universal Links
As a result:
• The app cannot be launched from another iOS app.
• Deep linking (e.g., takaware://...) does not work.
• The only available option is opening the App Store listing.
Why This Is Useful
Adding a URL scheme or Associated Domain would enable:
• Companion apps to open TAKAware automatically
Suggested Implementation
Add to Info.plist:
<key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>com.takaware.app</string> <key>CFBundleURLSchemes</key> <array> <string>takaware</string> </array> </dict> </array>
This would allow launching the app via:
takaware://