Skip to content

Commit

Permalink
remove url scheme check for "itms-beta"
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Jiang committed Apr 23, 2020
1 parent 81542b4 commit 4a8032a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ios/app/app.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@
CODE_SIGN_ENTITLEMENTS = app.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = G82747A532;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -481,7 +481,7 @@
CODE_SIGN_ENTITLEMENTS = app.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = G82747A532;
ENABLE_BITCODE = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand Down
9 changes: 1 addition & 8 deletions ios/app/src/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ - (BOOL)application:(UIApplication *)app
if ([[url absoluteString] containsString:@"google/link/?dismiss=1&is_weak_match=1"]) {
return NO;
}

NSURL *customAppURL = [NSURL URLWithString:@"itms-beta://"];

NSURL *openUrl = url;
// if ([FIRUtilities appContainsRealServiceInfoPlist]) {
// // Process Firebase Dynamic Links
Expand All @@ -113,12 +112,6 @@ - (BOOL)application:(UIApplication *)app
// openUrl = firebaseUrl;
// }
// }


if ([[UIApplication sharedApplication] canOpenURL:customAppURL]) {
// Special link that includes the app's Apple ID
openUrl = [NSURL URLWithString:@"https://beta.itunes.apple.com/v1/app/1504560860"];
}

return [[JitsiMeet sharedInstance] application:app
openURL:openUrl
Expand Down

0 comments on commit 4a8032a

Please sign in to comment.