gpt4 book ai didi

android - 通过电子邮件发送 WhatsApp 聊天时,如何让我的 Android 应用程序出现在应用程序选择器中?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:32:24 24 4
gpt4 key购买 nike

我有兴趣让我的应用出现在我使用 WhatsApp 中的“电子邮件对话”功能时显示的应用列表中。

在使用“电子邮件对话”WhatsApp 功能记录我的电话时,我可以看到 Gmail 收到了一个 SEND_MULTIPLE Intent :

I/ActivityManager(  859): START u0 {act=android.intent.action.SEND_MULTIPLE typ=text/* flg=0xb080001 pkg=com.google.android.gm cmp=com.google.android.gm/.ComposeActivityGmail (has clip) (has extras)} from uid 10114 on display 0

所以我想我需要在我的应用程序 list 中为 SEND_MULTIPLE 操作添加一个 intent 过滤器。

目前我的 AndroidManifest.xml 是:

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


<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >


<activity
android:name=".MyActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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


<intent-filter>
<action android:name="android.intent.action.SENDTO" />

<data android:scheme="mailto" />

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

<intent-filter>
<action android:name="android.intent.action.VIEW" />

<data android:scheme="mailto" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />

<data android:mimeType="*/*" />

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

<intent-filter>
<action android:name="android.intent.action.SEND" />

<data android:mimeType="*/*" />

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

</activity>

</application>

</manifest>

但是,当我通过 Android Studio 在手机中运行我的应用程序时,它在尝试导出我的 WhatsApp 对话时没有显示。相反,当尝试分享我的图库图片时,它会出现在应用程序选择器中。

我在 AndroidManifest 中缺少什么阻止我的应用程序在通过电子邮件发送我的 WhatsApp 对话时显示?我是否需要向操作系统宣布其他事项,以使我的应用有资格出现在应用选择器中?

我已尝试安装 K-9 Mail应用程序。安装后,在 WhatsApp 中通过电子邮件发送聊天时,它不会出现在应用程序选择器中,但在 K-9 中设置帐户后,它会出现在选择器中。 K9 有没有可能向操作系统宣布它已准备好发送电子邮件?

谢谢!

最佳答案

不幸的是,即使您的 list 配置正确,您在发送电子邮件聊天时也无法在应用选择器中看到您的应用,因为您的应用需要被 WhatsApp 列入白名单。 WhatsApp 的应用程序选择器中只会显示所选的软件包名称。

例如,我们有一个包名称为 com.example.whatsappemailchat 的应用程序。 AndroidManifest.xml 是这样的:

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

<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.example.whatsappemailchat.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SENDTO"/>
<data android:scheme="mailto"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<data android:mimeType="*/*"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE"/>
<data android:mimeType="*/*"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="mailto"/>

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

</manifest>

这是build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.example.whatsappemailchat"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

一切都已正确配置,我们运行我们的应用程序,但如果我们选择更多 > 电子邮件聊天,我们的应用程序将不会出现。

现在把applicationId改成com.google.android.gm.test(Gmail的包名加上.test作为后缀在我们的 build.gradle 中避免与真正的 Gmail 冲突):

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.google.android.gm.test"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

现在运行我们的应用程序,打开 WhatsApp,选择一个聊天,选择 更多 > 电子邮件聊天,我们的应用程序将神奇地出现在应用程序选择器中,如您在此屏幕截图中所见:

enter image description here

我可以确认这些软件包名称已被 WhatsApp 列入白名单:

  • com.google.android.gm
  • com.fsck.k9
  • com.boxer.email
  • com.google.android.email

我认为唯一可行的解​​决方案是尝试联系 WhatsApp 并询问是否可以将您的包名称列入白名单。

关于android - 通过电子邮件发送 WhatsApp 聊天时,如何让我的 Android 应用程序出现在应用程序选择器中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33067543/

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