gpt4 book ai didi

android - Cordova 应用程序意外关闭

转载 作者:行者123 更新时间:2023-11-30 01:16:42 25 4
gpt4 key购买 nike

我使用 cordova 开发了一个混合应用程序。我把它上传到谷歌播放和应用程序商店。用户报告说他们收到一条消息“不幸的是,xxx 已关闭”(xxx 代表应用程序名称)。测试时我无法重现该问题。奇怪的是,用户在不使用我的应用程序时会收到此消息。我的应用程序中安装了以下插件

cordova-plugin-camera 2.2.1-dev "Camera"
cordova-plugin-compat 1.0.0 "Compat"
cordova-plugin-device 1.1.1 "Device"
cordova-plugin-file 4.1.0 "File"
cordova-plugin-file-transfer 1.5.0 "File Transfer"
cordova-plugin-geolocation 2.1.0 "Geolocation"
cordova-plugin-inappbrowser 1.4.0 "InAppBrowser"
cordova-plugin-network-information 1.2.0 "Network Information"
cordova-plugin-splashscreen 3.2.2 "Splashscreen"
cordova-plugin-statusbar 2.1.4-dev "StatusBar"
cordova-plugin-whitelist 1.2.2 "Whitelist"
cordova-plugin-x-toast 2.3.2 "Toast"
cordova-sqlite-storage 0.7.14 "Cordova sqlite storage plugin"
cordova.plugins.diagnostic 3.0.2 "Diagnostic"
ionic-plugin-keyboard 2.2.0 "Keyboard"
phonegap-plugin-barcodescanner 5.0.0 "BarcodeScanner"
phonegap-plugin-push 1.6.4 "PushPlugin"

iOS 用户不会收到此崩溃消息。只有安卓用户报告了这个问题。

这是我的 Androidmanifest.xml 文件

<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" package="com.xxx.yy" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:screenOrientation="portrait" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
<intent-filter android:label="@string/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="cordova.plugins.Diagnostic$LocationProviderChangedReceiver">
<intent-filter>
<action android:name="android.location.PROVIDERS_CHANGED" />
</intent-filter>
</receiver>
<activity android:clearTaskOnLaunch="true" android:configChanges="orientation|keyboardHidden|screenSize" android:exported="false" android:name="com.google.zxing.client.android.CaptureActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:windowSoftInputMode="stateAlwaysHidden">
<intent-filter>
<action android:name="com.google.zxing.client.android.SCAN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:label="Share" android:name="com.google.zxing.client.android.encode.EncodeActivity">
<intent-filter>
<action android:name="com.phonegap.plugins.barcodescanner.ENCODE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:label="Share" android:name="com.google.zxing.client.android.HelpActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:exported="true" android:name="com.adobe.phonegap.push.PushHandlerActivity" />
<receiver android:name="com.adobe.phonegap.push.BackgroundActionButtonHandler" />
<receiver android:exported="true" android:name="com.google.android.gms.gcm.GcmReceiver" android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="${applicationId}" />
</intent-filter>
</receiver>
<service android:exported="false" android:name="com.adobe.phonegap.push.GCMIntentService">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>
<service android:exported="false" android:name="com.adobe.phonegap.push.PushInstanceIDListenerService">
<intent-filter>
<action android:name="com.google.android.gms.iid.InstanceID" />
</intent-filter>
</service>
<service android:exported="false" android:name="com.adobe.phonegap.push.RegistrationIntentService" />
</application>
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="${applicationId}.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" />
</manifest>

我的代码中有两个函数,它们会自动调用。两者都用于将数据同步到服务器。

$interval(function() {
var isOnline = $cordovaNetwork.isOnline();
if (isOnline) {
$scope.syncData();
}
}, 900000)

$rootScope.$on('$cordovaNetwork:online', function(event, networkState) {
if ($scope.isLoggedIn) {
var onlineState = networkState;
console.log('Online State', onlineState);
$scope.syncData();
}

});

这个函数会在后台调用吗?应用程序关闭后此功能会持续存在吗?在调试过程中我找不到任何异常。谁能帮帮我?

更新

我发现了两种情况:

  1. 由于网络原因,我正在将网络状态更改为飞行模式问题。突然我收到消息,不幸的是 xxx 已经停止了
  2. 我的 GPS 被禁用了。我试图打开谷歌地图。我有一个来自谷歌地图的消息以启用 GPS。在我启用 GPS 时,我收到消息,不幸的是 xxx 已停止

最佳答案

this question 中所述,这是由 cordova.plugins.diagnostic@3.0.2 中的错误引起的,记为 issue #85plugin repo并通过补丁版本 cordova.plugins.diagnostic@3.0.4 解决。更新插件并重建您的应用应该可以解决问题:

$ cordova plugin rm cordova.plugins.diagnostic && 
cordova plugin add cordova.plugins.diagnostic@3.0.4 &&
cordova build android --release

关于android - Cordova 应用程序意外关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37765694/

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