私はAndroidに非常に慣れておらず、Firebase AuthとFirebaseデータベースを試しているところにFirebaseを試しています。
私は認証機能を正常に完了することができ、以下は直後のアプリモジュールのgradleファイルの内容です。
apply plugin: 'com.Android.application'
Android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.cirvi.laxmimobileshopee"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.Android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.Android.support', module: 'support-annotations'
})
compile 'com.Android.support:appcompat-v7:24.2.1'
compile 'com.Android.support:design:24.2.1'
compile 'com.Android.support:support-v4:24.2.1'
compile 'com.Android.support:recyclerview-v7:24.2.1'
compile "com.google.firebase:firebase-auth:9.0.2"
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
次のステップでは、同じプロジェクトでfirebaseデータベースを使用し、依存関係を追加してGradleファイルを更新します
compile 'com.google.firebase:firebase-database:9.6.1'
同期を開始するとすぐに、次のエラーが発生します
Information:Gradle tasks [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies]
Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/Android/android-tools/com.google.gms.google-services/) or updating the version of com.google.Android.gms to 9.6.1.
Information:BUILD FAILED
Information:Total time: 2.86 secs
Information:1 error
Information:0 warnings
Information:See complete output in console
以下は私のプロジェクトgradleファイルのコードです。
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.Android.tools.build:gradle:2.2.0'
classpath 'com.google.gms:google-services:3.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
プロジェクトのgradleファイルでGoogleサービスのバージョンを更新しようとしましたが、他の問題が発生しました。 Android=を初めて使用していて、試してみたところ、立ち往生していて、現在これを解決する方法がわかりません。誰かが私を案内したり手伝ったりできますか?
これを試して
プロジェクトレベルに移動build.gradle
&次のようになっているかどうかを確認します。
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
両方に同じ依存関係を設定する
implementation "com.google.firebase:firebase-auth:9.6.1"
implementation 'com.google.firebase:firebase-database:9.6.1'
同じバージョンのfirebaseを使用する必要があります。 authのバージョン9.0.2とデータベースの9.6.1を使用しました。
また、Firebase SDKの最新バージョンを使用することをお勧めします
追加
com.google.firebase:firebase-auth:11.0.4
com.google.firebase:firebase-database:11.0.4
Add this dependency from your needs
implementation 'com.google.firebase:firebase-messaging:17.3.0'
implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.google.firebase:firebase-database:16.0.1'