phonegap-build

Convert server-generated site to PhoneGap/Cordova app?

萝らか妹 提交于 2019-12-11 06:13:21
问题 What's the lowest effort way to get a site with server-generated pages (in my case Laravel/PHP) running as a PhoneGap/Cordova app? I'd rather not have to convert the whole thing into a single page app before importing into PhoneGap/Cordova. Is it possible to use PhoneGap/Cordova as a very thin wrapper and still load each page live from the server? And if so, how exactly please? I don't think we need any native phone APIs. Reason for the whole thing is my client insists on "having an app" even

Where i can get cordova 3.2 jar file?

匆匆过客 提交于 2019-12-11 05:59:12
问题 I have tried using this link but am not able to build cordova jar file, when I run android update project -p . -t android-19 in my framework directory I get the output: E:\eclipse\cordova-android-master\framework>android update project -p . -t android-15 Updated project.properties Updated local.properties build.xml: Found version-tag: custom. File will not be updated. Updated file E:\eclipse\cordova-android-master\framework\proguard-project.txt It seems that there are sub-projects. If you

PhoneGap Build - navigator.notification.alert not working in WP7 emulator

China☆狼群 提交于 2019-12-11 03:30:15
问题 I build this simple code with PGB, but it does not working in WP7 emulator - no alert message. For android emulator its ok. What's wrong? document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { navigator.notification.alert("Device Ready!"); } Source code https://github.com/dprotopopov/pgb-wp7-alert 回答1: This seems to be a bug with the latest PhoneGap build for WP7. I have this up and running in Visual Studio and although the navigator object is accessible in

phonegap build - facebookConnectPlugin not defined

寵の児 提交于 2019-12-11 02:18:23
问题 I am trying to install a facebook integration in the simplest way with phonegap build. Did the following: added this to config.xml: <gap:plugin name="com.phonegap.plugins.facebookconnect" version="0.9.0"> <param name="APP_ID" value="****************" /> <param name="APP_NAME" value="******" /> </gap:plugin> made sure the plugin appears on installed plugins on phonegap build: it appears as it should. Plugin Source Version Latest Platforms com.phonegap.plugins.facebookconnect pgb 0.9.0 0.9.0

Cordova / Phonegap photo browser

我是研究僧i 提交于 2019-12-11 02:14:51
问题 I would like to create an application for iOS and Android that (among other things) allows the user to browse the device's photos and select some of them. Thus I would like to present the user with a list of directories containing photos and once a directory is opened, a gallery of the images is displayed. My questions are: 1) Is there a standard way in Cordova to get a list of the "library" directories such as camera photos, facebook photos, viber photos, screenshots etc.? 2) Is there a way

Phonegap - access to api from external website

試著忘記壹切 提交于 2019-12-11 01:15:09
问题 I set in config files: <access origin="*" subdomains="true" /> <access origin=".*" subdomains="true" /> <content src="http://mydomain.pl/aps_mobile/" /> But on http://mydomain.pl/aps_mobile/ don't execute event "deviceready" and navigator.camera is undefined. What i doing wrong? 回答1: You don't access to hardware resource if you execute the cordova script from a external host because the script is not mapped to libs/cordova.x.x.x.jar of Phonegap application. But you can resolve in this way: in

Notification.alert is not working in phonegap build 3.1.0

↘锁芯ラ 提交于 2019-12-10 23:54:34
问题 I am creating a phonegap application. I have used notification.alert to show messages. Before updation of phonegap 3.1.0 the notification.clert was working fine. As i have done about 5 app using phonegap 2.9.0. In every app i have used notification.alert from this Now i have build my working project on 28th jan 2014, It is showing only 3 apps (Iphone, android and windows) can be done using phonegap. I am creating for IOS and Android. Everything is working fine except alert. Is there any

This project does not use the Gradle build system. We recommend that you migrate to using the Gradle build system

假如想象 提交于 2019-12-10 22:24:48
问题 I am new to the android studio I have importing PhoneGap project into the android studio. Here I am getting this error This project does not use the Gradle build system. We recommend that you migrate to using the Gradle build system. and I don't know how to use android studio I did following steps. node.js and PhoneGap and android studio installation PhoneGap project creation add the Android platform to PhoneGap project and build android import the project into the studio (I have imported

Do we need to upload cordova_plugin.js to phonegap build server?

蓝咒 提交于 2019-12-10 21:07:35
问题 I am very new to Phonegap. I am trying to build an application which require InApBrowser plugin. I know we should not upload cordova.js to PhoneGap Build server but I am not sure if we need to upload cordova_plugin.js to build server. I am asking this question because when I download the .ipa package and install it in iPhone and debug the application it says cordova_plugin.js not found. I am using cordova 3.6.3. index.html <body> <p>Hello, your application is ready!</p> <!-- Cordova reference

No iPhone Developer/Distribution identity found on your certificate Error

折月煮酒 提交于 2019-12-10 19:47:51
问题 I made the IOS application using PhoneGap Build its working fine, but now I wanted to add (APNS) notification for that I made iPhone Developer Certificate from Mac for push notification and p12 file, provisioning profile. I followed all the steps mentioned Here. Still it shows No iPhone Developer/Distribution identity found on your certificate Error while building my application. Is this the right way what I am doing or any other solutions to do it let mi know. 回答1: Just spent an hour on this