How to remove unused resources from libraries?

前端 未结 2 1551
天涯浪人
天涯浪人 2021-02-09 14:11

At first I know Remove all unused resources from an android project, but that is only for projects.

I want to remove unused images from a li

相关标签:
2条回答
  • 2021-02-09 14:36

    Probbably all you need to know about that is in this very good article from Cyril Mottier : http://cyrilmottier.com/2014/08/26/putting-your-apks-on-diet/

    Read the part about Lint ("Use Lint extensively"), as it's the tool that allow you to remove unused resources.

    Hope it helps...

    0 讨论(0)
  • 2021-02-09 14:39

    I almost missed it to write that there is now a nice solution:

    android {
        buildTypes {
            release {
                minifyEnabled true
                shrinkResources true
            }
        }
    }
    

    This was annouced on Google+ by Tor Norbye for the build tools version 0.14.0

    0 讨论(0)
提交回复
热议问题