HOW TO SET PAID UP GRADATION LINK IN FREE VERSION

Hi Friends

I have developed the game which i have launched in free version as well as paid version. Now i wanted to give link in free version of paid version.

How shall i do that?

hoping for reply asap

Regards
Varun [import]uid: 130269 topic_id: 26604 reply_id: 326604[/import]

First you need to sumbit your apps to the appstore. Then just get the link for the full version and make something like this into your lite version :slight_smile:

[lua]function buyFullVersion (event)
if event.phase == “ended” then
system.openURL( “www.iTunesLinkToMyFullVersion.com” )
end
end

BuyFullVersionButton:addEventListener(“touch”, buyFullVersion) [import]uid: 119384 topic_id: 26604 reply_id: 107845[/import]

Hi Baronen,

Thanks for your help i will implement this and let u know the results. Ya i am going to use it for android hope it work with that also.

Regards
Varun [import]uid: 130269 topic_id: 26604 reply_id: 107865[/import]

any idea what the main part of the link is? (where you can just replace your appid and it should work)…thing is, if you are deploying paid and free version simultaneously, you would have to code this ahead of time.

thanks in advance

Niko [import]uid: 34595 topic_id: 26604 reply_id: 107891[/import]

actually :

http://developer.anscamobile.com/forum/2011/06/20/making-free-version-your-app-linking-appstore

[import]uid: 34595 topic_id: 26604 reply_id: 107903[/import]

HI Friends,

I am trying for upgrade thing on my android app and here is the code i am using but its not working please can any one help me out with it.

function buyFullVersion (event)

if (event.phase == “ended”) then
system.openURL( " market://details?id=com.bridgetechnocrats.learnyourway" )

end
end

upg_button:addEventListener(“touch”, buyFullVersion)

Regards
Varun
[import]uid: 130269 topic_id: 26604 reply_id: 111467[/import]

HI Friends,

I am trying for upgrade thing on my android app and here is the code i am using but its not working please can any one help me out with it.

function buyFullVersion (event)

if (event.phase == “ended”) then
system.openURL( " market://details?id=com.bridgetechnocrats.learnyourway" )

end
end

upg_button:addEventListener(“touch”, buyFullVersion)

Regards
Varun [import]uid: 130269 topic_id: 26604 reply_id: 111468[/import]