ios-mobile-application

Clone or download

Modified Files

Name
A CoMap-19.xcodeproj/project.pbxproj +1841 −0 Go to diff View file
A CoMap-19.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 −0 Go to diff View file
A CoMap-19.xcodeproj/xcshareddata/xcschemes/CoMap-19 Release.xcscheme +78 −0 Go to diff View file
A CoMap-19.xcodeproj/xcshareddata/xcschemes/CoMap-19 Staging.xcscheme +85 −0 Go to diff View file
A CoMap-19.xcworkspace/contents.xcworkspacedata +10 −0 Go to diff View file
A CoMap-19.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 −0 Go to diff View file
A CoMap-19/APIClient/APIClient.swift +828 −0 Go to diff View file
A CoMap-19/APIClient/URLSessionDelegate.swift +16 −0 Go to diff View file
A CoMap-19/AppDelegate.swift +379 −0 Go to diff View file
A CoMap-19/ApprovalRequestViewController/PendingApprovalViewController.swift +189 −0 Go to diff View file
A CoMap-19/ApprovalRequestViewController/PendingApprovalViewController.xib +74 −0 Go to diff View file
A CoMap-19/ApprovalRequestViewController/PendingRequestsResponse.swift +74 −0 Go to diff View file
A CoMap-19/ApprovalRequestViewController/StatusApprovalRequestManager.swift +103 −0 Go to diff View file
A CoMap-19/ApprovalRequestViewController/TableViewCell/PendingRequestTableViewCell.swift +170 −0 Go to diff View file
A CoMap-19/ApprovalRequestViewController/TableViewCell/PendingRequestTableViewCell.xib +138 −0 Go to diff View file
A CoMap-19/Authentication/Login/LoginViewController.swift +275 −0 Go to diff View file
A CoMap-19/Authentication/Login/LoginViewController.xib +128 −0 Go to diff View file
A CoMap-19/Authentication/OtpVerification/OtpVerificationViewController.swift +432 −0 Go to diff View file
A CoMap-19/Authentication/OtpVerification/OtpVerificationViewController.xib +125 −0 Go to diff View file
A CoMap-19/Authentication/Terms/WhyLoginNeededViewController.swift +102 −0 Go to diff View file
A CoMap-19/Authentication/Terms/WhyLoginNeededViewController.xib +101 −0 Go to diff View file
A CoMap-19/Authentication/TnC/TncViewController.swift +151 −0 Go to diff View file
A CoMap-19/Authentication/TnC/TncViewController.xib +93 −0 Go to diff View file
A CoMap-19/CoMap-19.entitlements +10 −0 Go to diff View file
A CoMap-19/Common/AWSAuthentication.swift +54 −0 Go to diff View file
A CoMap-19/Common/AccessibilityLabel.swift +441 −0 Go to diff View file
A CoMap-19/Common/Alert.swift +139 −0 Go to diff View file
A CoMap-19/Common/AnalyticsManager.swift +60 −0 Go to diff View file
A CoMap-19/Common/Animations/ViewControllerBottomToTopDismiss.swift +43 −0 Go to diff View file
A CoMap-19/Common/Animations/ViewControllerBottomToTopPresentation.swift +48 −0 Go to diff View file
A CoMap-19/Common/Animations/ViewControllerFadeInDismiss.swift +36 −0 Go to diff View file
A CoMap-19/Common/Animations/ViewControllerFadeInPresentation.swift +42 −0 Go to diff View file
A CoMap-19/Common/AppConfig.swift +36 −0 Go to diff View file
A CoMap-19/Common/Constants.swift +219 −0 Go to diff View file
A CoMap-19/Common/CoreBluetoothManager/BLECentralManager.swift +340 −0 Go to diff View file
A CoMap-19/Common/CoreBluetoothManager/BLEPeripheralManager.swift +137 −0 Go to diff View file
A CoMap-19/Common/CoreBluetoothManager/CoreBluetoothManager.swift +136 −0 Go to diff View file
A CoMap-19/Common/CustomProgressView/MenuIconView.swift +57 −0 Go to diff View file
A CoMap-19/Common/CustomProgressView/MenuIconView.xib +63 −0 Go to diff View file
A CoMap-19/Common/DAOManager/DAOManager.swift +325 −0 Go to diff View file
A CoMap-19/Common/DashedBorderView.swift +95 −0 Go to diff View file
A CoMap-19/Common/Date.swift +89 −0 Go to diff View file
A CoMap-19/Common/Extension/DataExtension.swift +18 −0 Go to diff View file
A CoMap-19/Common/Extension/NSNotificationExtension.swift +19 −0 Go to diff View file
A CoMap-19/Common/Extension/NavigationBarExtension.swift +17 −0 Go to diff View file
A CoMap-19/Common/Extension/UIApplication+Extension.swift +26 −0 Go to diff View file
A CoMap-19/Common/Extension/UIButtonExtension.swift +53 −0 Go to diff View file
A CoMap-19/Common/Extension/UIDeviceExtension.swift +53 −0 Go to diff View file
A CoMap-19/Common/Extension/WKWebViewExtension.swift +34 −0 Go to diff View file
A CoMap-19/Common/FloatingLabelTextField.swift +387 −0 Go to diff View file
A CoMap-19/Common/JWT.swift +104 −0 Go to diff View file
A CoMap-19/Common/KeychainHelper.swift +140 −0 Go to diff View file
A CoMap-19/Common/Language.swift +76 −0 Go to diff View file
A CoMap-19/Common/Localization.swift +669 −0 Go to diff View file
A CoMap-19/Common/Localize.swift +72 −0 Go to diff View file
A CoMap-19/Common/LocationServiceManager/LocationService.swift +86 −0 Go to diff View file
A CoMap-19/Common/Permission.swift +344 −0 Go to diff View file
A CoMap-19/Common/RemoteConfig/RemoteConfigDefaults.plist +14 −0 Go to diff View file
A CoMap-19/Common/RemoteConfig/RemoteConfigManager.swift +109 −0 Go to diff View file
A CoMap-19/Common/RoundCorners.swift +28 −0 Go to diff View file
A CoMap-19/Common/SSLPinning.swift +87 −0 Go to diff View file
A CoMap-19/Common/SpeechService.swift +35 −0 Go to diff View file
A CoMap-19/Common/String.swift +70 −0 Go to diff View file
A CoMap-19/Common/Toast.swift +1109 −0 Go to diff View file
A CoMap-19/Common/ToolTp/ToolTip.swift +173 −0 Go to diff View file
A CoMap-19/Common/TriangleView.swift +45 −0 Go to diff View file
A CoMap-19/Common/UITableViewExtension.swift +32 −0 Go to diff View file
A CoMap-19/Common/Utilities/FileParser.swift +274 −0 Go to diff View file
A CoMap-19/ConnectionLost/ConnectionLostViewController.swift +150 −0 Go to diff View file
A CoMap-19/ConnectionLost/ConnectionLostViewController.xib +129 −0 Go to diff View file
A CoMap-19/Converter/ConvertingLogic1/ConvertingLogic.swift +232 −0 Go to diff View file
A CoMap-19/DeleteAccountViewController/DeleteAccountViewController.swift +269 −0 Go to diff View file
A CoMap-19/DeleteAccountViewController/DeleteAccountViewController.xib +64 −0 Go to diff View file
A CoMap-19/DeleteAccountViewController/views/ConfirmNumberHeader.swift +133 −0 Go to diff View file
A CoMap-19/DeleteAccountViewController/views/ConfirmNumberHeader.xib +73 −0 Go to diff View file
A CoMap-19/DeleteAccountViewController/views/DeleteAccountWebViewTableViewCell.swift +53 −0 Go to diff View file
A CoMap-19/DeleteAccountViewController/views/DeleteAccountWebViewTableViewCell.xib +39 −0 Go to diff View file
A CoMap-19/HomeScreenViewController/HomeScreenProtocols.swift +14 −0 Go to diff View file
A CoMap-19/HomeScreenViewController/HomeScreenViewController.swift +917 −0 Go to diff View file
A CoMap-19/Info.plist +115 −0 Go to diff View file
A CoMap-19/LanguageSelection/Base.lproj/LanguageSelection.storyboard +162 −0 Go to diff View file
A CoMap-19/LanguageSelection/LanguageSelectionVC/LanguageSelectionTableViewCell.swift +20 −0 Go to diff View file
A CoMap-19/LanguageSelection/LanguageSelectionVC/LanguageSelectionViewController.swift +137 −0 Go to diff View file
A CoMap-19/MenuController/ContainerController.swift +105 −0 Go to diff View file
A CoMap-19/MenuController/MenuController.swift +345 −0 Go to diff View file
A CoMap-19/MenuController/Views/MenuTableViewCell.swift +64 −0 Go to diff View file
A CoMap-19/MenuController/Views/MenuTableViewCell.xib +98 −0 Go to diff View file
A CoMap-19/MenuController/Views/ProfileTableViewCell.swift +49 −0 Go to diff View file
A CoMap-19/MenuController/Views/ProfileTableViewCell.xib +65 −0 Go to diff View file
A CoMap-19/MenuController/Views/TermsTableViewCell.swift +27 −0 Go to diff View file
A CoMap-19/MenuController/Views/TermsTableViewCell.xib +41 −0 Go to diff View file
A CoMap-19/Onboarding/Base.lproj/Onboarding.storyboard +217 −0 Go to diff View file
A CoMap-19/Onboarding/OnboardingVC/Base.lproj/OnboardingTableSectionHeaderTableViewCell.xib +38 −0 Go to diff View file
A CoMap-19/Onboarding/OnboardingVC/Base.lproj/OnboardingTableViewCell.xib +59 −0 Go to diff View file
A CoMap-19/Onboarding/OnboardingVC/OnboardingCollectionViewCell.swift +94 −0 Go to diff View file
A CoMap-19/Onboarding/OnboardingVC/OnboardingTableSectionHeaderTableViewCell.swift +24 −0 Go to diff View file
A CoMap-19/Onboarding/OnboardingVC/OnboardingTableViewCell.swift +23 −0 Go to diff View file
A CoMap-19/Onboarding/OnboardingVC/OnboardingViewController.swift +476 −0 Go to diff View file
A CoMap-19/Onboarding/hi.lproj/Onboarding.strings +9 −0 Go to diff View file
A CoMap-19/Permission/Entities/Datapoint.swift +39 −0 Go to diff View file
A CoMap-19/Permission/PermissionScreenViewController.swift +220 −0 Go to diff View file
A CoMap-19/Permission/TableViewCells/PermissionScreenEncryptionTableViewCell.swift +39 −0 Go to diff View file
A CoMap-19/Permission/TableViewCells/PermissionScreenEncryptionTableViewCell.xib +82 −0 Go to diff View file
A CoMap-19/Permission/TableViewCells/PermissionScreenPermissionTableViewCell.swift +53 −0 Go to diff View file
A CoMap-19/Permission/TableViewCells/PermissionScreenPermissionTableViewCell.xib +65 −0 Go to diff View file
A CoMap-19/Permission/TableViewCells/PermissionScreenTnCCellTableViewCell.swift +155 −0 Go to diff View file
A CoMap-19/Permission/TableViewCells/PermissionScreenTnCCellTableViewCell.xib +50 −0 Go to diff View file
A CoMap-19/QRCodeViewController/Entities/QrPayload.swift +48 −0 Go to diff View file
A CoMap-19/QRCodeViewController/QRCodeViewController.swift +363 −0 Go to diff View file
A CoMap-19/QRCodeViewController/QRCodeViewController.xib +153 −0 Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json +113 −0 Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/Icon.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_29pt.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png Binary file Go to diff View file
A CoMap-19/Resources/Assets.xcassets/Contents.json +6 −0 Go to diff View file
A CoMap-19/Resources/Base.lproj/LaunchScreen.storyboard +53 −0 Go to diff View file
A CoMap-19/Resources/Base.lproj/Main.storyboard +279 −0 Go to diff View file
A CoMap-19/Resources/CoMap_19.xcdatamodeld/.xccurrentversion +5 −0 Go to diff View file
A CoMap-19/Resources/CoMap_19.xcdatamodeld/CoMap_19.xcdatamodel/contents +4 −0 Go to diff View file
A CoMap-19/Resources/Work_Sans/WorkSans-Italic-VariableFont_wght.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/WorkSans-VariableFont_wght.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-Black.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-BlackItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-Bold.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-BoldItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-ExtraBold.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-ExtraBoldItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-ExtraLight.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-ExtraLightItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-Italic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-Light.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-LightItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-Medium.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-MediumItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-Regular.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-SemiBold.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-SemiBoldItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-Thin.ttf Binary file Go to diff View file
A CoMap-19/Resources/Work_Sans/static/WorkSans-ThinItalic.ttf Binary file Go to diff View file
A CoMap-19/Resources/as.lproj/Localizable.strings +269 −0 Go to diff View file
A CoMap-19/Resources/bn.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/Resources/en.lproj/Localizable.strings +181 −0 Go to diff View file
A CoMap-19/Resources/gu.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/Resources/hi.lproj/Localizable.strings +266 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/1.imageset/1.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/1.imageset/1@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/1.imageset/1@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/1.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/2Child.imageset/2Child.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/2Child.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/2Colleagues.imageset/2Colleagues.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/2Colleagues.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/2Friends.imageset/2Friends.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/2Friends.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/3.imageset/3.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/3.imageset/3@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/3.imageset/3@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/3.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/4.imageset/4.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/4.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/5.imageset/5.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/5.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/6.imageset/6.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/6.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/Contents.json +6 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/aarogya_setu.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/aarogya_setu.imageset/status@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/aarogya_setu.imageset/status@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/account.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/account.imageset/account.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/account.imageset/account@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/account.imageset/account@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/active_radio_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/active_radio_icon.imageset/active@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/active_radio_icon.imageset/active@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/add_account_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/add_account_icon.imageset/group4@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/add_account_icon.imageset/group4@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/approvals_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/approvals_icon.imageset/approvals@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/approvals_icon.imageset/approvals@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/back_gray.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/back_gray.imageset/chevron@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/back_gray.imageset/chevron@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/back_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/back_icon.imageset/back@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/back_icon.imageset/back@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/bluetooth.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/bluetooth.imageset/bluetooth.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/bluetooth.imageset/bluetooth@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/bluetooth.imageset/bluetooth@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/call_helpline.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/call_helpline.imageset/call@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/call_helpline.imageset/call@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/checkBoxChecked.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/checkBoxChecked.imageset/checkBoxChecked.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/checkBoxUnchecked.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/checkBoxUnchecked.imageset/checkBoxUnchecked.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/check_box_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/check_box_icon.imageset/checkBoxUnchecked@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/check_box_icon.imageset/checkBoxUnchecked@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/check_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/check_icon.imageset/tick@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/check_icon.imageset/tick@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/connection_lost.imageset/Contents.json +12 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/connection_lost.imageset/connection_lost.pdf Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/constructionMale.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/constructionMale.imageset/constructionMale.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/constructionMale.imageset/constructionMale@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/constructionMale.imageset/constructionMale@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/cross_button.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/cross_button.imageset/combinedShape@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/cross_button.imageset/combinedShape@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/delete.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/delete.imageset/delete@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/delete.imageset/delete@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/delete_grey.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/delete_grey.imageset/delete.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/delete_grey.imageset/delete@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/delete_grey.imageset/delete@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/expand_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/expand_icon.imageset/blue@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/expand_icon.imageset/blue@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/goILogo.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/goILogo.imageset/GoI@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/goILogo.imageset/GoI@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/goi_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/goi_icon.imageset/goI@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/goi_icon.imageset/goI@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/group19.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/group19.imageset/group19.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/group19.imageset/group19@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/group19.imageset/group19@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/group8.imageset/2.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/group8.imageset/2@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/group8.imageset/2@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/group8.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseGrey.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseGrey.imageset/icCircularcloseGrey.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseGrey.imageset/icCircularcloseGrey@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseGrey.imageset/icCircularcloseGrey@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseWhite.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseWhite.imageset/icCircularcloseGrey.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseWhite.imageset/icCircularcloseGrey@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/icCircularcloseWhite.imageset/icCircularcloseGrey@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/inactive_radio_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/inactive_radio_icon.imageset/inactive@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/inactive_radio_icon.imageset/inactive@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/languageChangeCopy3.imageset/Contents.json +26 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/languageChangeCopy3.imageset/languageChangeCopy3.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/languageChangeCopy3.imageset/languageChangeCopy3@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/languageChangeCopy3.imageset/languageChangeCopy3@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/location.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/location.imageset/location.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/location.imageset/location@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/location.imageset/location@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/logo1Copy2.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/logo1Copy2.imageset/logo1Copy2.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/logo1Copy2.imageset/logo1Copy2@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/logo1Copy2.imageset/logo1Copy2@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/menu.imageset/Contents.json +26 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/menu.imageset/menu.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/menu.imageset/menu@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/menu.imageset/menu@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/menu_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/menu_icon.imageset/menu@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/menu_icon.imageset/menu@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/nitiLogo.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/nitiLogo.imageset/nitiLogo.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/nitiLogo.imageset/nitiLogo@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/nitiLogo.imageset/nitiLogo@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/profile_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/profile_icon.imageset/groceryMale@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/profile_icon.imageset/groceryMale@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qrCodePlaceholder.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/qrCodePlaceholder.imageset/qrCode.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qrCodePlaceholder.imageset/qrCode@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qrCodePlaceholder.imageset/qrCode@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qrLogo.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/qrLogo.imageset/qrLogo.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qrLogo.imageset/qrLogo@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qrLogo.imageset/qrLogo@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qr_code.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/qr_code.imageset/qr@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/qr_code.imageset/qr@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/refresh.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/refresh.imageset/refresh_blue-1.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/refresh.imageset/refresh_blue.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/request_always_approved.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/request_always_approved.imageset/alwaysApprove@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/request_always_approved.imageset/alwaysApprove@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/request_approved.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/request_approved.imageset/approved@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/request_approved.imageset/approved@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/request_reject.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/request_reject.imageset/reject@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/request_reject.imageset/reject@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/settings.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/settings.imageset/settings.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/settings.imageset/settings@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/settings.imageset/settings@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/shareStatus.imageset/Contents.json +23 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/shareStatus.imageset/shareStatus.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/shareStatus.imageset/shareStatus@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/shareStatus.imageset/shareStatus@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/share_app.imageset/ChangeLanguage Copy@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/share_app.imageset/ChangeLanguage Copy@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/share_app.imageset/Contents.json +25 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/splash.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/splash.imageset/Group@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/splash.imageset/Group@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/status_check.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/status_check.imageset/statusCheck@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/status_check.imageset/statusCheck@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/status_menu_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/status_menu_icon.imageset/more@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/status_menu_icon.imageset/more@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/sync_failure.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/sync_failure.imageset/syncError@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/sync_failure.imageset/syncError@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/sync_successful.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/sync_successful.imageset/green@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/sync_successful.imageset/green@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/synching.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/synching.imageset/sync@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/synching.imageset/sync@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/upload_image.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/upload_image.imageset/ilUploadInfo@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/upload_image.imageset/ilUploadInfo@3x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/upload_warning_icon.imageset/Contents.json +22 −0 Go to diff View file
A CoMap-19/Resources/images.xcassets/upload_warning_icon.imageset/menuCopy51@2x.png Binary file Go to diff View file
A CoMap-19/Resources/images.xcassets/upload_warning_icon.imageset/menuCopy51@3x.png Binary file Go to diff View file
A CoMap-19/Resources/kn.lproj/Localizable.strings +269 −0 Go to diff View file
A CoMap-19/Resources/ml.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/Resources/mr.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/Resources/or.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/Resources/pa.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/Resources/ta.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/Resources/te.lproj/Localizable.strings +268 −0 Go to diff View file
A CoMap-19/ScanQrCodeViewController/ScanOrCodeViewController.swift +322 −0 Go to diff View file
A CoMap-19/ScanQrCodeViewController/ScanOrCodeViewController.xib +165 −0 Go to diff View file
A CoMap-19/SceneDelegate.swift +55 −0 Go to diff View file
A CoMap-19/SettingsViewController/SettingsViewController.swift +146 −0 Go to diff View file
A CoMap-19/SettingsViewController/views/SettingsTableViewCell.swift +47 −0 Go to diff View file
A CoMap-19/SettingsViewController/views/SettingsTableViewCell.xib +74 −0 Go to diff View file
A CoMap-19/SettingsViewController/views/UserStatusPreferenceTableViewCell.swift +90 −0 Go to diff View file
A CoMap-19/SettingsViewController/views/UserStatusPreferenceTableViewCell.xib +89 −0 Go to diff View file
A CoMap-19/StatusCheck/AddStatusCheckAccountViewController.swift +210 −0 Go to diff View file
A CoMap-19/StatusCheck/AddStatusCheckAccountViewController.xib +111 −0 Go to diff View file
A CoMap-19/StatusCheck/ShareStatusCodeViewController.swift +228 −0 Go to diff View file
A CoMap-19/StatusCheck/ShareStatusCodeViewController.xib +114 −0 Go to diff View file
A CoMap-19/StatusCheck/StatusCheckTableViewCell.swift +104 −0 Go to diff View file
A CoMap-19/StatusCheck/StatusCheckTableViewCell.xib +137 −0 Go to diff View file
A CoMap-19/StatusCheck/StatusCheckViewController.swift +298 −0 Go to diff View file
A CoMap-19/StatusCheck/StatusCheckViewController.xib +134 −0 Go to diff View file
A CoMap-19/StatusCheck/StatusCodeViewController.swift +154 −0 Go to diff View file
A CoMap-19/StatusCheck/StatusCodeViewController.xib +150 −0 Go to diff View file
A CoMap-19/StatusCheck/StatusMsmeRequest.swift +25 −0 Go to diff View file
A CoMap-19/StatusRequestViewController/ReportAbuseViewController.swift +238 −0 Go to diff View file
A CoMap-19/StatusRequestViewController/ReportAbuseViewController.xib +309 −0 Go to diff View file
A CoMap-19/StatusRequestViewController/StatusRequestCollectionViewCell.swift +273 −0 Go to diff View file
A CoMap-19/StatusRequestViewController/StatusRequestCollectionViewCell.xib +206 −0 Go to diff View file
A CoMap-19/StatusRequestViewController/StatusRequestResponse.swift +36 −0 Go to diff View file
A CoMap-19/StatusRequestViewController/StatusRequestViewController.swift +261 −0 Go to diff View file
A CoMap-19/StatusRequestViewController/StatusRequestViewController.xib +45 −0 Go to diff View file
A CoMap-19/UploadDataConsentScreen/UploadDataConsentViewController.swift +209 −0 Go to diff View file
A CoMap-19/UploadDataConsentScreen/UploadDataConsentViewController.xib +266 −0 Go to diff View file
A CoMap-19/UploadDataStatusViewController/UploadDataStatusViewController.swift +201 −0 Go to diff View file
A CoMap-19/UploadDataStatusViewController/UploadDataStatusViewController.xib +122 −0 Go to diff View file
A CoMap-19/UserPreference/UserStatusPreference.swift +39 −0 Go to diff View file
A CoMap-19/UserPreference/UserStatusPreferenceListViewController.swift +226 −0 Go to diff View file
A CoMap-19/UserPreference/UserStatusPreferenceListViewController.xib +81 −0 Go to diff View file
A CoMap-19/UserPreference/UserStatusPreferenceViewController.swift +229 −0 Go to diff View file
A CoMap-19/UserPreference/UserStatusPreferenceViewController.xib +149 −0 Go to diff View file
A CoMap-19/WebViewController/WebViewController.swift +393 −0 Go to diff View file
A CoMap-19Tests/CoMap_19Tests.swift +33 −0 Go to diff View file
A CoMap-19Tests/Info.plist +22 −0 Go to diff View file
A CoMap-19UITests/CoMap_19UITests.swift +42 −0 Go to diff View file
A CoMap-19UITests/Info.plist +22 −0 Go to diff View file
A Contributors.md +88 −0 Go to diff View file
A Download_on_the_App_Store_Badge.png Binary file Go to diff View file
A Icon.png Binary file Go to diff View file
A LICENSE.md +13 −0 Go to diff View file
A Podfile +19 −0 Go to diff View file
A Podfile.lock +198 −0 Go to diff View file
A Pods/BlueCryptor/LICENSE +176 −0 Go to diff View file
A Pods/BlueCryptor/README.md +235 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/Crypto.swift +128 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/Cryptor.swift +71 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/Digest.swift +279 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/HMAC.swift +335 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/KeyDerivation.swift +211 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/Random.swift +106 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/SSLPointerTricks.swift +100 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/Status.swift +288 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/StreamCryptor.swift +939 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/Updatable.swift +107 −0 Go to diff View file
A Pods/BlueCryptor/Sources/Cryptor/Utilities.swift +262 −0 Go to diff View file
A Pods/BlueRSA/LICENSE +176 −0 Go to diff View file
A Pods/BlueRSA/README.md +318 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/CryptorRSA.swift +1111 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/CryptorRSAConstants.swift +74 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/CryptorRSADigest.swift +329 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/CryptorRSAErrors.swift +108 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/CryptorRSAKey.swift +910 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/CryptorRSAUtilities.swift +393 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/Data+Extensions.swift +38 −0 Go to diff View file
A Pods/BlueRSA/Sources/CryptorRSA/SSLPointerTricks.swift +100 −0 Go to diff View file
A Pods/Crashlytics/Crashlytics.framework/README +1 −0 Go to diff View file
A Pods/Crashlytics/Crashlytics.framework/submit +6 −0 Go to diff View file
A Pods/Crashlytics/README.md +23 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Crashlytics Binary file Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h +31 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Answers.h +210 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h +33 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSLogging.h +64 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSReport.h +103 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSStackFrame.h +38 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Crashlytics.h +288 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Info.plist Binary file Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/Modules/module.modulemap +14 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/run +73 −0 Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/submit Binary file Go to diff View file
A Pods/Crashlytics/iOS/Crashlytics.framework/upload-symbols Binary file Go to diff View file
A Pods/Crashlytics/submit Binary file Go to diff View file
A Pods/Fabric/Fabric.framework/README +1 −0 Go to diff View file
A Pods/Fabric/Fabric.framework/run +6 −0 Go to diff View file
A Pods/Fabric/README.md +27 −0 Go to diff View file
A Pods/Fabric/iOS/Fabric.framework/Fabric Binary file Go to diff View file
A Pods/Fabric/iOS/Fabric.framework/Headers/FABAttributes.h +51 −0 Go to diff View file
A Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h +82 −0 Go to diff View file
A Pods/Fabric/iOS/Fabric.framework/Info.plist Binary file Go to diff View file
A Pods/Fabric/iOS/Fabric.framework/Modules/module.modulemap +6 −0 Go to diff View file
A Pods/Fabric/iOS/Fabric.framework/run +73 −0 Go to diff View file
A Pods/Fabric/iOS/Fabric.framework/upload-symbols Binary file Go to diff View file
A Pods/Fabric/run +73 −0 Go to diff View file
A Pods/Fabric/upload-symbols Binary file Go to diff View file
A Pods/Firebase/CoreOnly/Sources/Firebase.h +172 −0 Go to diff View file
A Pods/Firebase/CoreOnly/Sources/module.modulemap +4 −0 Go to diff View file
A Pods/Firebase/LICENSE +202 −0 Go to diff View file
A Pods/Firebase/README.md +264 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/ABTConditionalUserPropertyController.h +80 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/ABTConditionalUserPropertyController.m +281 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/ABTConstants.h +43 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/FIRExperimentController.m +341 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/FIRLifecycleEvents.m +88 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/Protos/developers/mobile/abt/proto/ExperimentPayload.pbobjc.h +179 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/Protos/developers/mobile/abt/proto/ExperimentPayload.pbobjc.m +330 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/Public/FIRExperimentController.h +104 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/Public/FIRLifecycleEvents.h +63 −0 Go to diff View file
A Pods/FirebaseABTesting/FirebaseABTesting/Sources/Public/FirebaseABTesting.h +16 −0 Go to diff View file
A Pods/FirebaseABTesting/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseABTesting/README.md +266 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/FIRAnalyticsConnector Binary file Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/Modules/module.modulemap +11 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics Binary file Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +62 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +136 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h +407 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +532 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +29 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +5 −0 Go to diff View file
A Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap +12 −0 Go to diff View file
A Pods/FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInterop.h +66 −0 Go to diff View file
A Pods/FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRAnalyticsInteropListener.h +24 −0 Go to diff View file
A Pods/FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropEventNames.h +28 −0 Go to diff View file
A Pods/FirebaseAnalyticsInterop/Interop/Analytics/Public/FIRInteropParameterNames.h +73 −0 Go to diff View file
A Pods/FirebaseAnalyticsInterop/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseAnalyticsInterop/README.md +251 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRAnalyticsConfiguration.m +62 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m +914 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRAppAssociationRegistration.m +47 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.h +53 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.m +75 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m +65 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentContainer.m +214 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentType.m +28 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRConfiguration.m +46 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m +61 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRDependency.m +44 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRDiagnosticsData.m +66 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRErrors.m +21 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRHeartbeatInfo.m +61 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m +179 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m +490 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.h +23 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m +33 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRAnalyticsConfiguration.h +56 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h +49 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRAppInternal.h +162 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponent.h +91 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentContainer.h +44 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentContainerInternal.h +49 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentType.h +34 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRConfigurationInternal.h +29 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h +35 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRDependency.h +45 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRDiagnosticsData.h +35 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRErrorCode.h +38 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRErrors.h +24 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRHeartbeatInfo.h +39 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLibrary.h +45 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLogger.h +151 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Private/FIROptionsInternal.h +114 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Public/FIRApp.h +127 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Public/FIRConfiguration.h +45 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Public/FIRLoggerLevel.h +38 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Public/FIROptions.h +123 −0 Go to diff View file
A Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore.h +20 −0 Go to diff View file
A Pods/FirebaseCore/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseCore/README.md +264 −0 Go to diff View file
A Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m +647 −0 Go to diff View file
A Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c +60 −0 Go to diff View file
A Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h +193 −0 Go to diff View file
A Pods/FirebaseCoreDiagnostics/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseCoreDiagnostics/README.md +264 −0 Go to diff View file
A Pods/FirebaseCoreDiagnosticsInterop/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h +61 −0 Go to diff View file
A Pods/FirebaseCoreDiagnosticsInterop/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h +34 −0 Go to diff View file
A Pods/FirebaseCoreDiagnosticsInterop/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseCoreDiagnosticsInterop/README.md +251 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h +56 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m +124 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h +54 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m +78 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallations.m +248 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m +30 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h +27 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.h +86 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.m +104 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.h +51 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.m +49 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsVersion.m +23 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h +48 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m +236 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h +36 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m +157 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h +62 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m +346 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h +53 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m +142 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h +44 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m +458 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h +58 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m +75 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h +35 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h +71 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m +125 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h +58 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m +77 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h +51 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m +80 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FIRInstallations.h +120 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h +33 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h +34 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h +19 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h +20 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.h +35 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.m +107 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.h +71 −0 Go to diff View file
A Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.m +255 −0 Go to diff View file
A Pods/FirebaseInstallations/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseInstallations/README.md +251 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRIMessageCode.h +147 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceID+Private.m +56 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceID.m +1130 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDAPNSInfo.h +64 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDAPNSInfo.m +79 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h +95 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m +216 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDAuthService.h +91 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDAuthService.m +302 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h +81 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m +117 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h +64 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m +112 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m +95 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h +27 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinService.h +68 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinService.m +242 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinStore.h +108 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCheckinStore.m +236 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCombinedHandler.h +31 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDCombinedHandler.m +64 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDConstants.h +63 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDConstants.m +46 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDDefines.h +47 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDKeychain.h +62 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDKeychain.m +114 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDLogger.h +66 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDLogger.m +92 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDStore.h +183 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDStore.m +242 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h +31 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m +118 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h +34 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m +207 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenInfo.h +92 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenInfo.m +212 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenManager.h +149 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenManager.m +340 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h +69 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenOperation.h +72 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenOperation.m +258 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenStore.h +106 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDTokenStore.m +143 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDURLQueryItem.h +39 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDURLQueryItem.m +55 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDUtilities.h +85 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDUtilities.m +208 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDVersionUtilities.h +35 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/FIRInstanceIDVersionUtilities.m +85 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/NSError+FIRInstanceID.h +70 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/NSError+FIRInstanceID.m +44 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/Private/FIRInstanceID+Private.h +63 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h +62 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/Private/FIRInstanceID_Private.h +74 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/Public/FIRInstanceID.h +312 −0 Go to diff View file
A Pods/FirebaseInstanceID/Firebase/InstanceID/Public/FirebaseInstanceID.h +17 −0 Go to diff View file
A Pods/FirebaseInstanceID/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseInstanceID/README.md +264 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMMessageCode.h +208 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessaging.m +1159 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingAnalytics.h +44 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingAnalytics.m +222 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingClient.h +156 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingClient.m +517 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingCodedInputStream.h +28 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingCodedInputStream.m +148 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingConnection.h +104 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingConnection.m +683 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingConstants.h +59 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingConstants.m +61 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingContextManagerService.h +44 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingContextManagerService.m +210 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingDataMessageManager.h +101 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingDataMessageManager.m +518 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingDefines.h +45 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingDelayedMessageQueue.h +36 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingDelayedMessageQueue.m +149 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingExtensionHelper.m +119 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingLogger.h +67 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingLogger.m +95 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPacketQueue.h +42 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPacketQueue.m +103 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPendingTopicsList.h +119 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPendingTopicsList.m +271 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPersistentSyncMessage.h +28 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPersistentSyncMessage.m +55 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPubSub.h +171 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPubSub.m +285 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPubSubRegistrar.h +44 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingPubSubRegistrar.m +67 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingReceiver.h +39 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingReceiver.m +104 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingRemoteNotificationsProxy.h +45 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingRemoteNotificationsProxy.m +591 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingRmqManager.h +164 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingRmqManager.m +825 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingSecureSocket.h +56 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingSecureSocket.m +404 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingSyncMessageManager.h +59 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingSyncMessageManager.m +114 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingTopicOperation.h +44 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingTopicOperation.m +241 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingTopicsCommon.h +29 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingUtilities.h +57 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingUtilities.m +201 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingVersionUtilities.h +35 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessagingVersionUtilities.m +86 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FIRMessaging_Private.h +59 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/FirebaseMessaging.h +17 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/NSDictionary+FIRMessaging.h +45 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/NSDictionary+FIRMessaging.m +58 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/NSError+FIRMessaging.h +69 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/NSError+FIRMessaging.m +35 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/Protos/GtalkCore.pbobjc.h +1374 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/Protos/GtalkCore.pbobjc.m +3017 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/Protos/GtalkExtensions.pbobjc.h +617 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/Protos/GtalkExtensions.pbobjc.m +1407 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/Public/FIRMessaging.h +508 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/Public/FIRMessagingExtensionHelper.h +39 −0 Go to diff View file
A Pods/FirebaseMessaging/Firebase/Messaging/Public/FirebaseMessaging.h +18 −0 Go to diff View file
A Pods/FirebaseMessaging/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseMessaging/README.md +264 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/FIRConfigValue.m +91 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/FIRRemoteConfig.m +635 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.h +58 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/FIRRemoteConfigComponent.m +122 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/Private/FIRRemoteConfig_Private.h +71 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/Private/RCNConfigSettings.h +123 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/Protos/wireless/android/config/proto/Config.pbobjc.h +504 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/Protos/wireless/android/config/proto/Config.pbobjc.m +1044 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/Public/FIRRemoteConfig.h +369 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/Public/FirebaseRemoteConfig.h +17 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigConstants.h +65 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigContent.h +60 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigContent.m +337 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigDBManager.h +121 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigDBManager.m +1046 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigDefines.h +34 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigExperiment.h +37 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigExperiment.m +226 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigFetch.h +64 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigSettings.m +459 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConfigValue_Internal.h +25 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNConstants3P.m +20 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNDevice.h +59 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNDevice.m +235 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNFetch.m +606 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNUserDefaultsManager.h +55 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/FirebaseRemoteConfig/Sources/RCNUserDefaultsManager.m +233 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/LICENSE +202 −0 Go to diff View file
A Pods/FirebaseRemoteConfig/README.md +266 −0 Go to diff View file
A Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/GoogleAppMeasurement Binary file Go to diff View file
A Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.framework/Modules/module.modulemap +11 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m +36 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORClock.m +164 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m +36 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m +64 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m +123 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m +132 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m +222 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m +118 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m +142 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORStorage.m +347 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORStoredEvent.m +95 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m +98 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m +107 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m +274 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m +159 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h +30 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability.h +34 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h +32 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h +35 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage.h +52 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage_Private.h +47 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h +56 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h +33 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h +39 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h +77 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h +29 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h +91 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h +57 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h +94 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORDataFuture.h +42 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h +94 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h +36 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h +38 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h +63 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h +98 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h +75 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h +50 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORStoredEvent.h +58 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h +37 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h +91 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h +80 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h +48 −0 Go to diff View file
A Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h +30 −0 Go to diff View file
A Pods/GoogleDataTransport/LICENSE +202 −0 Go to diff View file
A Pods/GoogleDataTransport/README.md +264 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m +95 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m +206 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m +252 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m +450 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h +40 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h +112 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h +53 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h +63 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c +128 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h +281 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/LICENSE +202 −0 Go to diff View file
A Pods/GoogleDataTransportCCTSupport/README.md +264 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m +1038 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h +55 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h +107 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h +50 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Common/GULLoggerCodes.h +56 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Environment/GULHeartbeatDateStorage.m +140 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Environment/GULSecureCoding.m +103 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h +49 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GULSecureCoding.h +36 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h +46 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m +263 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/LICENSE +247 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Logger/GULLogger.m +214 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Logger/Private/GULLogger.h +159 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GULLoggerLevel.h +37 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/GULSwizzler.m +153 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h +207 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h +71 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.h +49 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.m +207 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/GULMutableDictionary.m +101 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/GULNetwork.m +389 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkConstants.m +40 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkURLSession.m +762 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULMutableDictionary.h +46 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetwork.h +87 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkConstants.h +79 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h +51 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkMessageCode.h +47 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Network/Private/GULNetworkURLSession.h +62 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h +47 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker.m +263 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Reachability/Private/GULReachabilityChecker.h +79 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h +29 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m +438 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h +48 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h +73 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/UserDefaults/GULUserDefaults.m +213 −0 Go to diff View file
A Pods/GoogleUtilities/GoogleUtilities/UserDefaults/Private/GULUserDefaults.h +110 −0 Go to diff View file
A Pods/GoogleUtilities/README.md +254 −0 Go to diff View file
A Pods/GzipSwift/LICENSE +22 −0 Go to diff View file
A Pods/GzipSwift/README.md +81 −0 Go to diff View file
A Pods/GzipSwift/Sources/Gzip/Data+Gzip.swift +292 −0 Go to diff View file
A Pods/Headers/Private/Firebase/Firebase.h +1 −0 Go to diff View file
A Pods/Headers/Private/FirebaseAnalyticsInterop/FIRAnalyticsInterop.h +1 −0 Go to diff View file
A Pods/Headers/Private/FirebaseAnalyticsInterop/FIRAnalyticsInteropListener.h +1 −0 Go to diff View file
A Pods/Headers/Private/FirebaseAnalyticsInterop/FIRInteropEventNames.h +1 −0 Go to diff View file
A Pods/Headers/Private/FirebaseAnalyticsInterop/FIRInteropParameterNames.h +1 −0 Go to diff View file
A Pods/Headers/Private/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsData.h +1 −0 Go to diff View file
A Pods/Headers/Private/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsInterop.h +1 −0 Go to diff View file
A Pods/Headers/Public/Firebase/Firebase.h +1 −0 Go to diff View file
A Pods/Headers/Public/FirebaseAnalyticsInterop/FIRAnalyticsInterop.h +1 −0 Go to diff View file
A Pods/Headers/Public/FirebaseAnalyticsInterop/FIRAnalyticsInteropListener.h +1 −0 Go to diff View file
A Pods/Headers/Public/FirebaseAnalyticsInterop/FIRInteropEventNames.h +1 −0 Go to diff View file
A Pods/Headers/Public/FirebaseAnalyticsInterop/FIRInteropParameterNames.h +1 −0 Go to diff View file
A Pods/Headers/Public/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsData.h +1 −0 Go to diff View file
A Pods/Headers/Public/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsInterop.h +1 −0 Go to diff View file
A Pods/KeychainSwift/LICENSE +21 −0 Go to diff View file
A Pods/KeychainSwift/README.md +263 −0 Go to diff View file
A Pods/KeychainSwift/Sources/KeychainSwift.swift +346 −0 Go to diff View file
A Pods/KeychainSwift/Sources/KeychainSwiftAccessOptions.swift +83 −0 Go to diff View file
A Pods/KeychainSwift/Sources/TegKeychainConstants.swift +48 −0 Go to diff View file
A Pods/KituraContracts/LICENSE +201 −0 Go to diff View file
A Pods/KituraContracts/README.md +87 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/BodyDecoder.swift +28 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/BodyEncoder.swift +28 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/BodyFormat.swift +78 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/ClosureAliases.swift +260 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/CodableQuery/Coder.swift +68 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift +353 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift +408 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift +522 −0 Go to diff View file
A Pods/KituraContracts/Sources/KituraContracts/Contracts.swift +1550 −0 Go to diff View file
A Pods/LoggerAPI/LICENSE.txt +177 −0 Go to diff View file
A Pods/LoggerAPI/README.md +76 −0 Go to diff View file
A Pods/LoggerAPI/Sources/LoggerAPI/Logger.swift +347 −0 Go to diff View file
A Pods/Logging/LICENSE.txt +202 −0 Go to diff View file
A Pods/Logging/README.md +248 −0 Go to diff View file
A Pods/Logging/Sources/Logging/Locks.swift +193 −0 Go to diff View file
A Pods/Logging/Sources/Logging/LogHandler.swift +153 −0 Go to diff View file
A Pods/Logging/Sources/Logging/Logging.swift +684 −0 Go to diff View file
A Pods/Manifest.lock +198 −0 Go to diff View file
A Pods/Pods.xcodeproj/project.pbxproj +8900 −0 Go to diff View file
A Pods/Pods.xcodeproj/xcuserdata/rajeevarkvanshi.xcuserdatad/xcschemes/xcschememanagement.plist +159 −0 Go to diff View file
A Pods/PromisesObjC/LICENSE +202 −0 Go to diff View file
A Pods/PromisesObjC/README.md +60 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+All.m +86 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Always.m +58 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Any.m +112 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Async.m +70 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Await.m +48 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Catch.m +55 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Delay.m +59 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m +59 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Race.m +65 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Recover.m +54 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Reduce.m +61 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Retry.m +128 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Testing.m +56 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Then.m +50 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Timeout.m +64 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Validate.m +56 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Wrap.m +420 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m +297 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/FBLPromiseError.m +19 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+All.h +63 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Always.h +54 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Any.h +69 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Async.h +60 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Await.h +32 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Catch.h +59 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Delay.h +59 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Do.h +55 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Race.h +62 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Recover.h +60 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Reduce.h +71 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Retry.h +165 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Testing.h +63 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Then.h +63 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Timeout.h +57 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Validate.h +60 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Wrap.h +316 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise.h +82 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromiseError.h +43 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromisePrivate.h +66 −0 Go to diff View file
A Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromises.h +32 −0 Go to diff View file
A Pods/Protobuf/LICENSE +32 −0 Go to diff View file
A Pods/Protobuf/README.md +85 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBArray.h +1967 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBArray.m +2551 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBArray_PackagePrivate.h +130 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBBootstrap.h +141 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBCodedInputStream.h +253 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBCodedInputStream.m +513 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h +112 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBCodedOutputStream.h +748 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBCodedOutputStream.m +1210 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h +126 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBDescriptor.h +318 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBDescriptor.m +1123 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBDescriptor_PackagePrivate.h +325 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBDictionary.h +5770 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBDictionary.m +12120 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBDictionary_PackagePrivate.h +488 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBExtensionInternals.h +50 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBExtensionInternals.m +391 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBExtensionRegistry.h +87 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBExtensionRegistry.m +130 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBMessage.h +470 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBMessage.m +3348 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBMessage_PackagePrivate.h +124 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBProtocolBuffers.h +76 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h +40 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBRootObject.h +52 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBRootObject.m +245 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBRootObject_PackagePrivate.h +46 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBRuntimeTypes.h +144 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUnknownField.h +99 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUnknownField.m +337 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUnknownFieldSet.h +82 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUnknownFieldSet.m +395 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUnknownFieldSet_PackagePrivate.h +61 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUnknownField_PackagePrivate.h +47 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUtilities.h +539 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUtilities.m +2214 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBUtilities_PackagePrivate.h +355 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBWellKnownTypes.h +245 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBWellKnownTypes.m +272 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBWireFormat.h +73 −0 Go to diff View file
A Pods/Protobuf/objectivec/GPBWireFormat.m +85 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.h +183 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.m +114 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.h +311 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.m +362 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.h +145 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.m +109 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.h +74 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.m +85 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h +273 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m +98 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.h +77 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/SourceContext.pbobjc.m +98 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.h +204 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.m +302 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h +167 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m +109 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.h +444 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.m +716 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h +219 −0 Go to diff View file
A Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m +457 −0 Go to diff View file
A Pods/SVProgressHUD/LICENSE +21 −0 Go to diff View file
A Pods/SVProgressHUD/README.md +218 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h +17 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m +137 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h +17 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.m +96 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png Binary file Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h +147 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m +1509 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h +14 −0 Go to diff View file
A Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.m +25 −0 Go to diff View file
A Pods/SwiftJWT/LICENSE +177 −0 Go to diff View file
A Pods/SwiftJWT/README.md +235 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/BlueHMAC.swift +81 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/BlueRSA.swift +102 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/Claims.swift +84 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/ClaimsExamples/ClaimsMicroProfile.swift +85 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/ClaimsExamples/ClaimsOpenID.swift +200 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/ClaimsExamples/ClaimsStandardJWT.swift +108 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/Data+Base64URLEncoded.swift +37 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/Header.swift +102 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/JWT.swift +139 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/JWTDecoder.swift +285 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/JWTEncoder.swift +234 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/JWTError.swift +55 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/JWTSigner.swift +84 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/JWTVerifier.swift +95 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/NoneAlgorithm.swift +32 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/RSAKeyType.swift +29 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/SignerAlgorithm.swift +20 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/ValidateClaimsResult.swift +52 −0 Go to diff View file
A Pods/SwiftJWT/Sources/SwiftJWT/VerifierAlgorithm.swift +21 −0 Go to diff View file
A Pods/Target Support Files/BlueCryptor/BlueCryptor-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/BlueCryptor/BlueCryptor-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/BlueCryptor/BlueCryptor-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/BlueCryptor/BlueCryptor-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/BlueCryptor/BlueCryptor.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/BlueCryptor/BlueCryptor.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/BlueCryptor/BlueCryptor.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/BlueRSA/BlueRSA-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/BlueRSA/BlueRSA-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/BlueRSA/BlueRSA-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/BlueRSA/BlueRSA-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/BlueRSA/BlueRSA.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/BlueRSA/BlueRSA.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/BlueRSA/BlueRSA.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/Crashlytics/Crashlytics.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/Crashlytics/Crashlytics.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/Fabric/Fabric.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/Fabric/Fabric.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/Firebase/Firebase.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/Firebase/Firebase.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting-umbrella.h +19 −0 Go to diff View file
A Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseABTesting/FirebaseABTesting.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseAnalyticsInterop/FirebaseAnalyticsInterop.release.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/FirebaseAnalyticsInterop/FirebaseAnalyticsInterop.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCore/FirebaseCore-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h +21 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig +13 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCore/FirebaseCore.xcconfig +13 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-umbrella.h +17 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig +14 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.xcconfig +14 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnosticsInterop/FirebaseCoreDiagnosticsInterop.release.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/FirebaseCoreDiagnosticsInterop/FirebaseCoreDiagnosticsInterop.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-umbrella.h +21 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID-umbrella.h +18 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseInstanceID/FirebaseInstanceID.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseMessaging/FirebaseMessaging-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/FirebaseMessaging/FirebaseMessaging-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/FirebaseMessaging/FirebaseMessaging-umbrella.h +19 −0 Go to diff View file
A Pods/Target Support Files/FirebaseMessaging/FirebaseMessaging.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/FirebaseMessaging/FirebaseMessaging.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseMessaging/FirebaseMessaging.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig-umbrella.h +18 −0 Go to diff View file
A Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/FirebaseRemoteConfig/FirebaseRemoteConfig.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-umbrella.h +33 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig +13 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.xcconfig +13 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-umbrella.h +17 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.release.xcconfig +14 −0 Go to diff View file
A Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.xcconfig +14 −0 Go to diff View file
A Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/GoogleUtilities/GoogleUtilities-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h +19 −0 Go to diff View file
A Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/GoogleUtilities/GoogleUtilities.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/GoogleUtilities/GoogleUtilities.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/GzipSwift/GzipSwift-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/GzipSwift/GzipSwift-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/GzipSwift/GzipSwift-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/GzipSwift/GzipSwift-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/GzipSwift/GzipSwift.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/GzipSwift/GzipSwift.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/GzipSwift/GzipSwift.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/KeychainSwift/KeychainSwift-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/KeychainSwift/KeychainSwift-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/KeychainSwift/KeychainSwift-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/KeychainSwift/KeychainSwift-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/KeychainSwift/KeychainSwift.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/KeychainSwift/KeychainSwift.release.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/KeychainSwift/KeychainSwift.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/KituraContracts/KituraContracts-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/KituraContracts/KituraContracts-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/KituraContracts/KituraContracts-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/KituraContracts/KituraContracts-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/KituraContracts/KituraContracts.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/KituraContracts/KituraContracts.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/KituraContracts/KituraContracts.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/LoggerAPI/LoggerAPI-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/LoggerAPI/LoggerAPI-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/LoggerAPI/LoggerAPI-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/LoggerAPI/LoggerAPI-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/LoggerAPI/LoggerAPI.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/LoggerAPI/LoggerAPI.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/LoggerAPI/LoggerAPI.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/Logging/Logging-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/Logging/Logging-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/Logging/Logging-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/Logging/Logging-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/Logging/Logging.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/Logging/Logging.release.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/Logging/Logging.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-acknowledgements.markdown +4217 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-acknowledgements.plist +4417 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-frameworks-Debug-input-files.xcfilelist +8 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-frameworks-Debug-output-files.xcfilelist +7 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-frameworks-Release-input-files.xcfilelist +14 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-frameworks-Release-output-files.xcfilelist +13 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-frameworks-Staging-input-files.xcfilelist +14 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-frameworks-Staging-output-files.xcfilelist +13 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-frameworks.sh +231 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19.debug.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19.release.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/Pods-CoMap-19/Pods-CoMap-19.staging.xcconfig +12 −0 Go to diff View file
A Pods/Target Support Files/PromisesObjC/PromisesObjC-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/PromisesObjC/PromisesObjC-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/PromisesObjC/PromisesObjC-umbrella.h +36 −0 Go to diff View file
A Pods/Target Support Files/PromisesObjC/PromisesObjC.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/PromisesObjC/PromisesObjC.release.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/PromisesObjC/PromisesObjC.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/Protobuf/Protobuf-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/Protobuf/Protobuf-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/Protobuf/Protobuf-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/Protobuf/Protobuf-umbrella.h +54 −0 Go to diff View file
A Pods/Target Support Files/Protobuf/Protobuf.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/Protobuf/Protobuf.release.xcconfig +9 −0 Go to diff View file
A Pods/Target Support Files/Protobuf/Protobuf.xcconfig +9 −0 Go to diff View file
A Pods/Target Support Files/SVProgressHUD/SVProgressHUD-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/SVProgressHUD/SVProgressHUD-umbrella.h +20 −0 Go to diff View file
A Pods/Target Support Files/SVProgressHUD/SVProgressHUD.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/SVProgressHUD/SVProgressHUD.release.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/SVProgressHUD/SVProgressHUD.xcconfig +10 −0 Go to diff View file
A Pods/Target Support Files/SwiftJWT/SwiftJWT-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/SwiftJWT/SwiftJWT-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/SwiftJWT/SwiftJWT-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/SwiftJWT/SwiftJWT-umbrella.h +16 −0 Go to diff View file
A Pods/Target Support Files/SwiftJWT/SwiftJWT.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/SwiftJWT/SwiftJWT.release.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/SwiftJWT/SwiftJWT.xcconfig +11 −0 Go to diff View file
A Pods/Target Support Files/nanopb/nanopb-Info.plist +26 −0 Go to diff View file
A Pods/Target Support Files/nanopb/nanopb-dummy.m +5 −0 Go to diff View file
A Pods/Target Support Files/nanopb/nanopb-prefix.pch +12 −0 Go to diff View file
A Pods/Target Support Files/nanopb/nanopb-umbrella.h +26 −0 Go to diff View file
A Pods/Target Support Files/nanopb/nanopb.modulemap +6 −0 Go to diff View file
A Pods/Target Support Files/nanopb/nanopb.release.xcconfig +9 −0 Go to diff View file
A Pods/Target Support Files/nanopb/nanopb.xcconfig +9 −0 Go to diff View file
A Pods/nanopb/LICENSE.txt +20 −0 Go to diff View file
A Pods/nanopb/README.md +71 −0 Go to diff View file
A Pods/nanopb/pb.h +593 −0 Go to diff View file
A Pods/nanopb/pb_common.c +97 −0 Go to diff View file
A Pods/nanopb/pb_common.h +42 −0 Go to diff View file
A Pods/nanopb/pb_decode.c +1508 −0 Go to diff View file
A Pods/nanopb/pb_decode.h +175 −0 Go to diff View file
A Pods/nanopb/pb_encode.c +869 −0 Go to diff View file
A Pods/nanopb/pb_encode.h +170 −0 Go to diff View file
A README.md +92 −0 Go to diff View file