Multiple substitutions specified in non-positional format

as3.0以上在gradle.properties使用android.enableAapt2=true,as就会提示将要过期了,请设置成
android.enableAapt2=false。当我设置成false啦,这时候编译出错误。

Multiple substitutions specified in non-positional format; did you mean to add the formatted="false"
就是当你的string.xml上含有要格式的字符串比如

%s时
这时候会提示上述错误,因为sdk采用了更加严格的aapt编译,正确的用法如下

如果字符串含有%,而不需要格式化可以有三种方法解决

加上formatted="false"
%s时
用两个%%
%%s时
用转义字符
%s时

https://cloud.tencent.com/developer/article/1329006

你可能感兴趣的:(Multiple substitutions specified in non-positional format)