proguard - 由于 proguard 规则,生成签名 APK 时出错

标签 proguard android-studio-3.3 android-r8

在我将 Android Studio 更新到 3.3-rc01 并启用 R8 代码压缩后,生成签名的 APK 出现错误。

它给出了以下 proguard 错误:

Error: ~/app/proguard-rules.pro, offset: 2613, line: 74, column: 7, Expected char '-' at ~/app/proguard-rules.pro:74:7
-dump class_files.txt

在 android studio 3.3-rc01 并且没有 R8 代码收缩之前,它工作得很好。

对此的任何解决方法,或者我现在必须禁用 proguard 规则。

以下是我的 proguard-rules.pro 文件
    # Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

# Retrofit does reflection on generic parameters and InnerClass is required to use Signature.
-keepattributes Signature, InnerClasses

# Retain service method parameters when optimizing.
-keepclassmembers,allowshrinking,allowobfuscation interface * {
    @retrofit2.http.* <methods>;
}

# Ignore annotation used for build tooling.
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement

# Ignore JSR 305 annotations for embedding nullability information.
-dontwarn javax.annotation.**

# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
-dontwarn kotlin.Unit

# Top-level functions that can only be used by Kotlin.
-dontwarn retrofit2.-KotlinExtensions


# A resource is loaded with a relative path so the package of this class must be preserved.
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase

# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
-dontwarn org.codehaus.mojo.animal_sniffer.*

# OkHttp platform used only on JVM and when Conscrypt dependency is available.
-dontwarn okhttp3.internal.platform.ConscryptPlatform


-dontwarn javax.xml.stream.**
-dontwarn rx.internal.util.unsafe.**


#Glide proguard rules
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.module.AppGlideModule
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {
  **[] $VALUES;
  public *;
}

-keep class android.support.v7.widget.LinearLayoutManager { *; }

-keep public class * extends android.support.v7.widget.RecyclerView$LayoutManager {
    public <init>(...);
}

##---------------Begin: proguard configuration common for all Android apps ----------
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontskipnonpubliclibraryclassmembers
-dontpreverify
-verbose
-dump class_files.txt
-printseeds seeds.txt
-printusage unused.txt

-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

-allowaccessmodification
-keepattributes *Annotation*
-renamesourcefileattribute SourceFile
-repackageclasses ''

-keep class com.qikcircle.qiketask.models.** { *; }

-keep class android.support.v4.** {*;}
-keep public class * extends android.app.Activity
-keep public class * extends android.support.v4.app.Fragment
-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.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService
-dontnote com.android.vending.licensing.ILicensingService

# Explicitly preserve all serialization members. The Serializable interface
# is only a marker interface, so it wouldn't save them.
-keepclassmembers class * implements java.io.Serializable {
    static final long serialVersionUID;
    private static final java.io.ObjectStreamField[] serialPersistentFields;
    private void writeObject(java.io.ObjectOutputStream);
    private void readObject(java.io.ObjectInputStream);
    java.lang.Object writeReplace();
    java.lang.Object readResolve();
}

# Preserve all native method names and the names of their classes.
-keepclasseswithmembernames class * {
    native <methods>;
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet);
}

-keepclasseswithmembernames class * {
    public <init>(android.content.Context, android.util.AttributeSet, int);
}

# Preserve static fields of inner classes of R classes that might be accessed
# through introspection.
-keepclassmembers class **.R$* {
  public static <fields>;
}

# Preserve the special static methods that are required in all enumeration classes.
-keepclassmembers enum * {
    public static **[] values();
    public static ** valueOf(java.lang.String);
}

-keep public class * {
    public protected *;
}

-keep class * implements android.os.Parcelable {
  public static final android.os.Parcelable$Creator *;
}
##---------------End: proguard configuration common for all Android apps ----------

##---------------Begin: proguard configuration for Gson  ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.

# For using GSON @Expose annotation
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
#-keep class com.google.gson.stream.** { *; }

# Application classes that will be serialized/deserialized over Gson
-keep class com.google.gson.examples.android.model.** { *; }

##---------------End: proguard configuration for Gson  ----------

#removing logs
-assumenosideeffects class android.util.Log {
    public static boolean isLoggable(java.lang.String, int);
    public static int v(...);
    public static int i(...);
    public static int w(...);
    public static int d(...);
    public static int e(...);
}

#for getting crash reports
-assumenosideeffects class android.util.Log {
    public static int v(...);
    public static int d(...);
}

#Crashlytics proguard rules
-keepattributes SourceFile,LineNumberTable

-keep public class * extends java.lang.Exception

-ignorewarnings
-keep class * {
    public private *;
}

最佳答案

我试过 dump directive Proguard (我之前没有使用过)并且一切正常。

[...]

## Strip Log.d
-assumenosideeffects class android.util.Log {
    public static *** d(...);
}

-dump foo.txt

[...]

我找到了我的 foo.txt./app/foo.txt
Printing classes to [./app/foo.txt]...

然后我启用 R8 传统模式 :
# For the bravests
android.enableR8=true
# For the crazyest. Must be enable also the previous setting
#android.enableR8.fullMode=true

我得到了你的错误。

如果没有这一行,我什至可以在 中编译我的 APK全模式没有任何(明显的)问题。

所以我确认 不支持此指令。 请记住,R8 仍处于测试阶段。如果您愿意,可以在我在评论中发布的链接上提交问题。

开issue here .

关于proguard - 由于 proguard 规则,生成签名 APK 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53539273/

相关文章:

java - proguard 和 jdom 错误编译 android APK

混淆后的Android类规范名称唯一性

android - 运行此 AVD 需要 Intel HAXM

安卓:Proguard NoSuchMethodError

android - 当我设置为仅编译播放服务广告时,为什么 Android Studio gradle 仍然在我的 apk 中包含用于谷歌播放服务分析的库?

java - Android Studio 找不到或加载 "Scratch"文件的主类

创建新项目后,android studio 3.3 在其预览窗口中不显示操作栏和状态栏

android - R8 缩小 : Type defined multiple times

android - proguard-android-optimize.txt 中的 "@Keep support annotation"规则在使用 AndroidX 时是否仍然适用?

android - 如何为android数据绑定(bind)点击监听器编写proguard规则?