Phonegap vs titanium

PhoneGap and Titan allows you to create your own iPhone Applications based on HTML and JavaScript.

Has anyone got experience with both? What are the differences?

+56
iphone cordova titanium
May 05 '10 at 10:04
source share
6 answers

There is a rather lengthy discussion about PhoneGap VS Titanium (and Corona) in StackOverflow, which may be helpful.

One of the biggest differences is that PhoneGap is licensed by MIT, and titanium (recently modified) is licensed by Apache.

+17
May 7 '10 at 5:33
source share

This article is a good summary of practical and philosophical differences. Pay attention to this from the Evangelist from Appcelerator, but I still find him pretty impartial. In fact, I think he shares the titanium warts that I probably will :).

http://developer.appcelerator.com/blog/2012/05/comparing-titanium-and-phonegap.html

+10
Jul 31 '12 at 18:08
source share

It might be worth keeping an eye on the current plus of Apple / Adobe, in which Mr. Jobs set the future for products that were not written in XYZ on the balance sheet. OS 4 SDK states:

Applications may use the Documented API only as directed by Apple and should not use or use any private APIs. Applications must be originally written in Objective-C, C, C ++ or JavaScript, as is done by the WebKit engine for iPhone OS, and only code written in C, C ++ and Objective-C can be compiled and directly linked to Documented APIs (e.g., Applications that reference Documented APIs through intermediary translation or a compatibility level or tool are prohibited).

I believe that it is affected by titanium.

+6
May 05 '10 at 10:13
source share

Well..! this does not mean that it is better to implement the project. Both technologies are new and have their pros and cons.

Titanium says that supporting the native environment using the java Script Based framework, on the other hand, PhoneGap provides everything inside the WebView, you just need to place your web project with index.html inside the WWW folder found in the project project directory structure.

So, if you are comfortable working with websites, the Gap phone is suitable for otherWise in this case, you should go with Titanium. It is easier to use and fully lighten.

+4
Jun 08 2018-12-12T00:
source share

Unfortunately, Titanium is no longer open source. You can freely develop applications, but you need to buy an Indie account to publish the application on the appstore, which costs money.

PhoneGap is a free and open source code that allows you to create mobile applications using the web API for any platform (iOS, Android, Windows, Blackberry, etc.) that you think.

+1
Nov 20 '15 at 4:01
source share

Titanium: this is a cross-platform platform in which code written in the JS and Titanium API will be converted to native code, and the appearance of the application will be the same as in native applications.

PhoneGap: This is a hybrid platform where you write code using web technologies such as JS, HTML and CSS. Which uses web representations present in native devices to render the user interface. Appearance does not look like native applications.

0
Apr 26 '19 at 12:09 on
source share



All Articles