When we run the android app then gradle build Running taking to 3 to five 5 munutes every time. build.gradle(module app) is
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.sk.followkids"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
dependencies {
compile files('libs/Parse-1.10.2.jar')
compile files('libs/PPNS-1.10.2.jar')
compile files('libs/ParseFacebookUtilsV4-1.10.2.jar')
compile project(':facebook')
apply plugin: 'com.google.gms.google-services'
compile files('libs/ParseCrashReporting-1.10.2.jar')
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.google.android.gms:play-services:8.1.0'
compile 'com.google.android.gms:play-services-identity:8.1.0'
compile 'com.google.android.gms:play-services-plus:8.1.0'
compile 'com.google.android.gms:play-services-gcm:8.1.0'
}
Thanks