user7568042
user7568042

Reputation: 244

Is it normal for gradle to load up build for an hour and still counting

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.

Stuck on gradle

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.

Debug Log

Upvotes: 0

Views: 138

Answers (1)

Egor
Egor

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

Related Questions