Android studio

时间:2015-10-30 13:13:12

标签: android android-studio proguard android-build android-proguard

我一直在寻找Proguard教程或解释性配置文件,我找不到好的,关于这个&的页面非常少。初学者没有简单的解释/教程。

请引导我阅读一个教程,其中展示了如何在Android Studio中使用proguard。

还告诉我你是怎么用的? &安培;你的配置文件。

谢谢。

1 个答案:

答案 0 :(得分:1)

有关proguard的完整用法说明:this link

Android和Java之间没有显着差异。您可以使用链接中的所有文档/示例。为简单起见,您只需要做两件事:

  1. build.gradle

    buildTypes {
    release {
        proguardFile getDefaultProguardFile('proguard-android-optimize.txt')
    }
    }...
    
  2. proguard-android-optimize.txt放在目录

    #duplicate the contents of this file and remove the include of this
     -keep public class * extends android.app.Service
    ...