Hi there
i try to see if another App is installed via:
if ( system.canOpenURL( “pic2shop://scan?callback=http://xxxx.com” ) ) then
system.openURL("pic2shop://scan?callback=http://guruk.com")
else
print (“pic2Shop is not installed”
end
anyhow on Android it worked first, than i deleted pic2shop from the device and it still say its ‘installed’
when i would try another name (like: pic2shopB) it says again app not installed
on iPhone it says always ‘not installed’ till i set in plist: LSApplicationQueriesSchemes = { “pic2shopla”},
than even if the app is not installed it says: “App installed”
for iPhone i have in pList:
LSApplicationQueriesSchemes = { “pic2shop”},
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“pic2shopla”, – example scheme for pic2shop
}
}
},
for Android:
intentFilters =
{
{
label = “Open pic2shop”,
actions = { “android.intent.action.VIEW” },
categories =
{
“android.intent.category.DEFAULT”,
“android.intent.category.BROWSABLE”,
},
data = { scheme = “pic2shop” },
},
– You can add more intent filters here.
},
so how to get this system.canOpenURL work fine?
thanks
chris

