Proyectos de Subversion Iphone Microlearning

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
 * Copyright 2019 Google
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
 
17
#import "FirebaseInstallations/Source/Library/FIRInstallationsLogger.h"
18
 
19
FIRLoggerService kFIRLoggerInstallations = @"[Firebase/Installations]";
20
 
21
// FIRInstallationsAPIService.m
22
NSString *const kFIRInstallationsMessageCodeSendAPIRequest = @"I-FIS001001";
23
NSString *const kFIRInstallationsMessageCodeAPIRequestNetworkError = @"I-FIS001002";
24
NSString *const kFIRInstallationsMessageCodeAPIRequestResponse = @"I-FIS001003";
25
NSString *const kFIRInstallationsMessageCodeUnexpectedAPIRequestResponse = @"I-FIS001004";
26
NSString *const kFIRInstallationsMessageCodeParsingAPIResponse = @"I-FIS001005";
27
NSString *const kFIRInstallationsMessageCodeAPIResponseParsingInstallationFailed = @"I-FIS001006";
28
NSString *const kFIRInstallationsMessageCodeAPIResponseParsingInstallationSucceed = @"I-FIS001007";
29
NSString *const kFIRInstallationsMessageCodeAPIResponseParsingAuthTokenFailed = @"I-FIS001008";
30
NSString *const kFIRInstallationsMessageCodeAPIResponseParsingAuthTokenSucceed = @"I-FIS001009";
31
 
32
// FIRInstallationsIDController.m
33
NSString *const kFIRInstallationsMessageCodeNewGetInstallationOperationCreated = @"I-FIS002000";
34
NSString *const kFIRInstallationsMessageCodeNewGetAuthTokenOperationCreated = @"I-FIS002001";
35
NSString *const kFIRInstallationsMessageCodeNewDeleteInstallationOperationCreated = @"I-FIS002002";
36
NSString *const kFIRInstallationsMessageCodeInvalidFirebaseConfiguration = @"I-FIS002003";
37
NSString *const kFIRInstallationsMessageCodeCorruptedStoredInstallation = @"I-FIS002004";
38
 
39
// FIRInstallationsStoredItem.m
40
NSString *const kFIRInstallationsMessageCodeInstallationCoderVersionMismatch = @"I-FIS003000";
41
 
42
// FIRInstallationsStoredAuthToken.m
43
NSString *const kFIRInstallationsMessageCodeAuthTokenCoderVersionMismatch = @"I-FIS004000";
44
 
45
// FIRInstallationsStoredIIDCheckin.m
46
NSString *const kFIRInstallationsMessageCodeIIDCheckinCoderVersionMismatch = @"I-FIS007000";
47
NSString *const kFIRInstallationsMessageCodeIIDCheckinFailedToDecode = @"I-FIS007001";
48
 
49
// FIRInstallations.m
50
NSString *const kFIRInstallationsMessageCodeInvalidFirebaseAppOptions = @"I-FIS008000";