How to automatically generate proguard-android.txt?

后端 未结 4 1712
轮回少年
轮回少年 2021-01-13 11:54

Reading all the wonderful things the new ProGuard Improvements for Android do, I switched to to the new scheme by uncommenting the following line in a newly created

4条回答
  •  北恋
    北恋 (楼主)
    2021-01-13 12:28

    Your declaration is:

    proguard.config=${sdk.dir}\tools\proguard\proguard-android.txt;proguard-project.txt
    

    The Correct declaration is (: instead of;):

    proguard.config=${sdk.dir}\tools\proguard\proguard-android.txt:proguard-project.txt
    

提交回复
热议问题