从Play商店安装后,Cordova应用程序崩溃

时间:2020-09-23 09:04:25

标签: android cordova phonegap

我已经在我的设备上构建并运行了cordova应用,并且运行正常。但是,当我将apk(发行版)上传到Play商店并从Play商店安装时,由于某种原因,它无法正常工作。可能是什么问题。我该如何修复或调试它? 我也尝试在本地调试发行版,但没有任何问题。 这是config.xml文件:

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.test.testapp" version="1.0.3"
        xmlns="http://www.w3.org/ns/widgets"
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:cdv="http://cordova.apache.org/ns/1.0">
    <name>My APP</name>
    <description>
        My App Desc
    </description>
    <author email="dev@cordova.apache.org" href="http://cordova.io">
        My App
    </author>
    <content src="index.html" />
    <access origin="*" />
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <icon src="res/Icon.png" />
    <platform name="android">
        <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
            <application android:usesCleartextTraffic="true" />
        </edit-config>
        <allow-intent href="market:*" />
    </platform>
</widget>

此外,当我从Play商店下载apk时,它也会出现同样的问题,我认为这意味着我的应用在经过Google Play商店处理后出现了问题。 我正在从http://获取数据吗?可以吗?

我使用https://www.sslshopper.com/ssl-checker.html检查ssl证书,并且都给出了有效的结果。

0 个答案:

没有答案