Pebble 应用程序崩溃
Pebble App Crashed
有人知道我的 Pebble 应用程序发生了什么事吗?
var UI = require('ui');
var Vector2 = require('vector2');
var wind = new UI.Window({ fullscreen: true });
var width = 144;
var height = 168;
var splashscreen = new UI.Image({
position: new Vector2(0, 0),
size: new Vector2(width, height),
image: 'images/splash.png'
});
wind.add(splashscreen);
wind.show();
我不知道为什么,但我收到了 "app crashed" 消息。
谢谢
我试过你的代码,没有发现任何问题。可能是第一次上传时加载的图片损坏了。这也可能是测试手表的问题,它加载了很多物品并导致崩溃。
无论哪种方式,您似乎都能够通过在新项目中重新创建应用来解决问题。我希望我们有错误消息,以便能够诊断问题是本地问题还是可能影响其他人,并要求进行调整以防止将来发生这种情况。
有人知道我的 Pebble 应用程序发生了什么事吗?
var UI = require('ui');
var Vector2 = require('vector2');
var wind = new UI.Window({ fullscreen: true });
var width = 144;
var height = 168;
var splashscreen = new UI.Image({
position: new Vector2(0, 0),
size: new Vector2(width, height),
image: 'images/splash.png'
});
wind.add(splashscreen);
wind.show();
我不知道为什么,但我收到了 "app crashed" 消息。
谢谢
我试过你的代码,没有发现任何问题。可能是第一次上传时加载的图片损坏了。这也可能是测试手表的问题,它加载了很多物品并导致崩溃。
无论哪种方式,您似乎都能够通过在新项目中重新创建应用来解决问题。我希望我们有错误消息,以便能够诊断问题是本地问题还是可能影响其他人,并要求进行调整以防止将来发生这种情况。