Questions tagged [phonegap-build]

Using 'Phonegap Build,' a cloud service provided by Adobe, you can easily upload your HTML, CSS, and Javascript files to their platform and receive your fully packaged app. This eliminates the requirement for local build servers and SDKs on each target platform.

The functionality of the Angular application is impaired when compiled using Phonegap

Background: I have successfully developed an Angular Application that works flawlessly on web browsers. The frontend of the application is built using HTML/CSS/Angular/Bootstrap, while the backend utilizes Web API, making them completely separate entities ...

After updating to Xcode 7.0.1, my PhoneGap project is unable to establish an internet connection

Recently, I made the switch from Xcode 6.4 to 7.0.1 for my phonegap project in order to test it on a real device. However, after upgrading, my Ajax calls started failing and returning errors both in the simulator and on my iPhone. Interestingly, the ajax ...

What is the process for deleting localstorage information in an Ionic framework?

Take a look at my code snippet below: $scope.logout=function(){ localstorage.set('user_id', ""); localstorage.set('access-token', ""); localstorage.set('isUserTraverseColony', 0); localstorage.set('isStarted', 0); $window.localStorage. ...

Phonegap Application: Page design gets distorted following keyboard input

After a user enters login details and the next page loads, the layout shifts as shown in the image below. The entire app layout breaks and the view moves down to accommodate the size of the onscreen keyboard. This issue persists unless the orientation is ...

The functionality of Jquery ajax seems to be ineffective within a Phonegap application

The phonegap app I've been working on was functioning perfectly until today, when the Ajax post request suddenly started getting stuck and the success or failure callbacks weren't being triggered. Oddly enough, when I tested it in a browser, ever ...

Tips for integrating the ionic navigation bar with hardware buttons on an Android device in a phonegap mobile application

In the app I developed using phonegap, there is an ionic navigation bar with a back button. Navigating through the app using this navigation bar works properly and directs to each page as expected. However, if the hardware back button is used at some point ...

iOS app launch does not trigger Phonegap handleOpenURL

Receiving an alert message when the app is open in the background. However, when I close the app from the background and then relaunch it, the alert message doesn't appear. The handleOpenURL function cannot be invoked in JavaScript when the app is lau ...

Having success loading JSON with AJAX in a local browser, however encountering issues when attempting to do so within the PhoneGap

When I try to load external JSON-data locally in my browser, it displays the data successfully. However, when using a cloud-based build service like PhoneGap for iOS and Android apps, the page loads but without the JSON-data appearing. Can anyone provide a ...

Leveraging Angular UI-Router in conjunction with Phonegap

My current project is developed using Angular and I'm deploying it to the Phonegap Build service for iOS and Android distributions. Initially, I used Angular's routing service but had to switch to Angular UI-Router due to nesting multiple views requirement ...

Troubleshooting: Android compatibility issues with dynamic source for HTML 5 video

My HTML5 video with dynamic source loaded using JavaScript is functioning properly in a web browser but encountering issues within an Android PhoneGap build application. Take a look at the code snippet below: JavaScript code: $('#video_player' ...

Apps created with PhoneGap will maintain the original sizing of web pages and not automatically resize for display on Android devices

After successfully porting my web-based tool to Android using PhoneGap from my Github repository, I encountered an issue with the display on Android devices. The app loads up too big for the screen, forcing me to constantly scroll around to see and access ...

Publishing Your App on the Android Market with PhoneGap

Seeking a comprehensive PhoneGap tutorial that covers app publishing, especially struggling with successful app deployment. Currently experienced in HTML, CSS, and JavaScript. Any tips or advice would be greatly appreciated, thank you! I have a good gras ...

Is it possible to designate touch as the top finger and always have touch 2 be the bottom finger on the screen?

Is there a way to specify touch1 as the upper finger on the screen and always have touch2 as the lower finger, even if the lower touch is detected first? var touch1 = e.originalEvent.touches["0"]; var touch2 = e.originalEvent.touches["1"]; Can these ...

PhoneGap Build is failing to transfer the icon.png file and other icon images when building for iPhone

Encountering an issue with inconsistent behavior when copying icons for the IOS build. The default icons are not being copied over, while other images (version 6.0) are successfully transferred. The layout of the phonegap build folder structure is as foll ...

Where can the Path be found for Json inside App Phonegap?

Having some trouble with my Phonegap App! Everything seems to be working fine when I test it in my browser. However, once I compile it into an APK and install it on my phone, it's unable to find the JSON data. I'm a beginner in programming and apologize f ...

When I exit an Android app that is currently running a CodeIgniter web application within the Android mobile browser, the CodeIgniter session remains active and does not properly

Hello there, I am currently working on developing a Mobile App with CodeIgniter and PhoneGap/Cordova. My application is designed to open a local static HTML file in the android web browser, followed by using window.open to redirect to an external URL on t ...

Only a blank white display on Android using Cordova

https://i.stack.imgur.com/ekNRF.png Only seeing a blank white screen Checked console in chrome https://i.stack.imgur.com/ttGcD.png Looking for a solution to this issue, I've already tried reinstalling cordova, node, and npm but it's still not working ...