问题描述
所以我第一次运行 ProGuard 时遇到了一个奇怪的错误:
So I am running ProGuard for the first time and I am getting a weird error:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:proguardRelease'.
> java.io.IOException: Can't read [C:\Users\Some\workspace\MyApp\app\bin\classes] (No such file or directory)
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
这是我的毕业证书:
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
minSdkVersion 16
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:19.0.+'
compile 'com.google.android.gms:play-services:4.3.23'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.viewpagerindicator:library:2.4.1@aar'
compile group:'com.android.support', name:'appcompat-v7', version:'18.0.+'
compile 'com.squareup.picasso:picasso:2.3+'
compile 'com.github.castorflex.smoothprogressbar:library:0.4.0'
}
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
我的 proguard-rules.txt:
my proguard-rules.txt:
-injars bin/classes
-injars libs
-outjars bin/classes-processed.jar
-libraryjars /usr/local/java/android-sdk/platforms/android-9/android.jar
-dontpreverify
-repackageclasses ''
-allowaccessmodification
-optimizations !code/simplification/arithmetic
-keepattributes *Annotation*
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.view.View {
public <init>(android.content.Context);
public <init>(android.content.Context, android.util.AttributeSet);
public <init>(android.content.Context, android.util.AttributeSet, int);
public void set*(...);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers class * extends android.content.Context {
public void *(android.view.View);
public void *(android.view.MenuItem);
}
-keepclassmembers class * implements android.os.Parcelable {
static ** CREATOR;
}
-keepclassmembers class **.R$* {
public static <fields>;
}
-keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>;
}
推荐答案
Android Gradle 插件已经为你指定了所有的输入和输出,所以你必须不要指定 -injars
、-outjars
或 -libraryjars
.
The Android Gradle plugin already specifies all input and output for you, so you must not specify -injars
, -outjars
, or -libraryjars
.
此外,Android SDK 中的文件 proguard-android.txt
为您指定了所有通用的 Android 设置,因此您不应再次指定它们.
Moreover, the file proguard-android.txt
in the Android SDK specifies all generic Android settings for you, so you shouldn't specify them again.
基本上,您的文件 proguard-rules.txt
可以为空,但任何特定于应用程序的设置除外,以确保任何反射继续工作.
Essentially, your file proguard-rules.txt
can be empty, except for any application-specific settings to make sure any reflection continues to work.
这篇关于Android Studio - ProGuard "java.io.IOException ...bin\classes (No such file or directory)";的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!