summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/Pods/FirebaseCrashlytics/Crashlytics/Shared/FIRCLSConstants.m
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/platforms/ios/Pods/FirebaseCrashlytics/Crashlytics/Shared/FIRCLSConstants.m')
-rw-r--r--StoneIsland/platforms/ios/Pods/FirebaseCrashlytics/Crashlytics/Shared/FIRCLSConstants.m49
1 files changed, 49 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/Pods/FirebaseCrashlytics/Crashlytics/Shared/FIRCLSConstants.m b/StoneIsland/platforms/ios/Pods/FirebaseCrashlytics/Crashlytics/Shared/FIRCLSConstants.m
new file mode 100644
index 00000000..e9f58760
--- /dev/null
+++ b/StoneIsland/platforms/ios/Pods/FirebaseCrashlytics/Crashlytics/Shared/FIRCLSConstants.m
@@ -0,0 +1,49 @@
+// 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"
+
+#define STR_HELPER(x) #x
+#define STR(x) STR_HELPER(x)
+
+NSString* const FIRCLSDeveloperToken = @"77f0789d8e230eccdb4b99b82dccd78d47f9b604";
+
+NSString* const FIRCLSVersion = @STR(DISPLAY_VERSION);
+
+// 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";