我的 firebase 聊天应用程序未出现在要发送的消息应用程序选择列表中
My firebase chat app is not coming in the messaging app list of choices to send
我为 android 平台制作了一个 firebase 聊天应用程序。我有另一个应用程序来加密文本并使用其他或第三方应用程序通过意图发送它。但是当我点击后一个应用程序中的发送按钮时,会出现一个应用程序列表来选择我要发送加密文本的应用程序,但在该列表中我的 firebase 聊天应用程序不是一个选择。任何人都可以帮我吗?
清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.firebase.udacity.friendlychat">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.google.firebase.udacity.friendlychat.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
为了将您的应用程序列在菜单中,您需要有一个 activity 带有 intent 过滤器以捕获操作 SEND。在您的清单中,您只有一个启动器 activity.
我为 android 平台制作了一个 firebase 聊天应用程序。我有另一个应用程序来加密文本并使用其他或第三方应用程序通过意图发送它。但是当我点击后一个应用程序中的发送按钮时,会出现一个应用程序列表来选择我要发送加密文本的应用程序,但在该列表中我的 firebase 聊天应用程序不是一个选择。任何人都可以帮我吗? 清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.firebase.udacity.friendlychat">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.google.firebase.udacity.friendlychat.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
为了将您的应用程序列在菜单中,您需要有一个 activity 带有 intent 过滤器以捕获操作 SEND。在您的清单中,您只有一个启动器 activity.