Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0

后端 未结 14 737
暖寄归人
暖寄归人 2020-11-28 07:33

I\'ve got a gradle FAILURE:

...\"Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.\"

Case descrip

14条回答
  •  清酒与你
    2020-11-28 07:50

    The following solution helped me as I was also getting the same warning. In your project level gradle file, try to change the gradle version in classpath

    classpath "com.android.tools.build:gradle:3.6.0" to
    classpath "com.android.tools.build:gradle:4.0.1"
    

提交回复
热议问题