ionic build Android | error: No installed build tools found. Please install the Android build tools

后端 未结 27 3573
被撕碎了的回忆
被撕碎了的回忆 2020-11-28 05:25

When I run ionic build android command in root of ionic project, I am getting this error:

FAILURE: Build failed with an exception.

27条回答
  •  囚心锁ツ
    2020-11-28 05:47

    as the error says 'No installed build tools found' it means that

    1 : It really really really did not found build tools

    2 : To make him find build tools you need to define these paths correctly

    PATH IS SAME FOR UBUNTU(.bashrc) AND MAC(.bash_profile)

    export ANDROID_HOME=/Users/vijay/Software/android-sdk-macosx
    export PATH=${PATH}:/Users/vijay/Software/android-sdk-macosx/tools
    export PATH=${PATH}:/Users/vijay/Software/android-sdk-macosx/platform-tools
    

    3 : IMPORTANT IMPORTANT as soon as you set environmental variables you need to reload evnironmental variables.

    //For ubuntu
    $source .bashrc 
    
    //For macos
    $source .bash_profile
    

    4 : Then check in terminal

    $printenv ANDROID_HOME
    $printenv PATH
    

    Note : if you did not find your changes in printenv then restart the pc and try again printenv PATH, printenv ANDROID_HOME .There is also command to reload environmental variables .

    4 : then open terminal and write HALF TEXT '$and' and hit tab. On hitting tab you should see full '$android' name.this verifys all paths are correct

    5 : write $android in terminal and hit enter

提交回复
热议问题