web-dev-qa-db-ja.com

Flutterのタスク ':app:preDebugBuild'。の実行に失敗しました

Androidの依存関係「com.Android.support:support-media-compat」には、コンパイル(26.1.0)とランタイム(27.1.1)のクラスパスの異なるバージョンがあります。 DependencyResolutionを使用して手動で同じバージョンを設定する必要があります

Flutterアプリにプラグインのリストを追加しました

dependencies:
  flutter:
    sdk: flutter
  connectivity:
  rxdart:
  validate: ^1.7.0
  image_picker: ^0.4.10
  shared_preferences: "^0.4.2"
  firebase_auth: ^0.6.2+1
  google_sign_in:

Dart&Flutterバージョン:Dart 2.1.0-dev.3.1.flutter-760a9690c2

これは私のAndroid app-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 GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

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

Android {
    compileSdkVersion 27

    lintOptions {
        disable 'InvalidPackage'
    }

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.Android.com/studio/build/application-id.html).
        applicationId "com.example.standardappstructure"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    }

    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 '../..'
}

dependencies {
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.Android.support.test:runner:1.0.2'
    androidTestImplementation 'com.Android.support.test.espresso:espresso-core:3.0.2'
}
apply plugin: 'com.google.gms.google-services'

配布Gradleバージョン:

distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.Zip

プロジェクトレベル:Gradle

buildscript {
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.Android.tools.build:gradle:3.2.0'
        classpath 'com.google.gms:google-services:4.0.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Gradleクラスパスをに変更している場合

 classpath 'com.Android.tools.build:gradle:3.2.1'

その私を見せて

Androidの依存関係「Android.Arch.lifecycle:runtime」には、コンパイル(1.0.0)とランタイム(1.1.0)のクラスパスの異なるバージョンがあります。 DependencyResolutionを使用して手動で同じバージョンを設定する必要があります

4
Harsh Bhavsar

私の場合、build.gradleにimplementation("com.Android.support:support-v4:27.1.1")を追加しました。

2
A.N.T

このエラーは、Android> build.gradleの以下のコード変更で解決できます

あなたのプロジェクトがkotlinで設定されている場合

   ext.kotlin_version = '1.2.71'

     replace with new version

   ext.kotlin_version = '1.3.0'

そして

dependencies {classpath 'com.Android.tools.build:gradle:3.2.1'}
                    replace with new version
dependencies {classpath 'com.Android.tools.build:gradle:3.3.0'}

あなたの例外が

問題点:タスク ':app:preDebugBuild'の実行に失敗しました。 Android依存関係 'androidx.exifinterface:exifinterface'には、コンパイル(1.0.0-rc01)とランタイム(1.0.0)のクラスパスのバージョンが異なります。同じバージョンをDependencyResolutionで手動で設定する必要があります

2
Hardik Kumbhani
cloud_firestore: ^0.8.2+3
firebase_auth: ^0.6.5
image_picker: 0.4.0

これは私のために働く

1
Brinda Rathod