Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio - Invalid App-Engine SDK Path

I am trying to run my first android application in Android studio. Application created successfully with new project vizard but cant run that as getting this error--

Invalid App-Engine SDK Path

Please help

like image 999
Pramod Avatar asked Mar 25 '14 10:03

Pramod


1 Answers

All answers about disabling the plugin are incorrect.

You need to execute ./gradlew appengineDownloadSdk in the root of your project. Alternatively you can execute the task via the gradle sidebar in Android Studio.

This task will create the folders given the current versions in your build.gradle file. You have to run this when you update versions in your dependency list.

like image 66
Jeroen Avatar answered Oct 23 '22 16:10

Jeroen