AndroidにてFirebaseを導入しているところです。
Firebaseの設定を以下の手順で行い(※1)、実行したところエラーが表示されてしまいました。
Firebase設定
Cause: tried to access method com.google.common.io.Files.fileTreeTraverser()Lcom/google/common/collect/TreeTraverser; from class com.android.build.gradle.internal.transforms.InstantRunVerifierTransform
build.gladle(project)に,※1に従って設定した途端エラーが発生することがわかりました。
しかし、以前に他のプロジェクトで同様の設定をした際は上手くいったので、
原因が不明のため教えていただきたいです。
※1
「ステップ 4: アプリに Firebase SDK を追加する」で、Firebase Authorizationを追加しました。
<参考>
・build.gradle(project)
// 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.2.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files classpath 'com.google.gms:google-services:4.3.2' } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
build.gradle(app)
apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.example.masaki.lineapp" minSdkVersion 15 targetSdkVersion 28 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(include: ['*.jar'], dir: 'libs') implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.android.support:support-v4:28.0.0' 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' implementation 'com.android.support:recyclerview-v7:28.0.0' implementation 'com.google.firebase:firebase-auth:16.0.4' } apply plugin: 'com.google.gms.google-services'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。