iOS崩溃报告分析

时间:2015-06-09 20:22:22

标签: ios crash

由于网络问题我的应用程序无法连接到后端服务器以获取数据,Apple已经拒绝了我的应用程序3次。我已经从不同的位置测试了我的域名,更改了域名服务器甚至主机,同样的问题仍然只针对Apple测试人员

即使使用adhoc安装重现问题,也没有重现问题。

我从Apple获得了以下崩溃报告,但找不到根本原因。

请帮助

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:id="@+id/linearLayout1"
        android:orientation="horizontal"
        android:layout_above="@+id/description">

    </LinearLayout>
    <TextView
        android:id="@+id/description"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Description:"
        android:textStyle="bold"
        android:layout_alignParentBottom="true" />
    <TextView
        android:layout_toRightOf="@+id/description"
        android:id="@+id/descriptionText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" />
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

我已经修复了这个问题,感谢标记符号服务,我将文件[appname] .app.dSYM上传到了影视网站,并获得了已经翻译过的已经翻译的跟踪文件

奇怪的是,问题只发生在iPhone6s和iPad Air上!

另一种更简单的方法就是使用Xcode,你只需将crashlog文件拖放到Xcode&gt;管理器&gt;您的iPhone / ipad设备日志。 但请注意,崩溃文件扩展名必须为.crash

http://just2us.com/2010/10/reading-iphone-crashlog/

中所述