属性“scaleType”已使用不兼容的格式定义

时间:2017-09-08 06:23:46

标签: android gradle

尝试在Android Studio中添加 gradle 时,

属性“ scaleType ”已使用不兼容的格式定义

enter image description here

1 个答案:

答案 0 :(得分:0)

我在我的项目中使用了 android-image-cropper 库,产生了上述错误。 我通过更新

解决了这个问题
compile 'com.theartofdev.edmodo:android-image-cropper:1.0.+'

 compile 'com.theartofdev.edmodo:android-image-cropper:2.5.+'

并删除了

app:scaleType="fitCenter"

<com.theartofdev.edmodo.cropper.CropImageView
        android:id="@+id/cropImageView"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />