| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // Copyright 2019 Google
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #import "Crashlytics/Shared/FIRCLSConstants.h"
- #import "FirebaseCore/Extension/FirebaseCoreInternal.h"
- #define STR_HELPER(x) #x
- #define STR(x) STR_HELPER(x)
- NSString* const FIRCLSDeveloperToken = @"77f0789d8e230eccdb4b99b82dccd78d47f9b604";
- // User Messages
- NSString* const FIRCLSMissingConsumerKeyMsg = @"consumer key is nil or zero length";
- NSString* const FIRCLSMissingConsumerSecretMsg = @"consumer secret is nil or zero length";
- // Exceptions
- NSString* const FIRCLSException = @"FIRCLSException";
- // Endpoints
- NSString* const FIRCLSSettingsEndpoint = @"https://firebase-settings.crashlytics.com";
- NSString* const FIRCLSConfigureEndpoint = @"https://update.crashlytics.com";
- NSString* const FIRCLSReportsEndpoint = @"https://reports.crashlytics.com";
- // Network requests
- NSString* const FIRCLSNetworkAccept = @"Accept";
- NSString* const FIRCLSNetworkAcceptCharset = @"Accept-Charset";
- NSString* const FIRCLSNetworkApplicationJson = @"application/json";
- NSString* const FIRCLSNetworkAcceptLanguage = @"Accept-Language";
- NSString* const FIRCLSNetworkContentLanguage = @"Content-Language";
- NSString* const FIRCLSNetworkCrashlyticsAPIClientDisplayVersion =
- @"X-Crashlytics-API-Client-Display-Version";
- NSString* const FIRCLSNetworkCrashlyticsAPIClientId = @"X-Crashlytics-API-Client-Id";
- NSString* const FIRCLSNetworkCrashlyticsDeveloperToken = @"X-Crashlytics-Developer-Token";
- NSString* const FIRCLSNetworkCrashlyticsGoogleAppId = @"X-Crashlytics-Google-App-Id";
- NSString* const FIRCLSNetworkCrashlyticsOrgId = @"X-Crashlytics-Org-Id";
- NSString* const FIRCLSNetworkUserAgent = @"User-Agent";
- NSString* const FIRCLSNetworkUTF8 = @"utf-8";
- NSString* FIRCLSSDKGeneratorName(void) {
- return [NSString stringWithFormat:@"%s/%s", STR(CLS_SDK_NAME), FIRCLSSDKVersion().UTF8String];
- }
- NSString* FIRCLSSDKVersion(void) {
- return FIRFirebaseVersion();
- }
|