03-13-2012 03:53 PM
Hello I am about to submit an application that will have a trial version and a full version. They will be seperate applications (unique skus). I want to provide a way for the user to install the full application from the trail application. At this point I don't need anything fancy. Pehaps the trial can just provide a link to the full application in App World.
I know I have seen this discussed on here but I cannot find the information. Any help would be appreciated.
Solved! Go to Solution.
03-13-2012 04:16 PM
Never mind. I found the information I need:
http://appworld.blackberry.com/webstore/content/<your-appid-here>
http://www.blackberry.com/developers/resources/app
http://www.blackberry.com/developers/resources/app
http://www.blackberry.com/developers/resources/app
04-25-2012 10:03 PM
When I make a link, I get an error, "http://appworld.blackberry.com........ is not allowed"
Do I have to allow some stuff in the config.xml?
05-11-2012 11:59 AM
When I try to put a link in my app to App World, I get the following error message when trying to open the link from inside the app:
The browser could not handle the webpage.
I know the link is fine, because I entered the link address into the browser and it worked. Do I have a permissions problem?
I put the tag <access uri="*"/> in my config.xml file.
Any ideas?
Thanks,
05-11-2012 12:09 PM
Yes, add this to your config.xml and I got it to work for me
<access uri="http://appworld.blackberry.com" subdomains="true" />
05-11-2012 12:17 PM
This code works - It is documented somewhere, but sorry can't find it again - took a fair bit of finding originally!
var url = "http://appworld.blackberry.com/webstore/content/" + appId;
var args = new blackberry.invoke.BrowserArguments(url);
blackberry.invoke.invoke(blackberry.invoke.APP_BR
you need these extra lines in config.xls as well as the access statement.
<feature id="blackberry.identity" required="true" version="1.0.0.0"/>
<feature id="blackberry.invoke.BrowserArguments" required="true" version="1.0.0.0"/>
<feature id="blackberry.invoke" required="true" version="1.0.0.0"/>
Hope this helps.
05-11-2012 12:17 PM
Hi fgoyti:
Would you mind sharing your config.xml that you got to work? I tried inserting that line, but am still getting the error message.
Cheers,
05-11-2012 12:28 PM
Hi DMA2011,
I used your solution and it works. Thanks everybody!
Cheers,