android gradle plugin 1.3.0 以上使用 public.xml 固定 id

android中可以使用public.xml 来固定自己需要的ID,比如在插件化开发,或者notification 的Icon中。


但 android gradle plugin 从1.3.0开始就直接忽略了public.xml ,现在我们需要通过gradle脚本来修正:


afterEvaluate {
    for (variant in android.applicationVariants) {
        def scope = variant.getVariantData().getScope()
        String mergeTaskName = scope.getMergeResourcesTask().name
        def mergeTask = tasks.getByName(mergeTaskName)

        mergeTask.doLast {
            copy {
                int i=0
                from(android.sourceSets.main.res.srcDirs) {
                    include 'values/public.xml'
                    rename 'public.xml', (i++ == 0? "public.xml": "public_${i}.xml")
                }

                into(mergeTask.outputDir)
            }
        }
    }
}


项目地址: https://github.com/ceabie/AndroidPublicXmlCompat



这招使是从另一个项目里学来的,并根据gradle plugin做了优化:

https://github.com/limpoxe/Android-Plugin-Framework


项目地址: https://github.com/ceabie/AndroidPublicXmlCompat

你可能感兴趣的:(android,gradle,android,固定ID,public.xml)