ryan, Developer
- 1538 Posts
- 132 Reply Likes
Posted 7 years ago
Eddy Verbruggen, Champion
- 375 Posts
- 86 Reply Likes
Can you please tell us when 3.0.0 will be the default (in case you don't specify a version in the config.xml)?
I think it's relevant to know for 3rd party plugin makers (because Android plugins will probably not work on 3.0.0 without a code change).
Thanks and congrats,
Eddy
ryan, Developer
- 1538 Posts
- 132 Reply Likes
Eddy Verbruggen, Champion
- 375 Posts
- 86 Reply Likes
- 214 Posts
- 7 Reply Likes
plugin unsupported: com.adobe.plugins.gaplugin
How can I use Google Analytics plugin ?
my config.xml contain :
<preference name="permissions" value="none"/>
<preference name="phonegap-version" value="3.0.0" />
<preference name="load-url-timeout" value="11000" />
<gap:plugin name="com.adobe.plugins.gaplugin" />
<gap:platform name="android" />
ryan, Developer
- 1538 Posts
- 132 Reply Likes
- 214 Posts
- 7 Reply Likes
- 65 Posts
- 5 Reply Likes
"Oh geez. Your build failed. Sorry, but a problem occurred on the build server"
App ID 275415
- 65 Posts
- 5 Reply Likes
- 106 Posts
- 6 Reply Likes
If you're using the ChildBrowser plugin I'd strongly recommend NOT upgrading to 3.0.0 where it is no longer supported. The new InAppBrowser plugin isn't as powerful yet, e.g. it doesn't support zooming.
ryan, Developer
- 1538 Posts
- 132 Reply Likes
@ian -- you say InAppBrowser doesn't support zooming -- what platform are you testing on? pinch and zoom should work.
@yann -- I see that you've logged an issue in Jira regarding the sound still playing. Does this behave correctly in ChildBrowser? Same with your CSS and JS injection -- does this do what you want in ChildBrowser? Can you provide an example of what you mean?
Guillermo Aguirre de Cárcer DomÃnguez
- 10 Posts
- 0 Reply Likes
ryan, Developer
- 1538 Posts
- 132 Reply Likes
https://build.phonegap.com/plugins/87
As of 3.0, all core plugins must be included in your config.xml
Guillermo Aguirre de Cárcer DomÃnguez
- 10 Posts
- 0 Reply Likes
- 65 Posts
- 5 Reply Likes
I have looked through my config.xml and seems to be matching up with https://build.phonegap.com/docs/confi...
So unless someone has pushed something live without updating documentation, I'm up a well populated watery location without any form of propulsion.
- 65 Posts
- 5 Reply Likes
Here's the config file - thanks:
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.test.test"
versionCode = "112"
version = "1.1.2">
<name>Test</name>
<description>
Test Application
</description>
<author href="http://www.test.com" email="test@test.com">
Test
</author>
<feature name="http://api.phonegap.com/1.0/device" />
<feature name="http://api.phonegap.com/1.0/camera&qu...;
<feature name="http://api.phonegap.com/1.0/contacts&...;
<feature name="http://api.phonegap.com/1.0/file"...;
<feature name="http://api.phonegap.com/1.0/geolocati...;
<feature name="http://api.phonegap.com/1.0/media&quo...;
<feature name="http://api.phonegap.com/1.0/network&q...;
<feature name="http://api.phonegap.com/1.0/notificat...;
<preference name="phonegap-version" value="3.0.0" /> <!-- all: current version of PhoneGap -->
<preference name="orientation" value="portrait" /> <!-- all: default means both landscape and portrait are enabled -->
<preference name="target-device" value="handset" /> <!-- all: possible values handset, tablet, or universal -->
<preference name="fullscreen" value="true" /> <!-- all: hides the status bar at the top of the screen -->
<preference name="webviewbounce" value="false" /> <!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
<preference name="prerendered-icon" value="false" /> <!-- ios: if icon is prerendered, iOS will not apply it's gloss to the app's icon on the user's home screen -->
<preference name="stay-in-webview" value="false" /> <!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in -->
<preference name="ios-statusbarstyle" value="black-opaque" /> <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
<preference name="detect-data-types" value="false" /> <!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
<preference name="exit-on-suspend" value="true" /> <!-- ios: if set to true, app will terminate when home button is pressed -->
<preference name="show-splash-screen-spinner" value="true" /> <!-- ios: if set to false, the spinner won't appear on the splash screen during app loading -->
<preference name="auto-hide-splash-screen" value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
<preference name="disable-cursor" value="false" /> <!-- blackberry: prevents a mouse-icon/cursor from being displayed on the app -->
<preference name="android-minSdkVersion" value="7" /> <!-- android: MIN SDK version supported on the target device. MAX version is blank by default. -->
<preference name="android-installLocation" value="auto" /> <!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
<gap:plugin name="com.phonegap.plugins.barcodescanner" />
<gap:plugin name="org.apache.cordova.core.camera" />
<gap:plugin name="org.apache.cordova.core.media-capture" />
<gap:plugin name="org.apache.cordova.core.console" />
<gap:plugin name="org.apache.cordova.core.contacts" />
<gap:plugin name="org.apache.cordova.core.device" />
<gap:plugin name="org.apache.cordova.core.audiohandler" />
<gap:plugin name="org.apache.cordova.core.dialogs" />
<gap:plugin name="org.apache.cordova.core.network-information" />
<icon src="icons/icon.png" width="57" height="57" />
<icon src="icons/icon72.png" width="72" height="72" />
<icon src="icons/icon2x.png" width="120" height="120" />
<icon src="icons/icon114.png" width="114" height="114" />
<gap:splash src="splash.png" />
<access origin="*"/>
<preference name="splash-screen-duration" value="1" />
</widget>
- 65 Posts
- 5 Reply Likes
- 255 Posts
- 0 Reply Likes
- 65 Posts
- 5 Reply Likes
<gap:plugin name="org.apache.cordova.core.camera" />
<gap:plugin name="org.apache.cordova.core.media-capture" />
<gap:plugin name="org.apache.cordova.core.console" />
<gap:plugin name="org.apache.cordova.core.contacts" />
<gap:plugin name="org.apache.cordova.core.device" />
<gap:plugin name="org.apache.cordova.core.audiohandler" />
<gap:plugin name="org.apache.cordova.core.dialogs" />
<gap:plugin name="org.apache.cordova.core.network-information" />
Its as per the documentation, and surely its been tested, so I am guessing the documentation is wrong?
- 106 Posts
- 6 Reply Likes
ryan, Developer
- 1538 Posts
- 132 Reply Likes
- 214 Posts
- 7 Reply Likes
- 6 Posts
- 0 Reply Likes
ENCODING problems
version: Barcodescanner 1.0.2
Compiled through build.phonegap.com PhoneGap 3.0.0
platform: Android (tested on Galaxy Nexus 4.1.2)
1) Barcodescanner crashes on Settings button
- Scanner crashes, when you encode and while it shows the barcode you press the settings button.
2) Success callback
- Success callback is not executed
- How can I get the base64 encoded image to show it in the app?
- How can I keep the plugin from showing the fullscreen result? (I would prefer to get it as base64)
- Which options can I pass to the Encoder?
platform: iOS (ios6)
1) Encoding throws: encoding failed: encode function not supported.
- 39 Posts
- 0 Reply Likes
This document appears out of date.
http://build.phonegap.com/docs/config...
- 214 Posts
- 7 Reply Likes
- 9 Posts
- 0 Reply Likes
ryan, Developer
- 1538 Posts
- 132 Reply Likes
https://issues.apache.org/jira/browse...
I've reproduce your issue and will see if I too can trace the source.
ryan, Developer
- 1538 Posts
- 132 Reply Likes
- 9 Posts
- 0 Reply Likes
- 11 Posts
- 0 Reply Likes
On phonegap build. All I did was add the following line in my config file:
Oh well.... I'll try again tomorow.
ryan, Developer
- 1538 Posts
- 132 Reply Likes
Can't reproduce your issue. Here's an example including the inappbrowser plugin that is working fine:
https://github.com/wildabeast/PhoneGa...
- 3 Posts
- 0 Reply Likes
Error: Plugin doesn't support this project's Cordova version. Cordova: 2.9.0, failed version requirement: >=3.0.0
Is GA plugin isn't supported on phone-gap 2.9 anymore?
Related Categories
-
PhoneGap Build
- 15111 Conversations
- 275 Followers







