Reputation: 244
I cannot open Android Studio, so changing gradle preference is not an option. I'm on standstill on gradle at the start up... for over an hour.
Any help would be great and deleting .gradle folder doesn't help either.
UPDATE (TOOK 15 minutes to do a gradlew debug and 45 mins from SDK to update new SDK platforms and tools)
Still no success, however I am still working on it. I provided screenshots to help you see where I am.
Upvotes: 0
Views: 138
Reputation: 40218
To understand what's going on, shut down Android Studio and try to build your project from the command line. Just do
./gradlew assembleDebug -i
or if you're on Windows
gradlew.bat assembleDebug -i
The -i
modifier turns on the INFO log level, and you'll see quite a bit of output, which will be helpful in identifying the source of the problem.
Upvotes: 1