Change application group id

This commit is contained in:
Denis Morozov 2017-08-26 15:32:12 +03:00
parent acf4e965f4
commit 3ab16243da
2 changed files with 2 additions and 2 deletions

View file

@ -1448,7 +1448,7 @@ NSString *const kAppDelegateNetworkStatusDidChangeNotification = @"kAppDelegateN
sdkOptions.backgroundModeHandler = [[MXUIKitBackgroundModeHandler alloc] init];
// Use shared container to share data with app extensions
sdkOptions.applicationGroupIdentifier = @"group.org.matrix";
sdkOptions.applicationGroupIdentifier = @"group.im.vector";
// Disable long press on event in bubble cells
[MXKRoomBubbleTableViewCell disableLongPressGestureOnEvent:YES];

View file

@ -32,7 +32,7 @@
self = [super init];
if (self)
{
[MXSDKOptions sharedInstance].applicationGroupIdentifier = @"group.org.matrix";
[MXSDKOptions sharedInstance].applicationGroupIdentifier = @"group.im.vector";
}
return self;
}