I'm using Android Studio v.1.0 My build file :
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
but when I try to make a release build, I get an error : Error:Execution failed for task ':app:proguardRelease'.
java.io.FileNotFoundException: F:....\app\proguard-rules.pro (File not found)
I think, that proguard-android.txt is a part of Android SDK, am I right ?
And why Android Studio can't find it ?
I also tried proguard-android.pro - the same result