Why is it error when i gradle build the project in android studio using the imobile android?
2EXP 2025.02.27

Build file 'D:\Supermap\supermap-imobile-sample-11.2.0-android-en\SampleCode\SampleCode_AndroidStudio\3dar\build.gradle' line: 1

A problem occurred evaluating project ':3dar'.
> org/gradle/initialization/BuildCompletionListener

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
For more on this, please refer to https://docs.gradle.org/8.9/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.
BUILD FAILED in 22s

1 Answer

The error message is that there was an issue while evaluating the project in the build.gradle file. The specific problem is related to the org/gradle/initialization/BuildCompletionListener class, which might not be compatible with your current version of Gradle. Additionally, it's mentioning the use of deprecated features, making it incompatible with Gradle 9.0, which is expected to be stricter about backward compatibility.

Here's a step-by-step approach to resolve the issue:

1. Check Gradle Version

  • Your project might be using deprecated or incompatible Gradle features. Check the current Gradle version in the project:
    • Open gradle-wrapper.properties file in your project and make sure it points to a compatible version.
    • Gradle 8.x versions are generally more stable compared to 9.0 for older projects.

2. Update Gradle Dependencies

  • If you are using an older or deprecated dependency or plugin, consider updating it. In particular, check any third-party plugins that might be triggering deprecated features.
  • You might want to update your build.gradle file to make sure all plugins and dependencies are up to date.

3. Check for Deprecated Features

  • Gradle might be issuing warnings about deprecated features, which could potentially cause issues in the future:
    • Run Gradle with --warning-mode all to see all deprecation warnings:

      gradle build --warning-mode all

    • This will give you insight into what parts of your build script or dependencies are outdated.

4. Upgrade Your Dependencies

  • If the problem is related to Android Studio or specific libraries, make sure you’re using a compatible version of those libraries.
  • Check the build.gradle file for compatibility with Android Gradle Plugin (AGP) and Kotlin versions:

    classpath 'com.android.tools.build:gradle:7.x.x'

      classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.x"

  • Update these versions to the latest compatible ones if necessary.

6. Test the Project on Clean Environment

  • Sometimes, issues arise from corrupted project files. Try deleting the .gradle and build directories from the root of your project and rebuild:

    gradle clean

7. Revisit Your Code on Line 1

  • The error is occurring specifically at line 1 in your build.gradle file. Review that first line, as it may be improperly configured or incompatible with your Gradle version.
30EXP 2025.02.27

I have try all of the solution but it still error especially if I downgrade the gradle version it still error. Thank you angel

I guess the error occurs still because the version compatible. The versions of gradle, each dependencies, Java JDK, together with the version of iMobile for Android. Please check if all of them are compatible with each other. Thank you
...