推送通知 - Firebase控制消息传递(FCM) - 无法运行应用程序(未找到默认活动)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了推送通知 - Firebase控制消息传递(FCM) - 无法运行应用程序(未找到默认活动)相关的知识,希望对你有一定的参考价值。
我尝试将FCM添加到我的应用程序以发送推送通知。但我有一个问题。
我根据Google tutorial做了一切
添加到项目build.gradle:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0-alpha05'
classpath 'com.google.gms:google-services:3.1.1'
}
}
添加到app build.gradle
dependencies {
...
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
}
apply plugin: 'com.google.gms.google-services'
但加入后
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
并同步项目,我收到了构建错误 -
找不到默认活动
如果从gradle中删除firebase依赖项,一切正常,应用程序正常运行。当然,我已经更新了所有内容(SDK,gradle版本等)
我正在开发即时应用程序,因此调制项目(app,instantapp,base,feature等)。
有人知道为什么会这样吗?
答案
Firebase Cloud Messaging尚不支持 - reference document
对于他们的情况,未找到默认活动是因为'app'配置启动选项设置为默认活动 - 它应该设置为URL否则,默认活动选项需要在'app'模块的清单中
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
以上是关于推送通知 - Firebase控制消息传递(FCM) - 无法运行应用程序(未找到默认活动)的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Xamarin.iOS 中使用 FCM(Firebase 云消息传递)发送 iOS 推送通知
使用 PhoneGap 和 Firebase 云消息传递 (FCM) 的简单推送通知 Android 应用程序
推送通知 - Firebase 控制消息 (FCM) - 无法运行应用程序(未找到默认活动)