推送通知 - Firebase 控制消息 (FCM) - 无法运行应用程序(未找到默认活动)
Posted
技术标签:
【中文标题】推送通知 - Firebase 控制消息 (FCM) - 无法运行应用程序(未找到默认活动)【英文标题】:Push notification - Firebase Control Messaging (FCM) - could not run the app (Default Activity not found) 【发布时间】:2017-12-20 14:55:49 【问题描述】:我尝试将 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'
添加到应用 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'
并同步项目,我收到了构建错误 -
未找到默认活动
screenshot
如果从 gradle 中删除 firebase 依赖项,一切正常,应用程序运行正常。 当然,我已经更新了所有内容(SDK、gradle 版本等)
我正在开发即时应用程序,因此项目处于调制状态(应用程序、即时应用程序、基础、功能等)。
有人知道为什么会这样吗?
【问题讨论】:
你可以点击这个链接并按照提及codelabs.developers.google.com/codelabs/android-instant-apps/#0 你能查一下***.com/questions/47909531/… 【参考方案1】:Firebase 云消息传递尚不支持-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) - 无法运行应用程序(未找到默认活动)的主要内容,如果未能解决你的问题,请参考以下文章
FCM(Firebase 云消息传递):Firebase 推送通知在 Firefox 中显示,但在 Chrome 中不显示
如何在 Xamarin.iOS 中使用 FCM(Firebase 云消息传递)发送 iOS 推送通知
使用 PhoneGap 和 Firebase 云消息传递 (FCM) 的简单推送通知 Android 应用程序
FCM 检测 IOS 上的应用程序卸载(firebase 云消息推送通知)