I have added a URL scheme to my corona app
iphone = { plist = { CFBundleURLSchemes = { "myapp1234567" } } }
In my other iOS app I want to detect if the corona app is installed on a device so I use this code
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"myapp1234567://whateveryouwant"]]) { //YES THIS APP IS INSTALLED :) }
The problem is that this does not work. The iOS code I am pretty sure is correct so I am thinking something is wrong or missing with my setting.
Anyone know if I missed something?