|
27 | 27 | NSString *const kGoogleAppIDPlistKey = @"GOOGLE_APP_ID"; |
28 | 28 | // Dummy plist GOOGLE_APP_ID |
29 | 29 | NSString *const kDummyGoogleAppID = @"1:123:ios:123abc"; |
30 | | -// Github Repo URL String |
31 | | -NSString *const kGithubRepoURLString = @"https://github.com/firebase/firebase-ios-sdk/"; |
| 30 | +// GitHub Repo URL String |
| 31 | +NSString *const kGitHubRepoURLString = @"https://github.com/firebase/firebase-ios-sdk/"; |
32 | 32 | // Alert contents |
33 | 33 | NSString *const kInvalidPlistAlertTitle = @"GoogleService-Info.plist"; |
34 | 34 | NSString *const kInvalidPlistAlertMessage = @"This sample app needs to be updated with a valid " |
35 | 35 | @"GoogleService-Info.plist file in order to configure " |
36 | 36 | @"Firebase.\n\n" |
37 | 37 | @"Please update the app with a valid plist file, " |
38 | | - @"following the instructions in the Firebase Github " |
| 38 | + @"following the instructions in the Firebase GitHub " |
39 | 39 | @"repository at: %@"; |
40 | 40 |
|
41 | 41 | @implementation FIRSampleAppUtilities |
@@ -81,16 +81,16 @@ + (BOOL)containsRealServiceInfoPlistInBundle:(NSBundle *)bundle { |
81 | 81 |
|
82 | 82 | + (void)presentAlertForInvalidServiceInfoPlistFromViewController: |
83 | 83 | (UIViewController *)viewController { |
84 | | - NSString *message = [NSString stringWithFormat:kInvalidPlistAlertMessage, kGithubRepoURLString]; |
| 84 | + NSString *message = [NSString stringWithFormat:kInvalidPlistAlertMessage, kGitHubRepoURLString]; |
85 | 85 | UIAlertController *alertController = |
86 | 86 | [UIAlertController alertControllerWithTitle:kInvalidPlistAlertTitle |
87 | 87 | message:message |
88 | 88 | preferredStyle:UIAlertControllerStyleAlert]; |
89 | 89 | UIAlertAction *viewReadmeAction = [UIAlertAction |
90 | | - actionWithTitle:@"View Github" |
| 90 | + actionWithTitle:@"View GitHub" |
91 | 91 | style:UIAlertActionStyleDefault |
92 | 92 | handler:^(UIAlertAction *_Nonnull action) { |
93 | | - NSURL *githubURL = [NSURL URLWithString:kGithubRepoURLString]; |
| 93 | + NSURL *githubURL = [NSURL URLWithString:kGitHubRepoURLString]; |
94 | 94 | [FIRSampleAppUtilities navigateToURL:githubURL fromViewController:viewController]; |
95 | 95 | }]; |
96 | 96 | [alertController addAction:viewReadmeAction]; |
|
0 commit comments