appworld

How to launch AppWorld from an application? [BlackBerry]

白昼怎懂夜的黑 提交于 2020-01-02 06:08:09
问题 This might be a easy question but i couldn't find solution. I want to open AppWorld by clicking a button in my BB application. For example when user clicks this button Appworld will show "Facebook Application" page. Can i do this? In Android platform this line launches GooglePlay for Facebook App. Does BlackBerry supports this kind of method? startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.facebook.katana"))); 回答1: Here is a simple way to do this: Browser

How to launch AppWorld from an application? [BlackBerry]

▼魔方 西西 提交于 2020-01-02 06:07:30
问题 This might be a easy question but i couldn't find solution. I want to open AppWorld by clicking a button in my BB application. For example when user clicks this button Appworld will show "Facebook Application" page. Can i do this? In Android platform this line launches GooglePlay for Facebook App. Does BlackBerry supports this kind of method? startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.facebook.katana"))); 回答1: Here is a simple way to do this: Browser

BlackBerry App World Distribution of .jad files

假如想象 提交于 2019-12-12 17:27:43
问题 I am developing an app using Eclipse Plugin with BlackBerry JRE 4.5 to support devices with OS versions 4.5 and higher. I understand that when you use a JRE version lower than 4.7 and you deploy the app to a 4.7 device or a 5.0 device, the app will run in compatibility mode and as a result the virtual keyboard would appear. I followed this document to avoid running my app in compatibility mode. I was able to generate the .JAD files for version 4.7 only after I built the app with JRE 4.7. I

Appworld market link in Android runtime

不打扰是莪最后的温柔 提交于 2019-12-12 09:11:30
问题 I have an app on the appworld and I would like to add a link to it in my app so that people can more easily rate it. Normally on the android market I would do something like: Uri uri = Uri.parse("market://details?id=com.example.test"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent); Or on Amazon I would do: Uri uri = Uri.parse("http://www.amazon.com/gp/mas/dl/android?p=com.example.test"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);

What format should my Blackberry application be in to submit to App World?

时间秒杀一切 提交于 2019-12-08 02:21:40
问题 I already have an installation using .alx/.cod files that we use to install our Blackberry application via Desktop Manager, and also an "over the air" install version consisting of a .jad file and .cod files (uncompressed and no larger that 64K as specified by the mime type) that is downloaded from our website. What format should I upload the application to App World as? I gather all the files should be in a zip file but apart from that I'm struggling to find much more information on the RIM

What format should my Blackberry application be in to submit to App World?

落爺英雄遲暮 提交于 2019-12-06 14:17:03
I already have an installation using .alx/.cod files that we use to install our Blackberry application via Desktop Manager, and also an "over the air" install version consisting of a .jad file and .cod files (uncompressed and no larger that 64K as specified by the mime type) that is downloaded from our website. What format should I upload the application to App World as? I gather all the files should be in a zip file but apart from that I'm struggling to find much more information on the RIM website RIM has a document with the exact requirements for a submission bundle for an app for

How to launch AppWorld from an application? [BlackBerry]

匆匆过客 提交于 2019-12-05 11:59:37
This might be a easy question but i couldn't find solution. I want to open AppWorld by clicking a button in my BB application. For example when user clicks this button Appworld will show "Facebook Application" page. Can i do this? In Android platform this line launches GooglePlay for Facebook App. Does BlackBerry supports this kind of method? startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.facebook.katana"))); AK Joshi Here is a simple way to do this: Browser.getDefaultSession().displayPage("http://appworld.blackberry.com/webstore/content/2360/?lang=en"); Above

Do apps downloaded from App World share projects?

纵然是瞬间 提交于 2019-12-02 09:23:34
问题 My company creates multiple BlackBerry apps that all use a few shared Java projects. Recently we've been chasing a bug that we theorize may be caused by an app using an old version of one of the projects. My question is, do two apps downloaded separately from App World share the projects they have in common, or does each app use its own copy of the project? For example, say I have two apps, Foo and Bar, which each use the project Baz. I first download: Foo 1.0 with Baz 1.0 Then I download:

Do apps downloaded from App World share projects?

为君一笑 提交于 2019-12-02 03:05:10
My company creates multiple BlackBerry apps that all use a few shared Java projects. Recently we've been chasing a bug that we theorize may be caused by an app using an old version of one of the projects. My question is, do two apps downloaded separately from App World share the projects they have in common, or does each app use its own copy of the project? For example, say I have two apps, Foo and Bar, which each use the project Baz. I first download: Foo 1.0 with Baz 1.0 Then I download: Bar 2.0 with Baz 2.0 Will Bar use version 1.0 or 2.0 of Baz when I launch it? Normally, the last