3

iOS アプリ内に iMessage 拡張機能があります。Crashlytics はクラッシュをキャプチャできますか?

FabricメインアプリからInfo.plistiMessage拡張機能に同じエントリを追加し、サブクラスInfo.plistに次を追加しようとしました( Todayウィジェットの統合に推奨されるように):MSMessagesAppViewController

- (instancetype _Nonnull)initWithNibName:(NSString * _Nullable)nibNameOrNil
                                  bundle:(NSBundle * _Nullable)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil
                           bundle:nibBundleOrNil];
    if (self)
    {
        // Start up Answers and Crashlytics
        [Fabric with:[NSArray<id> arrayWithObjects:
                      [Answers class],
                      [Crashlytics class],
                      nil]];
    }

    return self;
}

しかし、iMessage を起動して iMessage 拡張機能を選択すると、前のスクリーンショットでハングアップします。それは決して始まりません。

4

1 に答える 1