赞
踩
- Running Gradle task 'assembleDebug'...
-
- FAILURE: Build failed with an exception.
-
- * What went wrong:
- A problem occurred configuring root project 'android'.
- > Could not resolve all dependencies for configuration ':classpath'.
- > Using insecure protocols with repositories, without explicit opt-in, is unsupported. Switch Maven repository 'maven3(http://maven.aliyun.com/nexus/content/groups/public)' to redirect to a secure protocol (like HTTPS) or allow insecure protocols. See https://docs.gradle.org/7.5/dsl/org.gradle.api.artifacts.repositories.UrlArtifactRepository.html#org.gradle.api.artifacts.repositories.UrlArtifactRepository:allowInsecureProtocol for more details.
-
- * 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 2s
- Running Gradle task 'assembleDebug'... 5.1s
- Exception: Gradle task assembleDebug failed with exit code 1
需要修改您的项目 :/{you Project}/android/gradle/build.gradle文件。如下图
- buildscript {
- ext.kotlin_version = '1.7.10'
- repositories {
- // google()
- // mavenCentral()
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven {
- allowInsecureProtocol true
- url 'http://maven.aliyun.com/nexus/content/groups/public' }
- maven {
- allowInsecureProtocol true
- url "http://download.flutter.io" }
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:7.3.0'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
- }
-
- allprojects {
- repositories {
- // google()
- // mavenCentral()
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven {
- allowInsecureProtocol true
- url 'http://maven.aliyun.com/nexus/content/groups/public' }
- maven {
- allowInsecureProtocol true
- url "http://download.flutter.io" }
- }
- }
-
- rootProject.buildDir = '../build'
- subprojects {
- project.buildDir = "${rootProject.buildDir}/${project.name}"
- }
- subprojects {
- project.evaluationDependsOn(':app')
- }
-
- tasks.register("clean", Delete) {
- delete rootProject.buildDir
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。