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

后端 未结 14 639
暖寄归人
暖寄归人 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"
    
    0 讨论(0)
  • 2020-11-28 07:52

    Solution for the issue: deprecated gradle features were used in this build making it incompatible with gradle 6.0. android studio This provided solution worked for me.

    First change the classpath in dependencies of build.gradle of your project From: classpath 'com.android.tools.build:gradle:3.3.1' To: classpath 'com.android.tools.build:gradle:3.6.1'

    Then make changes in the gradle-wrapper.properties file this file exists in the Project's gradle>wrapper folder From: distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip To: distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

    Then Sync your gradle.

    0 讨论(0)
  • 2020-11-28 07:53

    If you're using react-native then please try the below commands first before running your project:

    1. npm install --save-dev jetifier
    2. npx jetify

    Now run your project again. Hope this will work.

    0 讨论(0)
  • 2020-11-28 07:56

    It work for me in this issue in a project of react-native:

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

    244 actionable tasks: 2 executed, 242 up-to-date D8: Cannot fit requested classes in a single dex file (# fields: 67296 > 65536) com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: The number of method references in a .dex file cannot exceed 64K. Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html ....

    I Did this:

    • Uninstall the app from my device:

    • The number of method references in a .dex file cannot exceed 64k API 17

    0 讨论(0)
  • 2020-11-28 07:57

    On a SpringBoot project using IntelliJ and Gradle, I got the warning "Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0" when running my integration test. What solved the problem was: - Going to: File > Settings > Build, Execution, Deployment - Selecting for "Build and run using": Intellij IDEA (instead of "Gradle") - Same for "Run tests using" That did not explain why Gradle is displaying the warning, but that let me perform the test and progress in my work.

    0 讨论(0)
  • 2020-11-28 07:58

    Important - Answer work only for REACT-NATIVE VS CODE Terminal

    In VisualStudio code, you have to run like below then that warning will be omitted.

    react-native run-android warning-mode=all

    If you run below then you will get the error in terminal When running react-native run-android --warning-mode all I get error: unknown option --warning-mode'

    0 讨论(0)
提交回复
热议问题