Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Gradle Issue - Flutter / Dart

I have a problem with my Gradle Sync.

I use IntelliJ and Android Studio to build a Flutter / Dart App.

I added 2 new dependencies and now i have an issue with Gradle. In Android Studio all works fine (The Gradle Sync finishes without failures or warnings), but in IntelliJ it is not working.

Gradle build file screenshot

* Error running Gradle: Exit code 1 from: C:\Users\stesc\Documents\Programming\timecoder-flutter\android\gradlew.bat app:properties: NDK is missing a "platforms" directory. If you are using NDK, verify the ndk.dir is set to a valid NDK directory.  It is currently set to C:\Users\stesc\AppData\Local\Android\Sdk\ndk-bundle. If you are not using NDK, unset the NDK variable from ANDROID_NDK_HOME or local.properties to remove this warning.


BUILD FAILED

Total time: 4.669 secs


FAILURE: Build failed with an exception.

* Where:

Build file 'C:\Users\stesc\Documents\Programming\timecoder-flutter\android\build.gradle' line: 25

* What went wrong: A problem occurred evaluating root project 'android'.
> A problem occurred configuring project ':app'.
   > Could not resolve all dependencies for configuration ':app:_debugApk'. Finished with error: Please review your Gradle project setup in the android/ folder.
      > A problem occurred configuring project ':shared_preferences'.
         > Could not resolve all dependencies for configuration ':shared_preferences:classpath'.
            > Could not find com.android.tools.build:gradle:3.0.1.
              Searched in the following locations:
                  https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
                  https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
              Required by:
                  project :shared_preferences

* Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

More gradle build screenshot

like image 624
Stefan Schaller Avatar asked Jan 29 '23 19:01

Stefan Schaller


2 Answers

1. Update your gradle version from project -> android -> build. For me :

dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
}

2. Use latest sdk tool version

3. Open terminal from Tools->Flutter and run these following commands

flutter upgrade
flutter doctor
like image 89
Akash Anaghan Avatar answered Jan 31 '23 18:01

Akash Anaghan


Make your allpojects->repositories same like buildscript->repositories

If the problem still persists check if your project and shared_preferences both uses the same gradle version. If not, then you may need to make few changes in either your project or in shared_preferences project.

like image 23
Arnold Parge Avatar answered Jan 31 '23 18:01

Arnold Parge