Questions tagged [phonegap-build]

'Phonegap Build', an Adobe cloud service, allows you to upload your HTML, CSS, and Javascript to their build service and returns you your complete package. It removes the need for local build servers and SDK's for each destination platform.

PhoneGap Build is a cloud service for compiling PhoneGap applications.

Adobe PhoneGap provides a way for users to create mobile applications using technologies such as HTML, CSS, and Javascript. Applications created with PhoneGap can be distributed to various vendor app stores (ex: Apple App Store) and installed on a end-user's device like any other native application. Each vendor provides a different toolchain, and each PhoneGap release is compatible with a specific set of tools. This is where PhoneGap Build comes into help.

Here are some of the benefits PhoneGap Build provides:

  • Managed Compilation and Signing (No SDKs)
  • Multiple Supported Platforms
  • Work With Your Team
  • Quicker Development Cycle
2651 questions
13
votes
5 answers

External links in phonegap app do not open well

So I have a phonegap project with Phonegap 2.9.0 and building with PhonegapBuild. I got external links in my app, that I would like to open inapp or using the default device browser outside of my app. I am ok for both solutions. Today my app open…
Miguel Bocquier
  • 2,449
  • 5
  • 22
  • 38
12
votes
1 answer

Crosswalk error on android build in cordova project

I have Cordova based application based on backbone js. But when I tried to create android build then it will give me following error. [exec] > Could not resolve all dependencies for configuration ':_armv7DebugApkCopy'. [exec] > Could not resolve…
Santosh Shinde
  • 6,045
  • 7
  • 44
  • 68
12
votes
3 answers

Phonegap and WebWorkers

I am trying to write a PhoneGap/Cordova app. I am trying to do some of the more long running background stuff in Web Workers. However I am finding that some of the functionality is not available from within the Web Workers. navigator.connection is…
Neaox
  • 1,933
  • 3
  • 18
  • 29
12
votes
4 answers

Sign Android APK with a certificate that expires further in to the future

I have built an android app using phonegap build. I am now trying to get this on the play store but keep getting the following error You uploaded an APK signed with a certificate that expires too soon. You need to sign your APK with a certificate…
EnduroDave
  • 1,013
  • 7
  • 18
  • 37
11
votes
11 answers

Failure INSTALL PARSE FAILED MANIFEST MALFORMED

I am getting a strange issue while installing application. When I compiling my project there is no error but when I trying to launch its shows me, Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED Error. I have tried so many thing related …
Milan Patel
  • 185
  • 1
  • 2
  • 12
11
votes
2 answers

Cordova check if file in url exists

I am using cordova / phonegap and need to know if a file exists Here's the code with the path and filename: storeUrl = cordova.file.dataDirectory+'myfolder/myfile.mp3'; How can I check if this file exists?
Satch3000
  • 47,356
  • 86
  • 216
  • 346
11
votes
2 answers

iOS textarea text hidden when using -webkit-overflow-scrolling: touch

Once again I am here because I have exhausted my research on the subject. I have a very simple setup with very simple markup and yet a very strange behavior. The behavior is eerily similar to (Firefox and Angular: Textarea placeholder doesn't…
Marcel
  • 625
  • 7
  • 16
11
votes
9 answers

phonegap build not showing splashscreen

This question has been asked in the past but none of the answers that I have found have solved the problem for me. I am trying to make a very simple phonegap app to show a splash screen and announce when it is ready. It is just a test app to work…
Peter Saxton
  • 4,466
  • 5
  • 33
  • 51
11
votes
2 answers

Change Widget ID or Package Name for android/iOS platform on phonegap?

I have an app in Google Play with package com.example001.androidand one app in the iOS store with the name com.example001.ios. However, I am now using the phonegap build, have removed a lot of the bootstrap code, leaving only the www folder, I am…
filype
  • 8,034
  • 10
  • 40
  • 66
11
votes
2 answers

How to make a custom private plugin in phonegap

Is there any way to achieve this? Everywhere I see contributing to plugin development or making use of an existing plugin (which are public). I would like to make a private plugin. Is this possible? I'm aware that through eclipse (for android) I can…
Alok Agarwal
  • 3,071
  • 3
  • 23
  • 33
10
votes
2 answers

Converting from PhoneGap Build to local Cordova CLI

I have several apps that currently rely on PhoneGap Build to create native apps for Andriod and iOS. It seems that Adobe is about to abandon iOS compatibility by failing to upgrade to the latest Cordova iOS version to meet Apple's requirements. It's…
srkleiman
  • 607
  • 8
  • 16
10
votes
1 answer

Phonegap Build CLI-5.2.0 Download and Close From Within Web App

I've been wrestling with making calls to window open, using inappbrowser from within my app. Basically, I'm using phonegap as a wrapper to load up a mobile skinned CMS site with special app features. Here is the index.html. I'm using inappbrowser…
apoji187
  • 214
  • 3
  • 15
10
votes
2 answers

How can I get WiFi Network information (SSID) in a Phonegap app?

I am making a Phonegap app. My requirement is to show different views to users depending on whether they are using a home network or a public network. Is there any plugin or any other way that can help to get the connected network information.…
Varun Nayyar
  • 887
  • 4
  • 20
  • 46
10
votes
3 answers

How to Display PDF File with in the same App in phonegap

how to show Pdf file with in the same phonegap app. i tried Inappbrowser,Mupdf,PDFJS all are displaying PDF using other pdf viewer.i would like to open the pdf file with in the same app.Can anyone help me out.Thanks in advance
k.nagababu
  • 191
  • 1
  • 1
  • 5
10
votes
4 answers

How to catch exit app event?

Hy! I need to catch the exit app event in my phonegap application. Actually I want to trigger a looseLife() function if the player tries to cheat and exit the app with minimize and exit from task manager while he already started a new lvl. If he…