iOS アプリ内に iMessage 拡張機能があります。Crashlytics はクラッシュをキャプチャできますか?
Fabric
メインアプリからInfo.plist
iMessage拡張機能に同じエントリを追加し、サブクラス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 拡張機能を選択すると、前のスクリーンショットでハングアップします。それは決して始まりません。