phonegap-build

Record and play simultaneously on iOS (Phonegap build)

社会主义新天地 提交于 2019-11-30 21:33:23
I'm developing iOS and Android application using Phonegap Build version 3.3.0. Main focus of application is audio recording with another audio / music playing in the background. For both instances i'm using phonegap media api with correct audio files for recording (iOs - *.wav / Android - *.amr ) and playing (iOs and Android - *.mp3). Example: var audioRec = new Media(audioRecSrc, onSuccess, onError); audioRec.startRecord(); var audioPlay = new Media(audioPlaySrc, onSuccess, onError); audioPlay.play(); Example works on Android without any problem. Sound is recorded and music played normally.

Phonegap Build Error failed

梦想与她 提交于 2019-11-30 20:48:11
问题 Oh geez. Your build failed. Sorry, but a problem occurred on the build server. Having this issue from last 2 days. is any way to build app i am using phongap cli 5.2.0. my ios & android app is not gone be build whats problem must going on. i didn't understand. if any one have other way to Build app please provide me. by uploading zip and its provide us build like that.my config file is below mention. <widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com

PhoneGap: modify config.xml to add properties to Info.plist ion iOS

你离开我真会死。 提交于 2019-11-30 20:20:39
For my application, I need to add some settings to the Info.plist file for iOS. I thought the best way to do this, would be to add these settings to my config.xml file (I'm using PhoneGap). When I add the following to the config.xml file and run cordova build ios or cordova update platform ios Nothing is added to my Info.plist file, and I absolutely have no idea why that is. The build show 'success', so I don't think there's a syntax error. I've tried: <platform name="ios"> <allow-intent href="itms:*" /> <allow-intent href="itms-apps:*" /> <config-file target="*-Info.plist" parent=

Record and play simultaneously on iOS (Phonegap build)

爷,独闯天下 提交于 2019-11-30 17:17:25
问题 I'm developing iOS and Android application using Phonegap Build version 3.3.0. Main focus of application is audio recording with another audio / music playing in the background. For both instances i'm using phonegap media api with correct audio files for recording (iOs - *.wav / Android - *.amr ) and playing (iOs and Android - *.mp3). Example: var audioRec = new Media(audioRecSrc, onSuccess, onError); audioRec.startRecord(); var audioPlay = new Media(audioPlaySrc, onSuccess, onError);

Any way to display AdMob ads (or other ad provider) in pure JavaScript

為{幸葍}努か 提交于 2019-11-30 15:33:05
问题 Is there any way to display AdMob ads using only pure JavaScript? Or in any other way, that I can use it directly in PhoneGap application built with PhoneGap Build? I'm developing mobile apps using PhoneGap. I've seen many solutions and approaches to this problem (like this or this). But since I'm using PhoneGap Build only, I can't use any of it. I've seen AdMob Cordova Plugin, but since it is platform-oriented (currently only available for iOS and Android) and has a lot of Java and SDK in

Any way to display AdMob ads (or other ad provider) in pure JavaScript

旧街凉风 提交于 2019-11-30 14:32:42
Is there any way to display AdMob ads using only pure JavaScript? Or in any other way, that I can use it directly in PhoneGap application built with PhoneGap Build? I'm developing mobile apps using PhoneGap. I've seen many solutions and approaches to this problem (like this or this ). But since I'm using PhoneGap Build only, I can't use any of it. I've seen AdMob Cordova Plugin , but since it is platform-oriented (currently only available for iOS and Android) and has a lot of Java and SDK in documentation, I'm pretty sure, that I can't use it in app compiled with PhoneGap Build. If there is no

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

浪子不回头ぞ 提交于 2019-11-30 13:21:39
问题 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 回答1: (Excuse my poor English) I don't know what you mean "in the same app", because inappbrowser , Mupdf and pdf.js can all do that. In Android platform, most popular solution is send intent and open via other pdf viewers because users can choose there favorite(you can

Chromecast support in PhoneGap / Cordova

你说的曾经没有我的故事 提交于 2019-11-30 09:37:53
This topic has been brought up in the past, but figured it's time to bring it to the forefront again. Are there any stable plugins out there to bring Chromecast support to PhoneGap / Cordova? Is a plugin still needed? Would love to get the discussion going again since multi-screen experiences are so huge right now. Thanks everyone. There are a few plugins available, try them https://github.com/GetVideostream/cordova-chromecast // Android https://github.com/AVGP/cordova-chromecast // Android https://github.com/SesamTV/ChromecastCordova // Android https://github.com/rbackhouse/chromecast_cordova

Open url in webview - phonegap

ⅰ亾dé卋堺 提交于 2019-11-30 08:31:33
I would like to know how can I open an url in the app context of embed webview. Currently this demo will open a new tab in external browser, so, not what I am expected. I am using google.com just for testing. Summary, I am looking for a functional demo. <?xml version="1.0" encoding="UTF-8"?> <!-- config.xml reference: https://build.phonegap.com/docs/config-xml --> <widget xmlns = "http://www.w3.org/ns/widgets" xmlns:gap = "http://phonegap.com/ns/1.0" xmlns:android = "http://schemas.android.com/apk/res/android" id = "com.xxx.xxxxx" version = "1.0.0"> <preference name="stay-in-webview" value=

Phonegap - Android How to adjust layout in Full Screen Mode when softkeyboard is visible

*爱你&永不变心* 提交于 2019-11-30 07:32:08
I am working on an phonegap app for a Samsung Galaxy Tab 3. When this application is in full screen mode, the softkeyboard hides the text input fields and it's impossible to scroll the page to see the content. how could I fix the problem? Jorge Marmolejo After spending a day trying almost every possible solution in this website, nothing worked for me. At the end I was able to find a work around based on the following two proposed solutions: https://stackoverflow.com/a/19494006/1435991 this link shows a workaround to fix the problem for an android app; however I don't have any experience