Ionic 电子邮件编辑器在 android 11 上崩溃
Ionic email composer crash on android 11
我已经在我的项目中实现了 cordova-plugin-email-composer
,并且在此之前运行良好,但是在升级到 cordova-android@10.0.0
之后,应用程序在触发 this.emailcomposer.open(email)
.
时崩溃了
只有 android 11 崩溃,android 8 工作正常。当我改回 cordova-android@9.0.0
时,android 8 和 11 都可以正常工作。
https://github.com/katzer/cordova-plugin-email-composer/issues/350
我发现有人遇到同样的问题。所以我想知道是错误还是我们需要在 config.xml
上写点东西
我找到了 ionic email composer 崩溃问题的解决方案。
在下面的 URL link 中是 android 11.
中更改的文档
https://developer.android.com/about/versions/11/behavior-changes-all#share-content-uris
需要在android
下的config.xml中添加以下代码
<config-file parent="/manifest" target="AndroidManifest.xml" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.FLAG_GRANT_READ_URI_PERMISSION" />
</config-file>
<config-file parent="/manifest/queries" target="AndroidManifest.xml" xmlns:android="http://schemas.android.com/apk/res/android">
<package android:name="com.google.android.gm" />
<package android:name="com.microsoft.office.outlook" />
<package android:name="com.yahoo.mobile.client.android.mail" />
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</config-file>
我已经在我的项目中实现了 cordova-plugin-email-composer
,并且在此之前运行良好,但是在升级到 cordova-android@10.0.0
之后,应用程序在触发 this.emailcomposer.open(email)
.
只有 android 11 崩溃,android 8 工作正常。当我改回 cordova-android@9.0.0
时,android 8 和 11 都可以正常工作。
https://github.com/katzer/cordova-plugin-email-composer/issues/350
我发现有人遇到同样的问题。所以我想知道是错误还是我们需要在 config.xml
我找到了 ionic email composer 崩溃问题的解决方案。 在下面的 URL link 中是 android 11.
中更改的文档https://developer.android.com/about/versions/11/behavior-changes-all#share-content-uris
需要在android
下的config.xml中添加以下代码<config-file parent="/manifest" target="AndroidManifest.xml" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.FLAG_GRANT_READ_URI_PERMISSION" />
</config-file>
<config-file parent="/manifest/queries" target="AndroidManifest.xml" xmlns:android="http://schemas.android.com/apk/res/android">
<package android:name="com.google.android.gm" />
<package android:name="com.microsoft.office.outlook" />
<package android:name="com.yahoo.mobile.client.android.mail" />
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</config-file>