Error: Could not find gradle wrapper within android sdk. Might need to update yo ur Android SDK

For future reference to other readers. Yeah. Make sure ANDROID_HOME includes the version number of the Android API you’re targeting, e.g.:

… in ~/.bash_profile:

export ANDROID_HOME=/usr/local/Cellar/android-sdk/24.1.2
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
3 Likes