cordova-2.0.0

Offline Phonegap Build

橙三吉。 提交于 2020-02-04 07:03:55
问题 By means of an Adobe Phonegap account (https://build.phonegap.com/apps) I could create mobile apps using my web application for all types of mobile platforms like IOS, Android, Windows. But, for this to happen, I have to upload my project zip to cloud. Is it possible to create the apps (for all mobile platforms) offline , in my pc itself, without uploading my project zip to cloud? Is there any desktop application that does a similar job as build.phonegap.com? 回答1: Yes you can build your app

Offline Phonegap Build

好久不见. 提交于 2020-02-04 07:00:13
问题 By means of an Adobe Phonegap account (https://build.phonegap.com/apps) I could create mobile apps using my web application for all types of mobile platforms like IOS, Android, Windows. But, for this to happen, I have to upload my project zip to cloud. Is it possible to create the apps (for all mobile platforms) offline , in my pc itself, without uploading my project zip to cloud? Is there any desktop application that does a similar job as build.phonegap.com? 回答1: Yes you can build your app

Offline Phonegap Build

核能气质少年 提交于 2020-02-04 06:59:41
问题 By means of an Adobe Phonegap account (https://build.phonegap.com/apps) I could create mobile apps using my web application for all types of mobile platforms like IOS, Android, Windows. But, for this to happen, I have to upload my project zip to cloud. Is it possible to create the apps (for all mobile platforms) offline , in my pc itself, without uploading my project zip to cloud? Is there any desktop application that does a similar job as build.phonegap.com? 回答1: Yes you can build your app

cordova/phonegap 2.0 iOS

大兔子大兔子 提交于 2020-01-20 03:28:04
问题 I get deprecation warnings for invokeString in Main and App .m files. I haven't seen any posts on how to fix this. So far it's working ok, just curious. self.viewController.invokeString = invokeString; <-'invokeString' is depcrecated 回答1: [CB-853] Deprecate window.invokeString - use window.handleOpenURL(url) instead http://mail-archives.apache.org/mod_mbox/incubator-callback-commits/201207.mbox/%3C20120716205424.998B414A2D@tyr.zones.apache.org%3E 回答2: This really helped cause I couldn't

acess token for getting nearby places

本小妞迷上赌 提交于 2020-01-16 19:22:29
问题 I am developing phonegap application and I want to show a list for nearby places using facebook. I understand that I need to get access_token in order to use the graph api, but it seems akward and strange to ask the user login to facebook so I can get list of places that has nothing with you (I am not looking for places the user like/visited). There is another way without asking the user to log-in? 回答1: You can get places with an App Access Token, which does not require the user to log in.

Detect application refocus event

时间秒杀一切 提交于 2020-01-12 19:06:31
问题 I need to know each time the user is starting to use the application. Case 1 (OK) : The app is not started. The user starts the application from scratch. I add a listener on the app's bootstrap, and I am aware when it starts. Case 2 (TODO) : The app has been started but it's not active anymore The user reload the application from the taskbar. I want to know when the application comes from the taskbar to the foreground (like a alt+tab). This is tricky to catch, because the app is still running

Issues with Bindings: Calling base method on binding class calls override method. Leads to infinite recursion

守給你的承諾、 提交于 2020-01-11 14:06:22
问题 I'm working on a MonoTouch project that uses Cordova. I created a binding for Cordova (based on the one created by Scott Blomquist). I have been able to instantiate the classes fairly well without fail. When I try to extend them however, I run into issues. For example, if I merely try extend the CDVViewController, without even overriding anything, when we get to the code that instantiates this extended class, the system quietly exits with no error messages, and the following exit lines. The

jquery timepicker not working in phonegap android

青春壹個敷衍的年華 提交于 2020-01-06 14:56:16
问题 I am creating an app in which i want to app datepicker to select birthdate so for that i tried to use jquery-ui-timepicker-addon.js but the problem is when i tried to use it statically in the div then it shows the dateselector but when i try to create it dynamically it's not working can any one tell why its acting like this and where i am making mistake here is the code for creating dynamic datepicker: var creatText = $(document.createElement('input')).attr('type','text'); creatText.attr(

jquery timepicker not working in phonegap android

风格不统一 提交于 2020-01-06 14:56:13
问题 I am creating an app in which i want to app datepicker to select birthdate so for that i tried to use jquery-ui-timepicker-addon.js but the problem is when i tried to use it statically in the div then it shows the dateselector but when i try to create it dynamically it's not working can any one tell why its acting like this and where i am making mistake here is the code for creating dynamic datepicker: var creatText = $(document.createElement('input')).attr('type','text'); creatText.attr(

phonegap filereader onloadend doesn't work

只谈情不闲聊 提交于 2020-01-04 05:43:31
问题 I'm using phonegap to take a picture and put it into a img-container. navigator.camera.getPicture(onSuccess, onFail); var onSuccess = function(imageURI) { var pic = document.getElementById('picture'); pic.style.display = 'block'; pic.src = imageURI; }; var onFail = function(message) { $('#infoField').val(message); }; That works perfect. Now I want to load the picture with a format to be alble to send it over a websocket. Therefor I use the fileReader and set the type to dataUrl. var reader =