Apache flex 应用程序意外停止:如何调试flash builder

Apache flex 应用程序意外停止:如何调试flash builder,apache-flex,Apache Flex,我需要使用移动调试模式,但每次运行调试模式时。flex在我的手机上安装了一个应用程序,然后我的手机显示“应用程序已停止”。Message。flex跳出调试模式,我甚至无法打开已安装的应用程序。应用程序甚至没有附加dataservice或任何UIobject(基本的除外)。有什么原因吗 我的代码非常简单 <?xml version="1.0" encoding="utf-8"?> <s:TabbedViewNavigatorApplication xmlns:fx="http:/

我需要使用移动调试模式,但每次运行调试模式时。flex在我的手机上安装了一个应用程序,然后我的手机显示“应用程序已停止”。Message。flex跳出调试模式,我甚至无法打开已安装的应用程序。应用程序甚至没有附加dataservice或任何UIobject(基本的除外)。有什么原因吗

我的代码非常简单

<?xml version="1.0" encoding="utf-8"?>
<s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                                  xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="160">
    <s:ViewNavigator label="Bidding" width="100%" height="100%" firstView="views.BiddingView"/>
    <s:ViewNavigator label="Reuse" width="100%" height="100%" firstView="views.ReuseView"/>
    <s:ViewNavigator label="Account" width="100%" height="100%" firstView="views.AccountView"/>
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
</s:TabbedViewNavigatorApplication>

就这样

视图的代码是这样的,三个视图都是这样的

<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" title="Account">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
</s:View>


我正在使用Flex 4.6,该应用程序是为Android开发的。

需要更多信息。您是在iOS、Android还是Playbook上进行测试?Flash Builder是否已在断点处停止执行?你的代码是什么?我还没有对应用程序做任何操作,甚至没有添加断点。实际上我可以找到应用程序,但是,即使没有调试模块,我也无法打开它。你是在iOS、Android或Playbook上测试的吗?视图的代码在哪里?另外,你使用的是哪个版本的Flex?我使用的是Android和Flex4.6