Reputation: 441
When running ionic build android
ANDROID_HOME=/Library/Android/sdk
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_92.jdk/Contents/Home
Error: Could not find gradle wrapper within Android SDK. Might need to update your Android SDK.
Looked here: /Library/Android/sdk/tools/templates/gradle/wrapper
I tried updating sdk using android update sdk -u
Upvotes: 7
Views: 9927
Reputation: 1764
This worked for me for existing ionic project:
npm install -g cordova
cd <project_dir>
cordova platform update android
Upvotes: 1
Reputation: 131
update android project to cordova-android 6.2.1
ionic platform update [email protected]
for more details check the following links https://cordova.apache.org/announcements/2017/04/05/android-release.html
Upvotes: 6
Reputation: 715
Update manually Android studio
using SDK Manager
please refer this link.
Upvotes: 2