Taking so much time for launching app on real time device in android studio

73 Views Asked by At

Actually the thing is that whenever I am going to execute my project from android studio its taking too much time means like 30 to 40 minute maybe more and sometime its immediately launch only when I sync my gradel with very minor changes. currently I have been using android studio 2.1 and I didn't do major changes in gradle despite this,android studio taking too much time to execute project. following is my gradle contains.

dependencies {compile fileTree(include: ['*.jar'], dir: 'libs') //This line is added compile 'com.google.android.gms:play-services-gcm:8.3.0' //Volley Library compile 'com.mcxiaoke.volley:library-aar:1.0.0' compile 'com.android.support:support-v4:23.+' compile 'com.google.android.gms:play-services-appindexing:8.3.0' testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.0.1' compile 'com.android.support:design:23.0.1'

}

0

There are 0 best solutions below