gpt4 book ai didi

android - FirebaseInstanceId : Token retrieval failed: SERVICE_NOT_AVAILABLE

转载 作者:行者123 更新时间:2023-11-29 23:15:45 24 4
gpt4 key购买 nike

我正在制作一个可以在单击按钮时写入 firebase 数据库的应用程序。该应用程序可在模拟器上运行,但无法在我的物理设备上运行。该应用程序上周运行良好,但今天开始出错。这是主要的 Activity 代码:

public class MainActivity extends AppCompatActivity {
private Firebase fled1;
Button on;
Button off;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

on= findViewById(R.id.on);
off= findViewById(R.id.off);

on.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {

DatabaseReference fled1 = FirebaseDatabase.getInstance().getReferenceFromUrl("https://testproject-tb.firebaseio.com/");
DatabaseReference fled1Child = fled1.child("Button1");
fled1Child.setValue("1");
}
});

off.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
DatabaseReference fled1 = FirebaseDatabase.getInstance().getReferenceFromUrl("https://testproject-tb.firebaseio.com/");
DatabaseReference fled1Child = fled1.child("Button1");
fled1Child.setValue("0");
}
});
}

这是我的 list 文件,我已经添加了所有需要的权限:

  <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lalitahuja.iotbutton">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.example.lalitahuja.iotbutton.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

这是构建 Gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.lalitahuja.iotbutton"
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(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
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.google.firebase:firebase-core:16.0.8'
implementation 'com.google.firebase:firebase-database:16.1.0'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.7'
implementation 'com.google.firebase:firebase-auth:16.2.0'
implementation 'com.firebase:firebase-client-android:2.5.2'
}
apply plugin: 'com.google.gms.google-services'

我得到的错误:

E/FirebaseInstanceId: token 检索失败:SERVICE_NOT_AVAILABLE

编辑:我尝试了互联网上现有的解决方案,但没有一个有效。

最佳答案

由于我最近遇到了这个问题,让我列出它出现的原因以及我如何解决它。

我已经将一个应用程序(称为 app1)添加到项目中。现在,在清理应用程序时,我不想删除这个应用程序,所以我在同一个项目中添加了另一个具有不同包的应用程序(我们称之为 newAPP。)

问题发生是因为我将旧的 google-services.json 文件(用于 app1)复制到新的 android 应用程序。那是个错误。

在 firebase 控制台中添加 newAPP 并在 newAPP 代码库中下载 google-services.json 文件后,我仍然不断收到此错误。

我收到此错误,因为构建文件(由工作室自动生成)仍然具有旧的应用程序 ID 和客户端 ID 等。

所以要修复它,我必须执行以下操作:

  1. 清理项目(在“构建”选项卡下)
  2. 重建项目(在“构建”选项卡下)
  3. 重新创建模拟器(使用 AVD)

确保将“app\build\generated\res\google-services\debug\values\values.xml”(由 studio build 生成)中的应用程序 ID 与您在 firebase 上的应用程序 ID 相对应安慰。祝你好运!

关于android - FirebaseInstanceId : Token retrieval failed: SERVICE_NOT_AVAILABLE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55416915/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com