gpt4 book ai didi

android - 不会显示 Firebase 推送通知

转载 作者:行者123 更新时间:2023-11-29 02:39:40 25 4
gpt4 key购买 nike

我终于开始在 Android Studio 中尝试使用 Firebase 云消息服务。我尝试了本教程,并且我拥有与本教程中完全相同的类: enter link description here

  1. 我的第一个问题是,为什么 Android Studio 中的“Android Monitor”只向我显示一次设备 token ?每次我在 Firebase 中启动一个新项目并将其与我的 AppProjekt 连接并运行它时,当我顺利运行该项目时,Token 第一次显示给我。如果我再次运行它,我看不到这个 Token 的任何东西,什么都没有!

  2. 第二个问题是,为什么我没有收到来自 Firebase 的推送通知?

这是我的 Android list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.felixkoepping.pushtest2">

<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name="android.support.multidex.MultiDexApplication"
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=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

<service
android:name=".MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>

<service
android:name=".MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
</application>

这是应用部分中的 gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
defaultConfig {
multiDexEnabled true
applicationId "com.example.felixkoepping.pushtest2"
minSdkVersion 19
targetSdkVersion 25
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(include: ['*.jar'], dir: 'libs')
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:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'

compile 'com.google.firebase:firebase-messaging:9.2.0'
compile 'com.google.firebase:firebase-core:9.2.0'
compile 'com.android.support:multidex:1.0.1'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

这里是项目部分的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.3.2'
classpath 'com.google.gms:google-services:3.0.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
}

Android Monitor 中唯一的“红色消息”是:

E/FA: Failed to send event to AppMeasurementService: 
android.os.DeadObjectException:
com.google.android.gms.measurement.internal.zzm$zza$zza.zza(Unknown Source)

如果我从 Firebase 的控制台向带有 token 的设备发送通知,我的模拟器中将不会显示任何内容...

我希望你们中的一些人能帮助我解决这个问题。我试了很多,但没有任何效果......

谢谢大家 :-)

最佳答案

感谢您的来信。我今天会帮助您解决问题。

如果您仍然不知道发生了什么,请通过评论功能联系我,谢谢!

关于android - 不会显示 Firebase 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45073946/

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