as soon as a demo compiler is built and a demo console is run, the following occurs
Launching lib/main.dart on Android SDK built for x86 in debug mode...
Initializing gradle...
Resolving dependencies...
* Error running Gradle:
ProcessException: Process "/Users/rabbit/develop/android/flutter_app/android/gradlew" exited abnormally:
Project evaluation failed including an error in afterEvaluate {}. Run with --stacktrace for details of the afterEvaluate {} error.
FAILURE: Build failed with an exception.
* Where:
Build file "/Users/rabbit/develop/android/flutter_app/android/app/build.gradle" line: 25
* What went wrong:
A problem occurred evaluating project ":app".
> Could not resolve all files for configuration "classpath".
> Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2).
Searched in the following locations:
https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar
* 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
BUILD FAILED in 0s
Command: /Users/rabbit/develop/android/flutter_app/android/gradlew app:properties
Finished with error: Please review your Gradle project setup in the android/ folder.
I found it on the Internet and didn"t come across the right answer to solve it. I saw the prompt that I couldn"t find com.android.tools.lint:lint-gradle-api:26.1.2 but opened it according to the prompt address and couldn"t download it. Where should I put it if I could download it?
resolved:
1:build.gradle,jcenter()google()jcenter google
buildscript {
repositories {
//google()
//jcenter()
maven { url "https://maven.aliyun.com/repository/google" }
maven { url "https://maven.aliyun.com/repository/jcenter" }
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
}
dependencies {
classpath "com.android.tools.build:gradle:3.1.2"
}
}
allprojects {
repositories {
//google()
//jcenter()
maven { url "https://maven.aliyun.com/repository/google" }
maven { url "https://maven.aliyun.com/repository/jcenter" }
maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
}
}
:fluttersdk
Macintosh HD rabbit Flutter packages flutter_tools gradle
flutter.gradle jcenter
buildscript {
repositories {
//jcenter()
//maven {
// url "https://dl.google.com/dl/android/maven2"
//}
maven{
url "https://maven.aliyun.com/repository/jcenter"
}
maven{
url "http://maven.aliyun.com/nexus/content/groups/public"
}
}
dependencies {
classpath "com.android.tools.build:gradle:3.1.2"
}
}