Mobile application development strategy. Code ONCE, run everywhere?
-
Hi, I'd like to develop an offline mobile application that runs on all major smartphone (Android, iPhone, Windows etc.). I understand that each smartphone uses their own language (Objective-C, Java, .Net). Is there a way to code ONCE, then use the same code for all smartphones? If not all, at least the business-logic part of the code?
-
Hi, I'd like to develop an offline mobile application that runs on all major smartphone (Android, iPhone, Windows etc.). I understand that each smartphone uses their own language (Objective-C, Java, .Net). Is there a way to code ONCE, then use the same code for all smartphones? If not all, at least the business-logic part of the code?
The issue is not so much the language that is used but the OS on the phone. Even if you could use a single language you still need to compile them into the correct object code for the different phones.
-
Hi, I'd like to develop an offline mobile application that runs on all major smartphone (Android, iPhone, Windows etc.). I understand that each smartphone uses their own language (Objective-C, Java, .Net). Is there a way to code ONCE, then use the same code for all smartphones? If not all, at least the business-logic part of the code?