1. 程式人生 > >The option 'android.enableAapt2' is deprecated and should not be used anymore.

The option 'android.enableAapt2' is deprecated and should not be used anymore.

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>