I'd like my iOS project to handle multiple URL types and multiple bundle identifiers, so I can install 2 versions of the app on the same device.
I have 2 different bundle IDs: com.mycompany.myapp and com.mycompany.myapp-test
I'm registering 2 URL types for both bundle identifiers in the Info.plist file
I generate 2 builds with the 2 bundle identifiers and installing both apps on the same device. Then I'm trying to reach my apps using 2 urls: myapp://feed and myapp-test://feed.
However for some reason, I cannot open myapp-test and it always opens myapp when I click on both links.
There is certainly something wrong in the way I handle this so I'm wondering how I can manage multiple bundle ID with multiple URL scheme within the same Xcode project?
Thanks
