这个非常小的 Cordova+AngularJS 应用程序在运行 Android 4.2.2 的 Galaxy S4 上运行时会退出(以“哦,嘿,我崩溃了,我要离开这里了!”的方式)。它在我测试过的所有其他设备上运行良好。例如,在运行 Android 4.1.2 的 Galaxy Note II 上没有问题。
www 目录的东西在浏览器中也可以正常工作,包括 S4/Android 4.2.2 设备上的浏览器。
所以这个错误似乎只发生在这段代码是:
- 作为 Cordova 应用程序运行
- 在运行 Android 4.2.2 的 Galaxy S4 上
复制行为的步骤
- 克隆仓库
- 使用 Cordova 创建 Android 可执行文件。安装了
cordova
命令行工具和 Android SDK:cordova platform add android
cordova build
- 获取生成的 APK 并将其安装在运行 Android 4.2.2 的 Galaxy S4 上。如果您没有,您可以在http://developer.samsung.com/remotetestlab上免费测试一个。
- 启动应用程序。
- 触摸应用程序主屏幕上的文本。
- 等待几秒钟,应用程序将退出。
在我测试过的所有其他东西上,它都会加载颜色列表内容,这是预期的行为。
综上所述,我的问题是:我该如何解决这个问题,以免它崩溃?或者我该如何调试呢?
相关代码
这些文件都在 repo 中,但如果你不想点击,这里你去:
索引.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Galaxy S4 + Android 4.2.2 + Cordova Crash</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
</head>
<body>
<div id="ng-app" data-ng-app="main">
<!-- Begin Templates -->
<script type="text/ng-template" id="main">
<a ng-click="showList()">On Galaxy S4, touch here, wait a few seconds, and the app will crash.</a>
</script>
<script type="text/ng-template" id="list">
<progress data-ng-show="loading"></progress>
<ol data-ng-hide="loading">
<li data-ng-repeat="color in colors">
{{color.name}}
</li>
</ol>
</script>
<!-- End Templates -->
<div data-ng-view=""></div>
</div>
<script src="js/angular.js"></script>
<script src="js/angular-mobile.js"></script>
<script src="js/modules/main.js"></script>
<script src="js/modules/list.js"></script>
</body>
</html>
main.js
(function () {
'use strict';
angular.module('main', ['ngMobile','list'])
.config(['$routeProvider', function ($routeProvider) {
$routeProvider
.when('/', {templateUrl: 'main', controller: 'mainController'})
.otherwise({redirectTo: '/'});
}]).
controller('mainController', ['$scope', '$location', function ($scope, $location) {
$scope.showList = function () {
$location.path('/list');
};
}]);
}());
列表.js
(function () {
'use strict';
angular.module('list', [])
.config(['$routeProvider', function ($routeProvider) {
$routeProvider
.when('/list', {templateUrl: 'list', controller: 'listController'});
}])
.controller(
'listController',
['$scope', '$timeout', function ($scope, $timeout) {
$scope.loading = true;
var callback = function () {
$scope.loading = false;
$scope.colors = [
{name: 'Almost Blue'},
{name: 'Kind Of Blue'},
{name: 'Totally Not Blue'}
];
};
// Using $timeout to sort of fake an XHR just to rule out XHR as a cause
$timeout(callback, 500);
}]
);
}());
日志
这显示在 Android 日志中,至少在使用http://developer.samsung.com/remotetestlab时:
ERROR|10-19 03:39:49.448|6938|6938||CallbackProxy|UPDATE_URL
ASSERT|10-19 03:39:49.493|6938|6953||libc|Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 6953 (WebViewCoreThre)
补充说明
我用 Cordova 3.1.0 试过了。我还尝试使用从cordova-android repo 编译的cordova-3.2.0-dev.jar在提交28c41294bba746c75beae0ab26a42c8412cc665a (截至2013 年10 月20 日,即今天的最新提交给master)。行为没有变化 - 应用程序仍然意外退出。