【问题标题】:A problem occurred evaluating project ':app'. > Supplied String module notation flutter评估项目 ':app' 时出现问题。 > 提供的字符串模块符号颤振
【发布时间】:2022-01-03 07:23:12
【问题描述】:

我在运行应用程序时遇到了一个大问题,我在 gradle 版本行中遇到了一些错误,我已将其更新为 build.gradle 和 gradle-wrapper.properties 中的最新版本,但没有任何改变仍然有同样的错误

app\build.gradle

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
    flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
    compileSdkVersion 31

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.example.trux1"
        minSdkVersion 23
        targetSdkVersion 31
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.debug
        }
    }
}

flutter {
    source '../..'
}
buildscript {
    repositories {
        google()
        jcenter()

        dependencies {
            classpath 'com.android.tools.build.gradle-7.2.0-alpha06'
            classpath "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
            classpath 'com.google.gms:google-services:4.3.8'
        }
    }
}

// classpath 'com.android.tools.build.gradle-7.2.0-alpha06'
//apply plugin: 'com.google.gms.google-services'

//implementation

gradle-wrapper.properties

 #Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip

这就是错误

FAILURE: Build failed with an exception.

* Where:
Build file '/home/mohamed/StudioProjects/trux1/android/app/build.gradle' line: 71

* What went wrong:
A problem occurred evaluating project ':app'.
> Supplied String module notation 'com.android.tools.build.gradle-7.2.0-alpha06' is invalid. Example notations: 'org.gradle:gradle-core:2.2', 'org.mockito:mockito-core:1.9.5:javadoc'.

* 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 851ms
Exception: Gradle task assembleDebug failed with exit code 1

【问题讨论】:

    标签: flutter android-studio build.gradle


    【解决方案1】:

    替换

    classpath 'com.android.tools.build.gradle-7.2.0-alpha06'
    

    到,

    classpath 'com.android.tools.build:gradle:7.2.0-alpha06'
    

    【讨论】:

    • 感谢您的关注),我已经更换了它,但我收到了另一个错误Launching lib/main.dart on sdk gphone x86 in debug mode... Running Gradle task 'assembleDebug'... FAILURE: Build failed with an exception. * Where: Build file '/home/mohamed/StudioProjects/trux1/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 artifacts for configuration ':app:classpath'. > Could not find com.android.tools.build:gradle-7.2.0-alpha06:.
    • Required by: project :app * 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 1s Exception: Gradle task assembleDebug failed with exit code 1 错误的其余部分 Line 25 apply plugin: 'kotlin-android' Line 71 classpath 'com.android.tools.build:gradle-7.2.0-alpha06' @Yashraj
    • 更新:类路径'com.android.tools.build:gradle:7.2.0-alpha06'
    猜你喜欢
    • 2021-11-22
    • 2020-08-11
    • 2021-02-16
    • 2021-06-26
    • 2020-03-24
    • 1970-01-01
    • 1970-01-01
    • 2021-04-09
    • 2023-02-13
    相关资源
    最近更新 更多