AndroidStudio升级到3.1时候遇到了这个问题,提示Use 'android.enableAapt2=true' to remove this warning.然而gradle.properties=true/false都没解决。
最后仔细看以下错误信息,String types not allowed(at '@android:attr/windowEnterAnimation' xxx),
指出格式错误了。有时候错误是这样的 error: style attribute '@android:attr/windowEnterAnimation' not found.
这样类型的错误,修成这样子就行了
<item name="android:windowEnterAnimation">@anim/fade_in</item>