akoprowski
akoprowski

Reputation: 3315

Developing native applications to run both on Android & iPhone?

I'm new to mobile phones development, but I wonder whether there is any way to develop native apps (HTML-based apps is another story) that would run both on Android and iPhone? I know that there exist applications available for both OSs, so I wonder how are they ported/developed for both targets?

Upvotes: 1

Views: 1191

Answers (3)

mythz
mythz

Reputation: 143284

You can share a significant amount of Non-UI logic and code libraries by taking advantage of MonoTouch and MonoDroid. They are native frameworks which provide C# bindings around iPhone's and Androids native APIs. They have the added advantage of being able to develop in C# which IMHO is nicer than Obj-C and Java.

Upvotes: 0

Alex Volovoy
Alex Volovoy

Reputation: 68434

http://www.appcelerator.com/

Upvotes: 1

bontoJR
bontoJR

Reputation: 7045

You can simply have two different projects, with same design and graphics, or, you can do it with some frameworks like PhoneGap or Rhomobile.

The best way is to have two different versions of the code, so you can take advantage from the platform that you are using.

Upvotes: 3

Related Questions