【发布时间】:2018-08-18 06:51:51
【问题描述】:
我需要访问 Firebase 用户界面,但我找不到合适的版本,但没有收到错误,即我将版本与支持库混合使用或错误支持我当前的 Firebase 版本
这是我的毕业代码
compileSdkVersion 26
defaultConfig {
applicationId "il.co.appschool.firebasechatapp"
minSdkVersion 18
targetSdkVersion 26
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:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-database:11.0.4'
compile 'com.android.support:design:26.1.0'
implementation 'com.google.firebase:firebase-core:11.0.4'
implementation 'com.google.firebase:firebase-auth:11.0.4'
implementation 'com.google.firebase:firebase-messaging:11.0.4'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
我的谷歌服务版本是 3.1.0
对于这个版本的 fest,你能给我什么建议?
【问题讨论】:
标签: android firebase android-studio gradle firebaseui