将Firebase连接到我的Android项目,这是我的build.gradle
文件代码:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "com.example.seyali_01.firebasegooglein"
minSdkVersion 23
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 {
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:26.0.0-alpha1'
testCompile 'junit:junit:4.12'
compile 'com.google.firebase:firebase-auth:10.2.6'
compile 'com.google.android.gms:play-services-auth:10.2.6'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
}
apply plugin: 'com.google.gms.google-services'
在我的activity_main.xml中,这是代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.seyali_01.firebasegooglein.MainActivity"
android:background="@drawable/batman">
<com.google.android.gms.common.SignInButton
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</com.google.android.gms.common.SignInButton>
</android.support.constraint.ConstraintLayout>
使用Firebase在我的项目中尝试使用google-sign-in
,但在添加上述代码后未显示默认的google-signIn
按钮,但未在xml文件中显示任何错误。请帮助我解决这个问题,因为我是这个平台的新手。
我只是想知道错误是因为ConstraintLayout
而来的,还是gradle文件中的错误可以帮助我。提前谢谢。
答案 0 :(得分:0)
似乎此错误是由于Android Studio中的错误,
试试这个: 重新启动Android-studio并单击菜单栏中的文件,然后选择invalidate caches / restart。
希望这对你有用。
答案 1 :(得分:0)
错误似乎是因为您尚未向该按钮添加所需的约束。 尝试添加约束。