我需要使用shrinkMode =" strict"

时间:2017-11-07 15:15:25

标签: android shrinkresources

我需要使用shrinkMode(strict)

我在类别keep.xml中创建了一个文件res/raw/keep.xml

<?xml version="1.0" encoding="utf-8"?>
<resources                          
xmlns:tools="http://schemas.android.com/tools"            
tools:shrinkMode="strict" />

这不起作用。但我不知道接下来该做什么。

1 个答案:

答案 0 :(得分:0)

您应在shrinkResources true中设置 build.gradle(app)

创建res/raw/keep.xml

之类的文件
android {
    ...
    buildTypes {
        release {
            shrinkResources true
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'),
                'proguard-rules.pro'
        }
    }
}