jviotti
jviotti

Reputation: 18919

Is Phonegap the right choice for hosted mobile applications?

My team developed a responsive web applications, and we were looking forward to create a mobile application for Android and iOS that just "wraps" this hosted application.

Some of the requirements were:

I spent a week with Phonegap 3 but I feel that Phonegap wasn't made to make hosted application, so it seems that I'm fighting the framework all the time.

Some complications I had with Phonegap 3:

I'm starting to give up on Phonegap as I feel it's not helping but fighting me.

Am I taking the wrong approach for hosted application, or is Phonegap not made for this kind of things? If the latter is the case, is there a better alternative out there?

Upvotes: 2

Views: 1309

Answers (1)

Purus
Purus

Reputation: 5799

Any existing web appliations can be easily ported to Cordova/Phonegap based app. You have to use Notifications plugin for alerts. Also there are inbuilt support for online / offline mode.

Details: http://www.raymondcamden.com/index.cfm/2013/5/24/PhoneGap-OnlineOffline-Tip

Now coming to your issues:

1) cordova.js and other plugins are directly related to mobile app platforms.

2) How are you testing your phonegap app? Using emulator like Ripple in Chrome?

3) deviceready event is specific for mobile bootstrapping.

I am sure you are doing something wrong and not an issue with Phonegap.

Upvotes: 1

Related Questions