Android Studio 评估项目“:app”时出现问题,>提供的字符串模块符号flutter

dkqlctbz  于 2023-05-07  发布在  Android
关注(0)|答案(1)|浏览(154)

我有一个大问题,当我运行的应用程序,我得到了一些错误的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
nnsrf1az

nnsrf1az1#

替换

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

classpath 'com.android.tools.build:gradle:7.2.2'

相关问题