PhoneGap build on mac error

I tried to get PhoneGap works on my mac. When I build a debug version, it gives me this error:

[BUILD] The application of filling source

[BUILD] The analysis of config.xml
[BUILD] Generation of output files
[WARNING] Cannot find the debugging token
[ERROR] Tools BBNDK is not found. Please make sure that you have installed the SDK native BlackBerry [http://developer.blackberry.com/native/] and the path configured via the bbndk-env script.

Where can I configure the location of my debugging token? The BBNDK is installed and I executed the script of bbndk-env. Don't know what I did wrong here.

Hello

Thanks for reporting this.

You will need to run ' source bbndk - env.sh "and you can confirm it worked by running" that blackberry - deploy. "

The warning about the debugging token can be ignored. It is not generated until you use the run script.

We will clean up to make it more explicit error messages.

Tags: BlackBerry Developers

Similar Questions

  • iTunes fails to install the created PhoneGap Build .ipa file

    I used PhoneGap Build to create a .ipa file signed.   However, iTunes is not able to install it on my iPod Touch which is running iOS 9.3.4.   When I start to synchronize the device it goes through the process of installation of the application, but then the application icon disappears and no error message is displayed.   Any suggestions on how to figure out what might be wrong.   I use the latest version of PhoneGap - cli - 6.3.0 (4.2.0 / 5.2.1 / 4.4.1)   My application ID is 2214031.

    Yes.

    The distribution certificate allows you to download from the AppStore. Apps can only be downloaded and installed from there, then.

    If you want to install on your device to directly test a .ipa, there a development certificate, the devices registered (in your account of Apple developers) and a mobileprovision with these included devices.

  • No audio Media plugin using Phonegap Build on Android

    I am building an application that includes reliable audio playback in all of our target platforms and intended to use the media for this task plugin.  I was previously using the native object Javascript Audio, that seemed to work well on some Android devices, but did not work at all on others.  I have implemented the Media plugin in my project, but this day don't have not yet to have successfully play back audio on any of my devices to test and try to identify what I am doing wrong.

    My application should hopefully also run on a desktop browser, so I have a 'phonegap sniffer' in my javascript.  From there, we either start the application on the events of deviceready on mobile devices or document.ready on desktop devices, which seems to work well.

    var is_phonegap = navigator.userAgent.match (/ (iPhone: iPod: iPad |)) Android | BlackBerry | (IEMobile) /); USE DATA USERAGENT TO GUESS AT IF IT IS A DESKTOP APP PHONEGAP BROWSER OR HAS

    IMPLEMENT THE APPELLANTS TO THE DEVICE_READY FUNCTION: ADD EVENT LISTENER FOR PHONEGAP AND ADD DOCUMENT. READY FOR THE DESKTOP

    If (is_phonegap) document.addEventListener ('deviceready', device_ready, false);

    else $(document) .ready (device_ready);

    function device_ready() {}

    Console.log ("is phonegap? ' + (is_phonegap)? 'true': 'false'");

    ...

    }

    All the sound elements within the app are called by a function of play_sound:

    function play_sound (audio_file) {}

    var path = ' audio /' + audio_file;

    If (is_phonegap) var audio = new Media (path, null, media_error); IF IT IS AN APPLICATION, USE THE MEDIA PROVIDED BY THE PHONEGAP PLUGIN OBJECT

    else var audio = Audio new ("audio /' + audio_file"); IF IT IS ON THE DESKTOP, USE THE AUDIO OBJECT PROVIDED BY CORE JAVASCRIPT

    Console.log ("audio:" + JSON.stringify (audio)); INSPECT THE AUDIO OBJECT TO SEE WHAT IT LOOKS LIKE

    audio. Play(); PLAY THE SOUND

    }

    Since the media Builder allows an onError callback, I configure that as well:

    function media_error (e) {}

    Console.log ("media error:" + JSON.stringify (e)) ;// CHECK the ERROR TO SEE what IT LOOKS LIKE

    }

    I'm testing by running Phonegap Dev on an android device connected to Phonegap Office so that I can make use of console.log debug messages.  When I run the application and try to play a sound, I get the following output:

    is phonegap? true

    try to play the audio file: audio / shuffle.mp3 / / THIS FILE IS LOCATED IN THE/WWW/AUDIO/SHUFFLE PROJECT. MP3

    Media error: {"code": 1} / / this IS THE output OF THE MEDIA ERROR HANDLER

    I have ready in several discussions on the Media on Android plugin requirements of additional paths and believe that I have implemented the recommended solution (by Audio doesn't work for Build Android), but this does not help things.  I have changed the above to:


    function play_sound (audio_file) {}

    var path = platform_specific_audio_path ("audio /' + audio_file"); / / RUN PATH THROUGH PLATFORM FUNCTION

    If (is_phonegap) var audio = new Media (path, null, media_error);

    else var audio = Audio new ("audio /' + audio_file");

    Console.log ("audio:" + JSON.stringify (audio));

    audio. Play();

    }

    function platform_specific_audio_path (file) {}

    If (typeof peripheral == "undefined") return files;

    return (device.platform.toLowerCase () == 'android')? "" / android_asset/www / "+ file: file;

    }

    Use this version of the code displays the following:

    try to play the audio file: /android_asset/www/audio/shuffle.mp3

    Media error: {"code": 1}

    It seems that I am getting the same result of error of one of these paths.  I guess that's a path issue but are still to confirm it somehow.  I'm not familiar with how files are built within the app.  Is there a solution for this or can anyone identify what am I doing wrong?  Thanks a lot for any assistance.

    In light of your comment, you use the developer PhoneGap app in your workflow. It is the root of the problem you are experiencing. Using the Desktop App PG or 'phonegap serve' changes nothing (and it should be noted that none of these applications actually build your application.) They serve only the files using a web server.)

    The PhoneGap developer App is the app that run you on your mobile device to connect to PhoneGap Desktop App or "phonegap serving." It comes prebuilt with a selection of plugins, including the Media plugin. So why you can instantiate the class of media and see the properties and methods. Verification of the existence of these properties and methods only serves to check if the plugin is installed, not if the plugin will work correctly.

    In view of your code and the associated error message, you are trying to read a property grouped the app file. When your application is running in the application of the PhoneGap developer, however, no mechanism exists to physically push assets being served in assets grouped Application Developer PG. As a result, demand for game fails because the file is not found.

    A temporary workaround solution just to check that you can, indeed, play a media file would be to change the path to something like this:

        http://dev-machine-IP-address:PG - use-port/www/shuffle.mp3

    However, this is not what you'll want to have long-term in the production code. Instead, you must create a version of your application that you can run it directly (without using the App Developer PG or PhoneGap Serve).

    To do this, you can run (with your Android device, attached and assuming you have the Android SDK installed correctly):

    phonegap $ run android

    This should create a version of your application, including your multimedia files in the bundle and then run it on your device. You should then be able to play multimedia files that you try now.

    Otherwise, you can use the service of Cloud Computing to the PhoneGap Build to create a version of the app:

    Android construction distance phonegap $

    You can download the application resulting on your phone and it should work as well.

    Long-story-short: the developer PhoneGap App isn't a perfect representation of the environment that will receive your built apps. Do not rely on the PG Dev App to simulate an environment perfectly. at one point, the only real criterion is to build your application and install it on a device.

    Hope that helps.

  • PhoneGap build fail (perhaps android SDK Java changes?)

    I use phongap build cli 6.0.0

    Since last 24/03/2016 the build for my app Android fail, recent changes made in support of android sdk libraries in phonegap build there?

    I'm building an application without problems until the day before... (23/03/2016)

    I get the following error:

    Construction date: 2016-03-25 08:24:03 + 0000

    Download https://repo1.Maven.org/Maven2/com/Facebook/Android/Facebook-Android-SDK/4.10.1/Facebook-a ndroid sdk - 4.10.1.pom

    Download https://repo1.Maven.org/Maven2/com/parse/bolts/bolts-applinks/1.3.0/bolts-applinks-1.3.0.p om

    Download https://repo1.Maven.org/Maven2/com/parse/bolts/bolts-tasks/1.3.0/bolts-tasks-1.3.0.Pom

    FAILED: Build failed with an exception.

    * What went wrong:

    There was a problem the root project configuration 'project '.

    > Cannot resolve all the dependencies configuration ': _debugCompile'.

    > Not found com.android.support:support - v4:23.2.0.

    Search in the following locations:

    https://repo1.maven.org/maven2/com/android/support/support-v4/23.2.0/support-v4-23.2.0.pom

    https://repo1.maven.org/maven2/com/android/support/support-v4/23.2.0/support-v4-23.2.0.jar

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/support-v4/23.2.0/Suppo rt - v4 - 23.2.0.pom

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/support-v4/23.2.0/Suppo rt - v4 - 23.2.0.jar

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/support-v4/23.2.0/suppor t - v4 - 23.2.0.pom

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/support-v4/23.2.0/suppor t - v4 - 23.2.0.jar

    Required by:

    : project: indeterminate > com.android.support:support - v13:23.1.0

    > Not found com.android.support:support - v4:23.2.0.

    Search in the following locations:

    https://repo1.maven.org/maven2/com/android/support/support-v4/23.2.0/support-v4-23.2.0.pom

    https://repo1.maven.org/maven2/com/android/support/support-v4/23.2.0/support-v4-23.2.0.jar

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/support-v4/23.2.0/Suppo rt - v4 - 23.2.0.pom

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/support-v4/23.2.0/Suppo rt - v4 - 23.2.0.jar

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/support-v4/23.2.0/suppor t - v4 - 23.2.0.pom

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/support-v4/23.2.0/suppor t - v4 - 23.2.0.jar

    Required by:

    : project: indeterminate > com.facebook.android:facebook - android - sdk:4.10.1

    > Not found com.android.support:cardview - v7:23.2.0.

    Search in the following locations:

    https://repo1.maven.org/maven2/com/android/support/cardview-v7/23.2.0/cardview-v7-23.2.0.p om

    ar https://repo1.maven.org/maven2/com/android/support/cardview-v7/23.2.0/cardview-v7-23.2.0.j

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/CardView-v7/23.2.0/card view - v7 - 23.2.0.pom

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/CardView-v7/23.2.0/card view - v7 - 23.2.0.jar

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/CardView-v7/23.2.0/cardv iew - v7 - 23.2.0.pom

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/CardView-v7/23.2.0/cardv iew - v7 - 23.2.0.jar

    Required by:

    : project: indeterminate > com.facebook.android:facebook - android - sdk:4.10.1

    > Not found com.android.support:support - v4:23.2.0.

    Search in the following locations:

    https://repo1.maven.org/maven2/com/android/support/support-v4/23.2.0/support-v4-23.2.0.pom

    https://repo1.maven.org/maven2/com/android/support/support-v4/23.2.0/support-v4-23.2.0.jar

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/support-v4/23.2.0/Suppo rt - v4 - 23.2.0.pom

    file:/Android-SDK/Extras/Android/m2repository/com/Android/support/support-v4/23.2.0/Suppo rt - v4 - 23.2.0.jar

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/support-v4/23.2.0/suppor t - v4 - 23.2.0.pom

    file:/Android-SDK/Extras/Google/m2repository/com/Android/support/support-v4/23.2.0/suppor t - v4 - 23.2.0.jar

    Required by:

    : project: indeterminate > com.google.android.gms:play - services-Analytics: 8.4.0 > com.google.android.gms:play - services-under-ground: 8.4.0

    * Try:

    Run with the option - stacktrace to get stack trace. Run with the option - info or - debug option to get out of the newspaper.

    BUILD FAILED

    Total time: dry 5,785

    undefined

    Support Android library updated 23.2.0 on the PhoneGap Build that fixes this problem.

    If you now receive this error:

    use - sdk:minSdkVersion 14 cannot be less than the declared 15 version in the project/build/intermediates/exploded-aar/com.facebook.android/facebook-android-sdk/4.10 library. 1/AndroidManifest.Xml

    You can also set your project to 15 minSdkVersion or more:

    The cause of this was the update to its android library dependecy facebook-android-sdk version supported.

  • PhoneGap Build API is not construction of application despite the 202 response

    Hello

    I wonder if anyone has had success using the API to build Phonegap to trigger the app builds?

    I write as follows. I replaced all the staff but happy to provide what whatsoever, if it helps.

    CURL u [email protected] x d POST " https://Build.PhoneGap.com/API/v1/Apps/123456/Build?auth_token=xxxxxxxxxxxxxxxxxxx

    I use the token stored in my account rather than generate it on the fly.

    And I get a 202 response back with the following data

    "" " string (1366)" {'id': 123456, "title": "App Title", "package": "com.ionicframework.appname123", "version": "0.0.2", "build_count": 10, "priv ate ': true, 'phonegap_version':" cli - 5.2.0 ","hydrate": true, 'share': false, 'last_build':"2016-02-02 07:33:29-0800",} ' description ': 'Check the application',"repo":"https://github.com/githubid/App.gittag ',' ":" ", 'debug': true, 'link':" / api/v1/apps/123456 ", 'plugins':" / api/v1/apps/123456/plugin s "", 'complete': true, 'role': "admin", "icon": {"filename": '[email protected]', 'link': "/ api/v1/app s/123456/icon"} " "" "", 'status': {"android": 'complete', 'ios': 'full', "winphone": 'jump'}, "downlo Announces": {"android": "/ api/v1/apps/123456/android", 'ios': "/ api/v1/apps/123456/ios"}, "error": {}, "install_url": "https://build.phonegap.com/apps/123456/install/abc123share_url ','": "https://build.phonegap.com/apps/123456/shareemployees ',' ': {'link':" / api/v1/apps/123456/collaborators ',' active ': [{'id': 111222, 'role': 'admin', 'person' ": '[email protected]',' link':" / api/v1/apps/123456/collaborators/222333 ""}] 'pending': []}, 'key '. "{: {"android": null, 'ios': {'id': 333444,"title":"Proclamer Cert', 'platform': 'ios', 'link': "/ api/v1/keys/ios/444555 ', 'default': true},"winphone": null}, '' newspapers '': {"android":" / api/v1/apps/123456/newspapers/android/construction ", 'ios':" / api/v1/apps/123456/logs/ios/build ","winphone":" / api/v1/apps/123456/newspapers/winphone/construction "}}"

    If everything looks good. But the app isn't the building when I trigger this. I was wondering if it was because the hydration has been lit and if that it impacts. Or if someone has a wisdom on what else to try.

    Because the code must be pulled from GitHub, I ran this call first to see if that makes a difference, but apparently not. I get the same answer to the foregoing.

    CURL u [email protected] PUT d x ' data = {'branch': 'The master'}' https://Build.PhoneGap.com/API/v1/Apps/123456?auth_token=xxxxxxxxxxxxxxxxxxxx

    Thank you

    Matt

    Just noticed that're missing you a parameter. Your sales data should look like this:

    -d 'data={"pull":"true"}'

    According to the docs "Update of an application based on the repo" here: PhoneGap Build Documentation.

  • That e-mail address is already bound to an account of PhoneGap Build.

    I'm trying to connect to Phonegap Build with my AdobeID and I get the error in the title.

    I think at one point I had an account Phonegap Build directly associated with my email address but I can't connect to this one no more, and when I ask for a password reset I get a link to the page to reset password AdobeID (that I don't need). Nevertheless, I would like to use Phonegap with my subscription AdobeID and creative cloud that I can enjoy the advantages compared to the free user, I've had.

    Could you please help me with this?

    Hi on PhoneGap Build current account for your email address is linked to an adobe ID

    [email protected]

    you always have access to this account?  otherwise I can just delete this account and you can record again with your new adobeid.

  • PhoneGap Build just for subscribers?

    Hello!

    I test DW CC 2014 and when I try to use Phonegap Build it takes me to the download page, where it says it's only for subscribers.

    I tried to download using the creative cloud, but nothing happened, error or message.

    Anyway is to test it on CC 2014?


    Thank you.

    Hi husker84,

    I confirmed with the product team that the Add On is available only to paid subscribers.

    Thank you

    Preran

  • How can I sign an application made with PhoneGap Build?

    Hello

    I set up the service of PhoneGap Build and created an account in order to make an application and download it in my cell phone.

    Now I've reached the point where I want to sign it and upload it to Google game.

    I have a developer account and I filled out all the data, do some screenshots and icons and a description for the app, etc.

    When I try to download on Google game it says "Upload failed...". "and I have to disable debugging.

    I tried to find information on how to do it and I installed the SDK package and even with success put in place the path in the settings for PhoneGap Build without any protest...

    Now what?

    I read trhe documentation on how to make a key with keytool using the cmd in windows one private key was transferred on my account on the phonegap construction site.

    Now according to the doc in phonegap to build this key must be used to signing the app I did in dreamweaver. So I recreated the app in Dreamweaver and uploaded and then tried to download Google game.

    Always the same problem that the application is in debug mode. This means that generation gap phone does not work as it should, or maybe that my key does not work.

    So my question is, first of all how can we see if the key is correctly generated with keytool?

    My next step is to manually sign the file app.apk with the jarsigner tool so I tried to do what therefore to the sample in the android documentation.

    This a screenshot of my attempt and the error message in the command line:

    error_jarsigner.png

    It feels like I've done everything by the book, but still my app is not signed and not valid for download on Google game files.

    Please give me a help in the creation of this last stage little but so difficult.

    Thank you!

    Micke

    Post edited by: MickeBergman

    I solved it...

    If someone else made the same mistake that I had then look here.

    Just create the key with the keytool utility using the command line (cmd.exe)

    Here is the how to guide (scroll down to "1." Obtain a suitable private key")

    Use the example, it works very well.

    Then upload it to your PhoneGap Build account by logging in at build.phonegap.com

    Under your account settings, download the yourkey.keystore file, and then unlock it.

    Then under Apps on your downloaded App title to get into the details of the application.

    Then (and this is what I missed and therefore have not signed and published) choose the key that you downloaded in the fold to the bottom of the menu to the right hanbd of the android logo

    Then click on rebuild and when it's done rebuild you just download and there a Yourapplication release added the file name and you are ready!

    Pheeeww it is a terrifying experience and yet so simple solution... Another strange noone has experienced this before me.

    In the end, I really welcome Dreamweaver which is also a great tool to easily make your own applications.

  • PhoneGap Build plugin Don t work

    I m using edge Code CC on my mac. The work of Don t Phonegap Build plugin. I have can´t send files or anything like that.

    Thank you

    Alex

    Hi Alex, unfortunately it is a problem known as of now. I am hoping to update the plugin this week, so it does not work with new versions of Code of edge and consoles.

    = Ryan

    [email protected]

  • PhoneGap Build and creative cloud

    Hello

    I have a full account of creative cloud and I thought I had 25 private apps built with Phonegap, built from Dreamweaver as follows:

    Schermata 01-2456300 alle 01.13.51.png

    Unfortunately after compliling the package I get a message like... "you have exceeded the number of apps...". ». But I have only 2 applications on the server Phonegap. Any suggestions to solve the problem? Thanks, K.

    One thing to make sure is that you connected using the correct Adobe ID (in the Service of Build PhoneGap Panel) in Dreamweaver. I checked the account associated with the same e-mail address, you used to log in to these forums and confirmed that it is configured correctly for PhoneGap Build.

    You get this message in Dreamweaver?
    If so, what are you doing / just before clicking the message?

    What exactly the message say?
    If you could include a screenshot of the error, it would be much appreciated.

    If you create a Site in Dreamweaver, create an index.html file there and then try to download this PhoneGap Build via Dreamweaver, you receive the same message?

  • PhoneGap Build: unable to connect to the server, Dreamweaver CS6

    Hey guys, I was wondering if someone could fix this problem, I saw, I have Dreamweaver cs6 on a mac, and im trying to connect to phonegap build in dreamweaver, but every time I try, it says that it cannot connect to servers, please try again later, is this a known problem?

    Thank you

    Jonathan

    Make sure that you installed the updates for your software Adobe CS6. Go to help > updates to make sure you have later. One in particular you need to install is CSXS, even if I don't remember the exact name of it.

    After update, restart your computer to ensure that the associated background services are up-to-date.

    If it still does not then, there are a couple of log files, we want to verify what is happening at your end. They are called 'init_status.txt' and 'auth_status.txt' and are located in a folder called "BMP" in /Users/Library/Application Support/Adobe on Mac OS, or C:\Users\\AppData\Roaming\Adobe on Windows 7.

  • Get the .csk for PhoneGap Build .db file

    Hello

    I am trying to build my app with PhoneGap Build, but it requires two a. CSK and one. DB file.

    I had the. CSK folder but now I have no idea how to get the. DB one. I tried searching the Internet, but all the information I got is different and not clear. I have received no other files by email.

    Is it possible to get the. File DB without installing any SDK? It is nearly 300 MB (I use Windows XP). And I really don't need, I want just that file.

    Please, I would appreciate your help.

    Thank you much in advance.

    See you soon,.

    Joan

    Hello. You are not able to build for BBOS with WebWorks 2.0 product. BBOS is a separate architecture even to WebWorks.

    To build to BBOS, you will need to use the tools BBOS here:

    http://developer.BlackBerry.com/BBOS/HTML5/

    Thank you.

  • Icons + phonegap build

    Hello, can someone help me please?

    I'm creatine a version for Android and IOS 'build.phonegap.com '. I have download a zip file with all the project files, but I can't ever see icons in both versions.

    images of icons are built with Ionic resources splashes and icons, here are some screenshots and infos:

    -It is a screenshot of my zip content I upload in the phonegap build.

    captura A.jpg

    - And it's my res folder structure

    captura B.jpg

    -fragment of my config.xml file

    < platform name = "android" >

    "< src="res/icon/android/drawable-ldpi-icon.png icon "qualifier ="ldpi"/ >

    "< src="res/icon/android/drawable-mdpi-icon.png icon "qualifier ="mdpi"/ >

    "< src="res/icon/android/drawable-hdpi-icon.png icon "qualifier ="hdpi"/ >

    "< src="res/icon/android/drawable-xhdpi-icon.png icon "qualifier ="xhdpi"/ >

    "< src="res/icon/android/drawable-xxhdpi-icon.png icon "qualifier ="xxhdpi"/ >

    "< src="res/icon/android/drawable-xxxhdpi-icon.png icon "qualifier ="xxxhdpi"/ >

    "< splash src="res/screen/android/drawable-land-ldpi-screen.png "qualifier ="Earth-ldpi"/ >

    "< splash src="res/screen/android/drawable-land-mdpi-screen.png "qualifier ="Earth-mdpi"/ >

    "< splash src="res/screen/android/drawable-land-hdpi-screen.png "qualifier ="Earth-hdpi"/ >

    "< splash src="res/screen/android/drawable-land-xhdpi-screen.png "qualifier ="Earth-xhdpi"/ >

    "< splash src="res/screen/android/drawable-land-xxhdpi-screen.png "qualifier ="Earth-xxhdpi"/ >

    "< splash src="res/screen/android/drawable-land-xxxhdpi-screen.png "qualifier ="Earth-xxxhdpi"/ >

    "< splash src="res/screen/android/drawable-port-ldpi-screen.png "qualifier ="port-ldpi"/ >

    "< splash src="res/screen/android/drawable-port-mdpi-screen.png "qualifier ="port-mdpi"/ >

    "< splash src="res/screen/android/drawable-port-hdpi-screen.png "qualifier ="port-hdpi"/ >

    "< splash src="res/screen/android/drawable-port-xhdpi-screen.png "qualifier ="port-xhdpi"/ >

    "< splash src="res/screen/android/drawable-port-xxhdpi-screen.png "qualifier ="port-xxhdpi"/ >

    "< splash src="res/screen/android/drawable-port-xxxhdpi-screen.png "qualifier ="port-xxxhdpi"/ >

    < / platform >

    < platform name = "ios" >

    "< icon src="res/icon/ios/icon.png "width ="57"height ="57"/ >

    < icon src = "res/icon/ios/[email protected]" width = "114" height = "114" / >

    "< icon src="res/icon/ios/icon-40.png "width ="40"height ="40"/ >

    < icon src = ' res/icon/ios/[email protected]' width = '80' height = '80' / >

    "< icon src="res/icon/ios/icon-50.png "width ="50"height ="50"/ >

    < icon src = "res/icon/ios/[email protected]" width = "100" height = "100" / >

    "< icon src="res/icon/ios/icon-60.png "width ="60"height ="60"/ >

    < icon src = "res/icon/ios/[email protected]" width = "120" height = "120" / >

    < icon src = "res/icon/ios/[email protected]" width = "180" height = "180" / >

    "< icon src="res/icon/ios/icon-72.png "width ="72"height ="72"/ >

    < icon src = "res/icon/ios/[email protected]" width = "144" height = "144" / >

    "< icon src="res/icon/ios/icon-76.png "width ="76"height ="76"/ >

    < icon src = "res/icon/ios/[email protected]" width = "152" height = "152" / >

    "< icon src="res/icon/ios/icon-small.png "width ="29"height ="29"/ >

    < icon src = "res/icon/ios/[email protected]" width = "58" height = "58" / >

    < icon src = "res/icon/ios/[email protected]" width = "87" height = "87" / >

    "< splash src="res/screen/ios/Default-568h@2x~iphone.png "width ="640"height ="1136"/ >

    "< splash src="res/screen/ios/Default-667h.png "width ="750"height ="1334"/ >

    "< splash src="res/screen/ios/Default-736h.png "width ="1242"height ="2208"/ >

    "< splash src="res/screen/ios/Default-Landscape-736h.png "width ="2208"height ="1242"/ >

    "< splash src="res/screen/ios/Default-Landscape@2x~ipad.png "width ="2048"height ="1536"/ >

    "< splash src="res/screen/ios/Default-Landscape~ipad.png "width ="1024"height ="768"/ >

    "< splash src="res/screen/ios/Default-Portrait@2x~ipad.png "width ="1536"height ="2048"/ >

    "< splash src="res/screen/ios/Default-Portrait~ipad.png "width ="768"height ="1024"/ >

    "< splash src="res/screen/ios/Default@2x~iphone.png "width ="640"height ="960"/ >

    "< splash src="res/screen/ios/Default~iphone.png "width ="320"height ="480"/ >

    < / platform >

    Thanks for your replies

    In the paths, you use a backslash (' \ '). Should be the slash (' / ').

    BTW: you must remove the obsolete

       

     

  • How to lock the orientation in the PhoneGap Build

    I'm trying to transfer a game on Android with PhoneGap Build JS/CSS/HTML and I need to lock the rotation to the landscape, but I can't find a working online solution.

    I tried to put it in the config.xml file, but it does not work:

    <preference name="orientation" value="landscape" />
    

    And I found others online who say to change the AndroidManifest.xml, but I can't find it in my project PhoneGap folder I have these files:

    -.cordova (empty folder)

    -hooks (empty folder)

    -platforms

    -browser (contain default phonegap site/app)

    -platforms.json

    -plugins

    -www (contain the site's html/css/js files I want to put in an Android app)

    Thanks for your help!

    This could be your problem. The config.XML and index.html file must be in the same directory and that the the root of the zip file you publish PhoneGap Build. The hooks, platforms should not be included in the zip file.

  • Images by default Windows Store rejects built with Phonegap Build

    Recently this year, Microsoft has updated their policies.  PhoneGap Build has updated their servers for including CLI 6.1 +, which opens the options for the config.xml file for different processor architectures Windows, as well as versions of OS now.  Now, there is a problem, I have somewhere in the process.  The problem is a failure to test brand:

    There are some images that are respected in the output of the .aspx file resulting of Phonegap Build.  The images in question are images of Cordoba by default placed in the folder root\images of the .aspx file.  No matter what configurations I place my file config.xml, these images are not being replaced, so the .aspx still has no presentation.  I tried these parameters:

    Here is the structure of the app:

    As you can see, I tried to place in different places.  I've updated the config.xml file each time.  I tried these permutations different config.xml:

    "< icon src="icons/windows/StoreLogo.scale-100.png "width ="50"height ="50"/ >

    "< icon src=www/icons/windows/StoreLogo.scale-100.png" width = "50" height = "50" / >

    "< icon src="res/icon/windows/StoreLogo.scale-100.png "width ="50"height ="50"/ >

    "< icon src="www/icons/windows/StoreLogo.scale-100.png "target ="StoreLogo"/ >

    At least if Phonegap Build has not generated from these files, the application would satisfy.  Take not that I have a set of default icon and splash screen.  These settings especially for my default settings changed not the generation who spent (a few months ago) before the update to their servers for support of Windows 10 GBP.  The resulting app generated at that time there was the screen icon and correct boot for all platforms.

    How do I configure BMPS to create an application that will pass the requirements of Microsoft or remove .png files in the Archives of .aspx, under pics which are the images by default of cordova dislike Microsoft.

    I submitted this as a bug.  It was addressed quickly and BMP substitute for now all images, as expected.

    Build for Windows does not crush the 7 of 15 default images · Number #536 · PhoneGap/construction · GitHub

Maybe you are looking for

  • Could not access Console in Fallout 3 in Windows Vista... How to disable MIRC?

    I bought the game Fallout 3 a few weeks ago and has recently wanted to access the game console command line, but the game does not recognize the support of the tilde (~) key.  I spent many hours trying to figure out why this is the case, and I got th

  • I want to block the resolution of the screen

    My son is always change the resolution of the screen. I'll put the 800 * 600 screen resolution which is good for my eyes. I want to block the resolution 600 X 800 with a password. Is there a method to achieve this? kindly help me.

  • Windows 7 64 bit drivers for a db7 model Envy TPN-W107 product number C2N70UA #ABA

    I need to find 2 drivers for a device universal serial bus with the hardware ID: PCI\VEN_1022 & DEV_7812 & SUBSYS_1833103C & REV_03 PCI\VEN_1022 & DEV_7812 & SUBSYS_1833103C PCI\VEN_1022 & DEV_7812 & CC_0C0330 PCI\VEN_1022 & DEV_7812 & CC_0C03 This i

  • Problem mouse Touchpad

    The touchpad on my laptop mouse does not suddenly scroll more; in other words, when I touch on the sides, all that I am to-Web page, document, whatever either - does not move upwards or downwards, a when I touch on the bottom, nothing moves side to s

  • S-1-5-21-484763869-1606980848-725345543-1003

    I cleaned up a few old HDDs to be used as data storage.  Trying to eliminate the clutter of old, I came across a file that says I need permission from S-1-5-21-484763869-1606980848-725345543-1003 to delete the associated files.  I'm curious to know w