I am trying to have a graphic link in my Android app that when clicked on it will open up the Android Market to the applications dedicated page so that you can rate the app.
I am currently trying this:
[lua]if (platformOS == “Android” or platformOS == “Win”) then
system.openURL( “http://market.android.com/details?id=com.bluefireventures.butterflyadventures” )
–system.openURL( “http://www.cnn.com” )
else
system.openURL( “http://itunes.apple.com/us/app/butterfly-adventures/id470231539?ls=1&mt=8” )
end[/lua]
with this method. it works perfect on the Apple IOS devices. It opens up in the IOS App Store… not in safari.
for Android I am testing on a Motorola Xoom. When it triggers the open URL request the screen seems to get a alpha=.5 but then… nothing happens. the google browser does not open… Nor does the Android Market app open to the right page.
if i change the open URL for Android to a simple www.cnn.com it opens that URL just fine in the devices google browser. why wont the app url open … even if its int he google browser i would be happy.
anyone know how i Should be doing this?
[resolved sorta] well it seems to be working today its opening the URL in the google browser. I would still like to get it to open in the market app.
I cold rebooted the device and i also upgraded to the newest daily build… i am not sure what version i was trying this on. [import]uid: 67604 topic_id: 19991 reply_id: 319991[/import]

