最终的 .apk 是否包含 referenced/used 以外的图像?

Does a final .apk include images not referenced/used?

我是否需要检查整个存储库并删除代码中未引用的 Drawables,或者 apk 是否自动不包含 Drawables 从未使用过?提前致谢。

默认情况下,没有。您的 apk 将包含您放入其中的所有内容。

要删除未使用的代码,请使用proguard

要删除未使用的资源,您可以将其包含在您的build.gradle。

android {
    ...

    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            ....
        }
    }
}

查看以下内容以删除未使用的图像。 http://keepsafe-engineering.tumblr.com/post/85828806276/remove-unused-android-resources https://github.com/instructure/android-ImageSweep and http://code.google.com/p/android-unused-resources/

希望对您有所帮助。