Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find gradle wrapper within Android SDK. Might need to update your Android SDK [duplicate]

Edit:

There has been a newer release of Cordova Android that also fixes some problems with SDK tools 26.x.x

cordova platform update [email protected]

or

cordova platform rm android
cordova platform add [email protected]

Old answer

Google broke Cordova Android 6.1.x and some other frameworks with their latest sdk tools update.

Cordova Android 6.2.1 has been released and it's now compatible with latest Android SDK.

You can update your current incompatible android platform with cordova platform update [email protected]

Or you can remove the existing platform and add the new one (will delete any manual change you did inside yourProject/platforms/android/ folder)

cordova platform rm android cordova platform add [email protected]

You have to specify the version because current CLI installs 6.1.x by default.


I resolved by this by replacing the tools folder in my Android SDK with an older version of the SDK tools (r25.2.3). Follow these steps to do the same:

  1. Navigate to https://developer.android.com/studio/index.html, click "Download Options", scroll down, and download the command line tools package for your platform, ensuring that you get a version in the r25.2.X series (not r25.3.X).
  2. Unzip this folder. You should end up with a tools directory.
  3. Navigate to your $ANDROID_HOME directory (~/Library/Android/sdk/ on OS X).
  4. Rename the pre-existing tools directory there to tools.bak (e.g., mv tools tools.bak)
  5. Move the tools directory you just downloaded into the SDK folder (e.g., mv ~/Downloads/tools/ .)

A new major version of the SDK tools was just released, which appears to be causing some issues with Ionic (see the press release here: http://tools.android.com/recent/androidsdktoolsrevision2530feb2017).


This worked for me

cordova platform update [email protected]


There's no need to downgrade Android Tools. On Windows gradle moved from:

C:\Users\you_username\AppData\Local\Android\sdk\tools

to:

C:\Program Files\Android\Android Studio\plugins\android\lib\templates\gradle\wrapper

So you just need to ajust your path so that it points to the right folder.


I had same problem and I solved it with Carlos Delgado's answer.

  • Android Path must be set before all things below.
  • Download the latest command line tools (https://developer.android.com/studio/index.html -> very bottom part)
  • Unzip -> copy and paste "tools > templates" folder to your project folder (/Libraries/Android/sdk/tools/)
  • press option key to see Libraries folder in your Finder