Ionic 错误android:在控制台GooglePlay中导出- Android 12

7nbnzgx9  于 2023-01-10  发布在  Ionic
关注(0)|答案(1)|浏览(163)

我有这个问题,当我尝试发送archive .aab在控制台Google Play。我看了很多视频,但我不能解决这个问题。
我在爱奥尼亚和 cordova 做过我的项目。
erro in console googleplay
在AndroidManifest中,我设置了android:在和中导出,但之后,在MergedManifest中显示错误,我不知道我需要做什么,因为在我的AndroidManifest中不存在。

Error: android:exported needs to be explicitly specified for <receiver>. Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.

enter image description here
enter image description here

t40tm48m

t40tm48m1#

尝试在config.xml中添加此内容

<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application/receiver">
            <receiver android:exported="true" />
        </edit-config>

相关问题