2016-06-11 60 views
0

我开发了一个使用科尔多瓦的混合应用程序。我上传到谷歌播放和应用程序商店。用户报告他们正在收到消息“不幸的是,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用户没有得到这个消息大跌以下插件。只有android用户报告了这个问题。

这里是我的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被禁用。我试图打开谷歌地图。我从Google地图获得了一条 消息以启用GPS。在我启用GPS的时候,我 得到了不幸的是XXX已经停止

回答

1

正如this question提到的,这是一个错误[email protected]引起的消息,指出作为plugin repoissue #85,并通过补丁发布[email protected]解决。更新插件并重建应用程序应该可以解决问题:

$ cordova plugin rm cordova.plugins.diagnostic && 
    cordova plugin add [email protected] && 
    cordova build android --release 
+0

感谢您的快速响应。我没有注意到这个问题。事实上,我并不知道哪个插件会导致此错误。发生此问题时我发现了两种不同的情况。我也提出了我的问题。我正在使用诊断插件来检查GPS权限状态。所以这可能是第二种情况的问题。但是第二种情况的原因是什么?任何想法 ? –

+0

这两种情况都是由上述错误引起的,并且会通过更新插件来解决。 – DaveAlden

+0

好的,谢谢。我刚刚更新了插件。让我尝试一些随机测试用例。感谢您的回应并指出了这一点 –