I need help in fixing this problem with Gradle build in Android Studio.
I want to know what's wrong with it..?
Here is my System Config
I am using: Android studio 2.1.1 and gradle-2.14.1
My problem is that if I make just minor changes in project then it will take 5-10 min to build the projectagain.
I am also try these settings :
gradle.properties
org.gradle.daemon=true
org.gradle.parallel=true
Here is Gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.midmesolo.mindme"
vectorDrawables.useSupportLibrary = true
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
aaptOptions {
additionalParameters "--no-version-vectors"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.mcxiaoke.volley:library:1.0.17'
compile 'com.facebook.android:facebook-android-sdk:4.+'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'de.hdodenhof:circleimageview:2.1.0'
compile 'me.zhanghai.android.materialprogressbar:library:1.1.7'
}