BreakHead
BreakHead

Reputation: 10672

How to create application for Mobile?

I have to create a mobile installable/client application...and I dnt know nothing abt this..

what SDK,language should I use?? if this will in .net will be fine(optional)... any Ideas

Will really appreciate this...

Thanks!!!

Upvotes: 0

Views: 258

Answers (4)

Jaya Wijaya
Jaya Wijaya

Reputation: 179

I you got no clue to start with, I suggest you start with Java ME. Java Mobile Application is, in my opinion, the safest way to go for starters as they have the widest acceptance among mobile device platforms.

Good luck.

Upvotes: 0

Adam Batkin
Adam Batkin

Reputation: 52974

First you will need to decide what mobile platform or platforms you want to support. Often your choice of language and toolset will be completely dictated by that. For example, if you want to write software for the iPhone, you will need to use Objective C (and use a Mac) while Android-based phones and BlackBerry devices require Java. Windows Mobile and Symbian devices natively support C/C++ and their own proprietary APIs but you can use frameworks like Qt to make things easier (and portable between the two). Windows Mobile in particular also supports lots of other platforms that run on top of the base OS, such as slightly limited version .Net or Java (but bring-your-own-JVM).

The one common denominator between them all is web applications. If you want a single codebase that will work everywhere and that doesn't use a completely proprietary toolset, you can build a web app.

Upvotes: 2

Wael Dalloul
Wael Dalloul

Reputation: 22984

You can use Visual studio to target Mobiles have Windows Mobile OS or Windows CE or Pocket PC, for other OSs you have to see the SDK that the Manufacture company provide.

Upvotes: 0

thelost
thelost

Reputation: 6694

Programming languages: Objective-C, Java, C# .NET CF etc. It depends on what devices you application should be running.

Upvotes: 0

Related Questions