• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Porting of Android apps across other mobiles O/S

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a questions:
Once an app is written in Android, how easy it is to port it to phones using other O/S (like Symbian, iPhone O/S or BlackBerry)?


(edited to remove an unwanted question)
 
Ranch Hand
Posts: 187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sri,

The example you have provided is simply a web application and it should work on all devices. This is not an Android app. Android app is written using Android SDK.
Similarly Blackberry has its own Java based SDK. You can architecture your app to reuse most of components but GUI part will probably need to be rewritten.
Iphone SDK is not Java based, hence there will very little re-use of work done on other devices.
I don't have knowledge of Symbian.

Thanks.
 
Sri Jaganathan
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Devender,
Thanks for that.

Sorry I should have noted that qstn #2 is not an example for qstn #1. Will edit the post now. Thanks.

Devender Thareja wrote:Hi Sri,

The example you have provided is simply a web application and it should work on all devices. This is not an Android app. Android app is written using Android SDK.
Similarly Blackberry has its own Java based SDK. You can architecture your app to reuse most of components but GUI part will probably need to be rewritten.
Iphone SDK is not Java based, hence there will very little re-use of work done on other devices.
I don't have knowledge of Symbian.

Thanks.

 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Symbian uses a Python-driven GUI for the S60 but it is still unclear how flexible and acomodating it is. My guess is it will not be easy to transfer an application from Android to Symbian.
 
Author
Posts: 142
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Unless it's a Web application you'll need to rewrite it for each platform.

There *are* ways to run Java ME applications on Android, and this technique is used for some of the apps in the Market. See:

http://www.microemu.org (used by Tower Bloxx)
http://microemu.blogspot.com/2008/11/running-java-me-applications-on-android.html

http://www.netmite.com/android
http://androidcommunity.com/forums/f3/j2me-midlet-app-runner-emulator-out-6129

http://www.poliplus.com/android.htm
http://www.mobilemediaconsult.com/2007/11/j2me-running-in-google-phones.html

However a native application will always give the user a better experience. Compare the native iPhone version of Tower Bloxx and the Android port to see what I mean.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic