Gradle Syncに問題があります。
IntelliJとAndroid Studioを使用してFlutter/Dartアプリを構築しています。
2つの新しい依存関係を追加しましたが、Gradleに問題があります。 Android Studioではすべて正常に動作しますが(Gradle Syncはエラーや警告なしに終了します)、IntelliJでは機能しません。
* 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.
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.Android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "27.1.0"
}
}
}
}
Androidフォルダーのbuild.gradleにこれを追加することで修正されました。
allpojects-> repositoriesをbuildscript-> repositoriesと同じにする
それでも問題が解決しない場合は、プロジェクトとshared_preferencesの両方が同じGradleバージョンを使用しているかどうかを確認してください。そうでない場合、プロジェクトまたはshared_preferencesプロジェクトのいずれかでいくつかの変更を行う必要がある場合があります。
buildscript {
repositories {
jcenter()
maven {
url 'https://dl.google.com/dl/Android/maven2'
}
}
dependencies {
classpath 'com.Android.tools.build:gradle:3.1.2'
}
}