cordova platform add android not working while listing Android targets

后端 未结 12 1743
野趣味
野趣味 2020-11-29 16:48

I got problem when i want to add an android platform to my phoneGap application. I got this message in my CLI when i execute the command cordova platform add android :

相关标签:
12条回答
  • 2020-11-29 17:19

    I had the same issue even though path variables were set exactly as per the instructions. After going through multiple files I finally got it resolved. For me (Windows 7 enterprise 64 bit) I had to modify check_reqs.js and create.js from "C:\Users\.cordova\lib\android\cordova\3.5.0\bin\lib\" folder to include absolute path for the android.bat. My android SDK is under "C:\Android\android-sdk".

    In check_reqs.js I modified

    child_process.exec('android list targets', function(err, stdout, stderr) {
    

    to

    child_process.exec('C:\\Android\\android-sdk\\tools\\android.bat list targets', function(err, stdout, stderr) {
    

    In create.js I modified the statement

    return exec('android update project --subprojects --path "' + projectPath + '" --target ' + target_api + ' --library "' + path.relative(projectPath, targetFrameworkDir) + '"');
    

    to

    return exec('C:\\Android\\android-sdk\\tools\\android.bat update project --subprojects --path "' + projectPath + '" --target ' + target_api + ' --library "' + path.relative(projectPath, targetFrameworkDir) + '"');
    

    Also do not forget those double "\\" in the absolute path

    0 讨论(0)
  • 2020-11-29 17:25

    To work, this cordova command needs to use some programs located into your sdk/tools directory. You need also have installed apache ant.

    Then you must add these directories into your PATH system variable:

    Background:

    • let's assume you have installed your Android SDK to the c:\sdk\android directory
    • you have installed you Apache ant to the c:\tools\apache-ant directory

    Then you must create two system variables:

    1. ANDROID_HOME with the c:\sdk\android value
    2. ANT_HOME with the c:\tools\apache-ant value

    Finally, you must modify the PATH variable and add those two to the end of the PATH' value:

    ;%PATH%\tools;%ANT_HOME%\bin;%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools
    

    NOTE: for those who uses Linux, the instruction differs a bit.

    More documentation available here.

    0 讨论(0)
  • 2020-11-29 17:28

    Run the "android" command from your adt\sdk\tools folder and install the latest Tools and SDK. Also make sure your PATH has the right variables.

    For this you will need ANT to be installed , a JAVA JDK and an Android SDK installed

    JAVA_HOME (C:\Program Files\Java\jdk)

    ANT_HOME ({ant location}\apache\apache-ant)

    ANDROID_HOME ({android sdk location}\android-sdk)

    Add these to your PATH variable like %ANT_HOME%/bin;%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools;%JAVA_HOME%\bin

    Close and re-open your cmd and run your command again.

    Similiar to PhoneGap/Cordova Android Development

    0 讨论(0)
  • 2020-11-29 17:28

    I'm not sure if this is your problem, but I've encountered similar errors when the cordova library cache gets polluted with something corrupted. To fix it, you just need to delete the cordova cache, and it will automatically repopulate next time you use 'cordova'.

    On OS X, this directory is ~/.cordova. On Windows, I assume it's .cordova in your users home directory still.

    0 讨论(0)
  • 2020-11-29 17:30

    For those chosen ones, who preferred Linux development environment

    Requirements

    First of all, you will need a few things to get started. They are: Android SDK and Apache Ant. Of course, you will need Java SDK (JDK) installed.

    To get Android SDK working for all users, you shall need to modify the /etc/environment file and then restart your PC. But if you do not want that hard way - follow me, think of yourself as the only PC user. And use /home/YOUR_USERNAME/.bashrc file to edit.

    Let's remember your home path one time to prevent further long lines. Add this one to your /home/YOUR_USERNAME/.bashrc:

    export HOME="/home/YOUR_USERNAME"
    

    We'll then use the $HOME notation when we want to say "/home/YOUR_USERNAME directory".

    Setting up Android SDK

    Download the Android SDK archive and unzip it somewhere. Let's say, yo your home directory, $HOME/adt-bundle/.

    Add these lines to your $HOME/.bashrc:

    export ANDROID_HOME="$HOME/android-bundle/sdk/tools"
    export ANDROID_PLATFORM_TOOLS="$HOME/android-bundle/sdk/platform-tools"
    export PATH="$ANDROID_HOME:$ANDROID_PLATFORM_TOOLS:$PATH"
    

    Setting up Ant

    Just as with the Android SDK, download an archive and unzip it to your home directory. Then add these to your .bashrc:

    export ANT_HOME="$HOME/ant"
    export PATH="$PATH:$ANT_HOME/bin"
    

    I've installed one via the apt-get so this did not affect my .bashrc.

    Applying changes

    To make these changes work, you should either work in a new terminal window (opened after the changes), or run source ~/.bashrc to make changes available in the current terminal window.

    Wrapping up

    At the end, you will got:

    1. Two directories at your home directory - ant and android-bundle
    2. A few lines, added to your .bashrc:

      export ANDROID_HOME="$HOME/android-bundle/sdk/tools"
      export ANDROID_PLATFORM_TOOLS="$HOME/android-bundle/sdk/platform-tools"
      export PATH="$ANDROID_HOME:$ANDROID_PLATFORM_TOOLS:$PATH"
      
      export ANT_HOME="$HOME/ant"
      export PATH="$PATH:$ANT_HOME/bin"
      
    0 讨论(0)
  • 2020-11-29 17:31

    I noticed the problem with Cygwin/Windows 7. The problem stems from the slightly different ways Cygwin and MS-DOS shells treat .bat files.

    During "add platform", cordova invokes "android":

    C:\Users\xxx\.cordova\lib\android\cordova\3.4.0\bin\lib\check_reqs.js
    

    Where it calls 'android list targets' (on line 73)

    "android" should resolve to /xx/android-sdk/tools/android.bat or xx:\android-sdk\tools\android.bat. (And, in fact it does, I can run "android" on the MS-DOS command shell - but not in Cygwin shell. There I need to add ".bat".)

    "android" without ".bat" fails in Cygwin shell because android.exe doesn't exist (only .bat does). Changing line 73 to invoke 'android.bat list targets' will solve your problem (or give a reasonable error message).

    Another work-around is to run cordova in a MS-DOS shell instead of Cygwin shell.

    0 讨论(0)
提交回复
热议问题