We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbaf19b commit 838ec31Copy full SHA for 838ec31
Firebase/Core/FIRApp.m
@@ -161,8 +161,8 @@ + (void)configureWithName:(NSString *)name options:(FIROptions *)options {
161
if (!((character >= 'a' && character <= 'z') || (character >= 'A' && character <= 'Z') ||
162
(character >= '0' && character <= '9') || character == '_' || character == '-')) {
163
[NSException raise:kFirebaseCoreErrorDomain
164
- format:@"App name should only contain Letters, "
165
- @"Numbers, Underscores, and Dashes."];
+ format:@"App name can only contain alphanumeric (A-Z,a-z,0-9), "
+ @"hyphen (-), and underscore (_) characters"];
166
}
167
168
0 commit comments