Reputation: 5
Everytime I create a new project, gradle build takes too long to finish for about 20 to 25 minutes. It is usually on "Gradle: Resolve dependencies ':app_debugAndroidTestxxx'" but when running my program it doesn't take that long only when creating a new project.
Upvotes: 0
Views: 446
Reputation: 411
If you have Internet connection, try to create a new Android Studio project in offline mode. Because some dependencies might be take time to install from internet. So in offline mode, it pick downloaded dependencies from cache.
Upvotes: 1