PhotoPicker icon indicating copy to clipboard operation
PhotoPicker copied to clipboard

主项目将 Android Gradle 插件升级 3.0 后编译失败

Open baoti opened this issue 8 years ago • 0 comments

error: style attribute ‘@android:attr/windowEnterAnimation’ not found

Failed to execute aapt

styles.xml 文件,需要去掉 @android:windowEnterAnimation 和 前面的 @。 修改后如下:

<style name="__picker_mystyle" parent="android:Animation">
    <item name="android:windowEnterAnimation">@anim/dialog_enter</item>  //进入时的动画
    <item name="android:windowExitAnimation">@anim/dialog_exit</item>    //退出时的动画
</style>

baoti avatar Jan 26 '18 11:01 baoti