AndroidPublicXmlCompat icon indicating copy to clipboard operation
AndroidPublicXmlCompat copied to clipboard

现在gradle plugin 8.1.1是不是不能用了

Open 2361788963 opened this issue 2 years ago • 1 comments

现在gradle plugin 8.1.1是不是不能用了,高版本gradle plugin还能运行不?

2361788963 avatar Dec 25 '23 07:12 2361788963

没测试过。我现在使用 androidResources.additionalParameters 参数做固定: android { androidResources { File publicTxtFile = project.rootProject.file('public.txt') if (publicTxtFile.exists()) { //aapt2添加--stable-ids参数应用 additionalParameters "--stable-ids", "${publicTxtFile}" } else { //aapt2添加--emit-ids参数生成 首次生成不了可以用 gradle 命令打包 additionalParameters "--emit-ids", "${publicTxtFile}" } } }

ceabie avatar Jan 09 '24 05:01 ceabie