すべてのgms / firebaseライブラリはまったく同じバージョンを使用する必要があります(バージョンを混在させるとランタイムクラッシュが発生する可能性があります)。見つかったバージョン16.1.1 16.0.1 16.0.0 15.0.1

セプティックアルゴノット

プロジェクトにFirebaseを実装しようとしていますが、実装 'com.google.firebase:firebase-core:16.0.1'の行に下線が引かれています。お願いします。

Mbuodile Obiosioに感謝しますが、機能しません。わかりません。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.harun.basicmathquiz"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.android.support:support-annotations:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.google.firebase:firebase-core:16.0.1'
    implementation 'com.google.firebase:firebase-database:16.0.1'

}

apply plugin: 'com.google.gms.google-services'

そして

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.google.gms:google-services:4.0.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven { url "https://maven.google.com" }
        jcenter()
    }
}

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

私のエラー:すべてのgms / firebaseライブラリは、まったく同じバージョン仕様を使用する必要があります(バージョンを混在させると、ランタイムがクラッシュする可能性があります)。バージョン16.1.1、16.0.1、16.0.0、15.0.1が見つかりました。例には、com.google.firebase:firebase-analytics-impl:16.1.1やcom.google.firebase:firebase-analytics:16.0.1が含まれます

Mbuodile Obiosio

バージョンを混在させているため、エラーが発生します。

    apply plugin: 'com.android.application'

    android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.harun.basicmathquiz"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
      }
    }

    dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:support-annotations:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.google.firebase:firebase-core:16.0.1'
    implementation 'com.google.firebase:firebase-database:16.0.1'    
 }

apply plugin: 'com.google.gms.google-services'

トップレベルのbuild.gradleファイルを次のように更新することを忘れないでください

classpath 'com.google.gms:google-services:4.0.1'

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

Related 関連記事

ホットタグ

アーカイブ