我想将OTP功能添加到我的android应用中。我已将我的应用程序与Firebase连接。我的代码未向上述手机号码发送任何消息。
该应用已连接到Firebase。如果我从助手中单击“将Firebase身份验证添加到您的应用程序”,则会添加一个依赖项“ com.google.firebase:firebase-auth:16.1.0:15.0.0”,这会导致gradle错误。
因此,我已经按照文档中所述手动添加了依赖项。但是我没有在助手中收到绿色信号,并且该应用程序也无法正常工作。我已经在控制台中添加了SHA-1键值。
我的Gradle文件:
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.ishwarya.coe"
minSdkVersion 21
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.3'
implementation 'com.google.firebase:firebase-core:16.0.6'
implementation 'com.google.firebase:firebase-auth:16.1.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'
}
我的构建gradle(app) buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
//classpath 'com.google.gms:google-services:4.0.1'
classpath 'com.google.gms:google-services:4.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
运行该应用程序时,出现以下问题
[DeviceKeyStore]无法加载密钥:找不到设备密钥文件。
该应用程序不会崩溃,但也无法获得输出。
请帮助。预先感谢!