├── LocationChat.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── sohambhattacharjee.xcuserdatad │ └── xcschemes │ ├── LocationChat.xcscheme │ └── xcschememanagement.plist ├── LocationChat.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── sohambhattacharjee.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── LocationChat ├── AppDelegate.swift ├── Assets.xcassets │ ├── Alarm.imageset │ │ ├── Alarm.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Camera.imageset │ │ ├── Camera.png │ │ ├── Camera@2x.png │ │ ├── Camera@3x.png │ │ └── Contents.json │ ├── Contacts.imageset │ │ ├── Contacts.png │ │ ├── Contacts@2x.png │ │ ├── Contacts@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── FT_Add.imageset │ │ ├── Contents.json │ │ └── FT_Add@2x.png │ ├── FT_Error.imageset │ │ ├── Contents.json │ │ └── FT_Error@2x.png │ ├── FT_Record.imageset │ │ ├── Contents.json │ │ └── FT_Record@2x.png │ ├── Mail.imageset │ │ ├── Contents.json │ │ ├── Mail.png │ │ ├── Mail@2x.png │ │ └── Mail@3x-1.png │ ├── Media_Pause.imageset │ │ ├── Contents.json │ │ └── Media_Pause.png │ ├── Media_Play.imageset │ │ ├── Contents.json │ │ └── Media_Play.png │ ├── Messages.imageset │ │ ├── Contents.json │ │ ├── Messages.png │ │ ├── Messages@2x.png │ │ └── Messages@3x.png │ ├── Music.imageset │ │ ├── Contents.json │ │ ├── Music.png │ │ ├── Music@2x.png │ │ └── Music@3x.png │ ├── Phone.imageset │ │ ├── Contents.json │ │ ├── Phone.png │ │ ├── Phone@2x.png │ │ └── Phone@3x.png │ ├── Photos.imageset │ │ ├── Contents.json │ │ ├── Photos.png │ │ ├── Photos@2x.png │ │ └── Photos@3x.png │ ├── Settings.imageset │ │ ├── Contents.json │ │ ├── Settings.png │ │ ├── Settings@2x.png │ │ └── Settings@3x.png │ ├── User.imageset │ │ ├── Contents.json │ │ ├── User.png │ │ ├── User@2x.png │ │ └── User@3x.png │ ├── VideoChat.imageset │ │ ├── Contents.json │ │ ├── Videocamera.png │ │ ├── Videocamera@2x.png │ │ └── Videocamera@3x.png │ ├── Videos.imageset │ │ ├── Contents.json │ │ ├── Videos.png │ │ ├── Videos@2x.png │ │ └── Videos@3x.png │ ├── Voice_Record.imageset │ │ ├── Contents.json │ │ └── Voice_Record.png │ ├── Weather.imageset │ │ ├── Contents.json │ │ ├── Weather.png │ │ ├── Weather@2x.png │ │ └── Weather@3x.png │ ├── location.imageset │ │ ├── Contents.json │ │ ├── location.png │ │ ├── location@2x.png │ │ └── location@3x.png │ └── logout.imageset │ │ ├── Contents.json │ │ ├── logout.png │ │ ├── logout@2x.png │ │ └── logout@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ChatCell.swift ├── ChatCell.xib ├── ChatTableViewController.swift ├── Constants.swift ├── CustomPinAnnotationView.swift ├── CustomPinAnnotationView.xib ├── Extensions.swift ├── Info.plist ├── LocationChat-Bridging-Header.h ├── LocationChat.entitlements ├── PreSignInViewController.swift ├── Resources │ ├── AppState.swift │ ├── FTChatMessage │ │ ├── FTChatMessageCell │ │ │ ├── FTChatMessageBubbleItem │ │ │ │ ├── FTChatMessageBubbleAudioItem.swift │ │ │ │ ├── FTChatMessageBubbleImageItem.swift │ │ │ │ ├── FTChatMessageBubbleItem.swift │ │ │ │ ├── FTChatMessageBubbleLocationItem.swift │ │ │ │ ├── FTChatMessageBubbleTextItem.swift │ │ │ │ └── FTChatMessageBubbleVideoItem.swift │ │ │ ├── FTChatMessageCell.swift │ │ │ └── FTChatMessageDeliverStatusView.swift │ │ ├── FTChatMessageConfiguration.swift │ │ ├── FTChatMessageDataSource.swift │ │ ├── FTChatMessageDelegate.swift │ │ ├── FTChatMessageHeader │ │ │ └── FTChatMessageHeader.swift │ │ ├── FTChatMessageImageSize.swift │ │ ├── FTChatMessageInput │ │ │ ├── FTChatMessageAccessoryItem.swift │ │ │ ├── FTChatMessageAccessoryItem.xib │ │ │ ├── FTChatMessageAccessoryView.swift │ │ │ ├── FTChatMessageAccessoryView.xib │ │ │ ├── FTChatMessageInputView.swift │ │ │ ├── FTChatMessageInputView.xib │ │ │ ├── FTChatMessageRecorderView.swift │ │ │ └── FTChatMessageRecorderView.xib │ │ ├── FTChatMessageMarcos.swift │ │ ├── FTChatMessageModel.swift │ │ ├── FTChatMessageTableViewController+DataSource.swift │ │ ├── FTChatMessageTableViewController.swift │ │ └── FTChatMessageUserModel.swift │ ├── GoogleService-Info.plist │ └── MeasurementHelper.swift ├── SignUpViewController.swift └── ViewController.swift ├── LocationChatTests ├── Info.plist └── LocationChatTests.swift ├── LocationChatUITests ├── Info.plist └── LocationChatUITests.swift ├── Podfile ├── Podfile.lock ├── Pods ├── EasyTipView │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── EasyTipView.swift │ │ └── UIKitExtensions.swift ├── FTIndicator │ ├── FTIndicator │ │ ├── FTIndicator.h │ │ ├── FTIndicator.m │ │ ├── FTNotificationIndicator │ │ │ ├── FTNotificationIndicator.h │ │ │ └── FTNotificationIndicator.m │ │ ├── FTProgressIndicator │ │ │ ├── FTProgressIndicator.bundle │ │ │ │ ├── ft_failure.png │ │ │ │ ├── ft_failure_dark.png │ │ │ │ ├── ft_info.png │ │ │ │ ├── ft_info_dark.png │ │ │ │ ├── ft_success.png │ │ │ │ └── ft_success_dark.png │ │ │ ├── FTProgressIndicator.h │ │ │ └── FTProgressIndicator.m │ │ └── FTToastIndicator │ │ │ ├── FTToastIndicator.h │ │ │ └── FTToastIndicator.m │ ├── LICENSE │ └── README.md ├── Firebase │ ├── Core │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ └── frameworks │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics.h │ │ ├── FIRAnalyticsConfiguration.h │ │ ├── FIRApp.h │ │ ├── FIRConfiguration.h │ │ ├── FIREventNames.h │ │ ├── FIROptions.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ └── module.modulemap ├── FirebaseAuth │ ├── CHANGELOG.md │ ├── Frameworks │ │ └── frameworks │ │ │ └── FirebaseAuth.framework │ │ │ ├── FirebaseAuth │ │ │ ├── Headers │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIREmailPasswordAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRUser.h │ │ │ ├── FIRUserInfo.h │ │ │ └── FirebaseAuth.h │ │ │ └── Modules │ │ │ └── module.modulemap │ └── README.md ├── FirebaseCore │ └── Frameworks │ │ └── frameworks │ │ └── FirebaseCore.framework │ │ ├── FirebaseCore │ │ ├── Headers │ │ ├── FIRAnalyticsConfiguration.h │ │ ├── FIRApp.h │ │ ├── FIRConfiguration.h │ │ ├── FIROptions.h │ │ └── FirebaseCore.h │ │ └── Modules │ │ └── module.modulemap ├── FirebaseCrash │ ├── Frameworks │ │ └── frameworks │ │ │ └── FirebaseCrash.framework │ │ │ ├── FirebaseCrash │ │ │ ├── Headers │ │ │ ├── FIRCrashLog.h │ │ │ └── FirebaseCrash.h │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── README.md │ ├── batch-upload │ ├── dump_syms │ ├── extract-keys │ ├── upload-sym │ ├── upload-sym-util.bash │ └── upload-sym.sh ├── FirebaseDatabase │ └── Frameworks │ │ └── FirebaseDatabase.framework │ │ ├── FirebaseDatabase │ │ ├── Headers │ │ ├── FIRDataEventType.h │ │ ├── FIRDataSnapshot.h │ │ ├── FIRDatabase.h │ │ ├── FIRDatabaseQuery.h │ │ ├── FIRDatabaseReference.h │ │ ├── FIRMutableData.h │ │ ├── FIRServerValue.h │ │ ├── FIRTransactionResult.h │ │ └── FirebaseDatabase.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── NOTICE ├── FirebaseInstanceID │ ├── Frameworks │ │ └── frameworks │ │ │ └── FirebaseInstanceID.framework │ │ │ ├── FirebaseInstanceID │ │ │ ├── Headers │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ │ │ └── Modules │ │ │ └── module.modulemap │ └── Sources │ │ └── FIRInstanceID.h ├── FirebaseRemoteConfig │ ├── CHANGELOG │ ├── Frameworks │ │ └── frameworks │ │ │ └── FirebaseRemoteConfig.framework │ │ │ ├── FirebaseRemoteConfig │ │ │ ├── Headers │ │ │ ├── FIRRemoteConfig.h │ │ │ └── FirebaseRemoteConfig.h │ │ │ └── Modules │ │ │ └── module.modulemap │ └── README.md ├── FirebaseStorage │ └── Frameworks │ │ └── frameworks │ │ └── FirebaseStorage.framework │ │ ├── FirebaseStorage │ │ ├── Headers │ │ ├── FIRStorage.h │ │ ├── FIRStorageConstants.h │ │ ├── FIRStorageDownloadTask.h │ │ ├── FIRStorageMetadata.h │ │ ├── FIRStorageObservableTask.h │ │ ├── FIRStorageReference.h │ │ ├── FIRStorageTask.h │ │ ├── FIRStorageTaskSnapshot.h │ │ ├── FIRStorageUploadTask.h │ │ └── FirebaseStorage.h │ │ └── Modules │ │ └── module.modulemap ├── GoogleIPhoneUtilities │ └── Frameworks │ │ └── GoogleIPhoneUtilities.framework │ │ └── GoogleIPhoneUtilities ├── GoogleInterchangeUtilities │ └── Frameworks │ │ └── frameworks │ │ └── GoogleInterchangeUtilities.framework │ │ └── GoogleInterchangeUtilities ├── GoogleNetworkingUtilities │ └── Frameworks │ │ └── frameworks │ │ └── GoogleNetworkingUtilities.framework │ │ └── GoogleNetworkingUtilities ├── GoogleSymbolUtilities │ └── Frameworks │ │ └── frameworks │ │ └── GoogleSymbolUtilities.framework │ │ └── GoogleSymbolUtilities ├── GoogleUtilities │ └── Frameworks │ │ └── frameworks │ │ └── GoogleUtilities.framework │ │ └── GoogleUtilities ├── Headers │ ├── Private │ │ ├── Firebase │ │ │ └── Firebase.h │ │ └── FirebaseInstanceID │ │ │ └── FIRInstanceID.h │ └── Public │ │ ├── Firebase │ │ └── Firebase.h │ │ └── FirebaseInstanceID │ │ └── FIRInstanceID.h ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnimatedImageView.swift │ │ ├── Box.swift │ │ ├── CacheSerializer.swift │ │ ├── Filter.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImagePrefetcher.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageTransition.swift │ │ ├── ImageView+Kingfisher.swift │ │ ├── Indicator.swift │ │ ├── Kingfisher.h │ │ ├── Kingfisher.swift │ │ ├── KingfisherManager.swift │ │ ├── KingfisherOptionsInfo.swift │ │ ├── RequrstModifier.swift │ │ ├── Resource.swift │ │ ├── String+MD5.swift │ │ ├── ThreadHelper.swift │ │ └── UIButton+Kingfisher.swift ├── Local Podspecs │ └── PKHUD.podspec.json ├── Manifest.lock ├── PKHUD │ ├── LICENSE │ ├── PKHUD │ │ ├── FrameView.swift │ │ ├── HUD.swift │ │ ├── Images.xcassets │ │ │ ├── Contents.json │ │ │ ├── checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark.pdf │ │ │ ├── cross.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cross.pdf │ │ │ ├── progress_activity.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── progress.pdf │ │ │ └── progress_circular.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── progress_circular.pdf │ │ ├── PKHUD.h │ │ ├── PKHUD.swift │ │ ├── PKHUDAnimating.swift │ │ ├── PKHUDAnimation.swift │ │ ├── PKHUDAssets.swift │ │ ├── PKHUDErrorView.swift │ │ ├── PKHUDProgressView.swift │ │ ├── PKHUDRotatingImageView.swift │ │ ├── PKHUDSquareBaseView.swift │ │ ├── PKHUDSuccessView.swift │ │ ├── PKHUDSystemActivityIndicatorView.swift │ │ ├── PKHUDTextView.swift │ │ ├── PKHUDWideBaseView.swift │ │ ├── Window.swift │ │ └── WindowRootViewController.swift │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── sohambhattacharjee.xcuserdatad │ │ └── xcschemes │ │ ├── EasyTipView.xcscheme │ │ ├── FTIndicator.xcscheme │ │ ├── Kingfisher.xcscheme │ │ ├── PKHUD.xcscheme │ │ ├── Pods-LocationChat.xcscheme │ │ ├── Pods-LocationChatTests.xcscheme │ │ ├── Pods-LocationChatUITests.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── EasyTipView │ ├── EasyTipView-dummy.m │ ├── EasyTipView-prefix.pch │ ├── EasyTipView-umbrella.h │ ├── EasyTipView.modulemap │ ├── EasyTipView.xcconfig │ └── Info.plist │ ├── FTIndicator │ ├── FTIndicator-dummy.m │ ├── FTIndicator-prefix.pch │ ├── FTIndicator-umbrella.h │ ├── FTIndicator.modulemap │ ├── FTIndicator.xcconfig │ └── Info.plist │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.modulemap │ └── Kingfisher.xcconfig │ ├── PKHUD │ ├── Info.plist │ ├── PKHUD-dummy.m │ ├── PKHUD-prefix.pch │ ├── PKHUD-umbrella.h │ ├── PKHUD.modulemap │ └── PKHUD.xcconfig │ ├── Pods-LocationChat │ ├── Info.plist │ ├── Pods-LocationChat-acknowledgements.markdown │ ├── Pods-LocationChat-acknowledgements.plist │ ├── Pods-LocationChat-dummy.m │ ├── Pods-LocationChat-frameworks.sh │ ├── Pods-LocationChat-resources.sh │ ├── Pods-LocationChat-umbrella.h │ ├── Pods-LocationChat.debug.xcconfig │ ├── Pods-LocationChat.modulemap │ └── Pods-LocationChat.release.xcconfig │ ├── Pods-LocationChatTests │ ├── Info.plist │ ├── Pods-LocationChatTests-acknowledgements.markdown │ ├── Pods-LocationChatTests-acknowledgements.plist │ ├── Pods-LocationChatTests-dummy.m │ ├── Pods-LocationChatTests-frameworks.sh │ ├── Pods-LocationChatTests-resources.sh │ ├── Pods-LocationChatTests-umbrella.h │ ├── Pods-LocationChatTests.debug.xcconfig │ ├── Pods-LocationChatTests.modulemap │ └── Pods-LocationChatTests.release.xcconfig │ └── Pods-LocationChatUITests │ ├── Info.plist │ ├── Pods-LocationChatUITests-acknowledgements.markdown │ ├── Pods-LocationChatUITests-acknowledgements.plist │ ├── Pods-LocationChatUITests-dummy.m │ ├── Pods-LocationChatUITests-frameworks.sh │ ├── Pods-LocationChatUITests-resources.sh │ ├── Pods-LocationChatUITests-umbrella.h │ ├── Pods-LocationChatUITests.debug.xcconfig │ ├── Pods-LocationChatUITests.modulemap │ └── Pods-LocationChatUITests.release.xcconfig ├── README.md ├── Simulator Screen Shot 25-Oct-2016, 10.58.44 PM.png └── contributors.txt /LocationChat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LocationChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LocationChat.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/LocationChat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/LocationChat.xcscheme -------------------------------------------------------------------------------- /LocationChat.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LocationChat.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LocationChat.xcworkspace/xcuserdata/sohambhattacharjee.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat.xcworkspace/xcuserdata/sohambhattacharjee.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LocationChat/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/AppDelegate.swift -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Alarm.imageset/Alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Alarm.imageset/Alarm.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Alarm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Alarm.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Camera.imageset/Camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Camera.imageset/Camera.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Camera.imageset/Camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Camera.imageset/Camera@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Camera.imageset/Camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Camera.imageset/Camera@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Camera.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Contacts.imageset/Contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Contacts.imageset/Contacts.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Contacts.imageset/Contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Contacts.imageset/Contacts@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Contacts.imageset/Contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Contacts.imageset/Contacts@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Contacts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Contacts.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/FT_Add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/FT_Add.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/FT_Add.imageset/FT_Add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/FT_Add.imageset/FT_Add@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/FT_Error.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/FT_Error.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/FT_Error.imageset/FT_Error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/FT_Error.imageset/FT_Error@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/FT_Record.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/FT_Record.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/FT_Record.imageset/FT_Record@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/FT_Record.imageset/FT_Record@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Mail.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Mail.imageset/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Mail.imageset/Mail.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Mail.imageset/Mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Mail.imageset/Mail@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Mail.imageset/Mail@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Mail.imageset/Mail@3x-1.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Media_Pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Media_Pause.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Media_Pause.imageset/Media_Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Media_Pause.imageset/Media_Pause.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Media_Play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Media_Play.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Media_Play.imageset/Media_Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Media_Play.imageset/Media_Play.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Messages.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Messages.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Messages.imageset/Messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Messages.imageset/Messages.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Messages.imageset/Messages@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Messages.imageset/Messages@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Messages.imageset/Messages@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Messages.imageset/Messages@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Music.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Music.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Music.imageset/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Music.imageset/Music.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Music.imageset/Music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Music.imageset/Music@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Music.imageset/Music@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Music.imageset/Music@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Phone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Phone.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Phone.imageset/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Phone.imageset/Phone.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Phone.imageset/Phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Phone.imageset/Phone@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Phone.imageset/Phone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Phone.imageset/Phone@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Photos.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Photos.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Photos.imageset/Photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Photos.imageset/Photos.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Photos.imageset/Photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Photos.imageset/Photos@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Photos.imageset/Photos@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Photos.imageset/Photos@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Settings.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Settings.imageset/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Settings.imageset/Settings.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Settings.imageset/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Settings.imageset/Settings@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Settings.imageset/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Settings.imageset/Settings@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/User.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/User.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/User.imageset/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/User.imageset/User.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/User.imageset/User@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/User.imageset/User@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/User.imageset/User@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/User.imageset/User@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/VideoChat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/VideoChat.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/VideoChat.imageset/Videocamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/VideoChat.imageset/Videocamera.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/VideoChat.imageset/Videocamera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/VideoChat.imageset/Videocamera@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/VideoChat.imageset/Videocamera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/VideoChat.imageset/Videocamera@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Videos.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Videos.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Videos.imageset/Videos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Videos.imageset/Videos.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Videos.imageset/Videos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Videos.imageset/Videos@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Videos.imageset/Videos@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Videos.imageset/Videos@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Voice_Record.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Voice_Record.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Voice_Record.imageset/Voice_Record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Voice_Record.imageset/Voice_Record.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Weather.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Weather.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Weather.imageset/Weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Weather.imageset/Weather.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Weather.imageset/Weather@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Weather.imageset/Weather@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/Weather.imageset/Weather@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/Weather.imageset/Weather@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/location.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/location.imageset/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/location.imageset/location.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/location.imageset/location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/location.imageset/location@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/location.imageset/location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/location.imageset/location@3x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/logout.imageset/Contents.json -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/logout.imageset/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/logout.imageset/logout.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/logout.imageset/logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/logout.imageset/logout@2x.png -------------------------------------------------------------------------------- /LocationChat/Assets.xcassets/logout.imageset/logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Assets.xcassets/logout.imageset/logout@3x.png -------------------------------------------------------------------------------- /LocationChat/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LocationChat/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LocationChat/ChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/ChatCell.swift -------------------------------------------------------------------------------- /LocationChat/ChatCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/ChatCell.xib -------------------------------------------------------------------------------- /LocationChat/ChatTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/ChatTableViewController.swift -------------------------------------------------------------------------------- /LocationChat/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Constants.swift -------------------------------------------------------------------------------- /LocationChat/CustomPinAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/CustomPinAnnotationView.swift -------------------------------------------------------------------------------- /LocationChat/CustomPinAnnotationView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/CustomPinAnnotationView.xib -------------------------------------------------------------------------------- /LocationChat/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Extensions.swift -------------------------------------------------------------------------------- /LocationChat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Info.plist -------------------------------------------------------------------------------- /LocationChat/LocationChat-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/LocationChat-Bridging-Header.h -------------------------------------------------------------------------------- /LocationChat/LocationChat.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/LocationChat.entitlements -------------------------------------------------------------------------------- /LocationChat/PreSignInViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/PreSignInViewController.swift -------------------------------------------------------------------------------- /LocationChat/Resources/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/AppState.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleAudioItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleAudioItem.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleImageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleImageItem.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleItem.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleLocationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleLocationItem.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleTextItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleTextItem.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleVideoItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageBubbleItem/FTChatMessageBubbleVideoItem.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageCell.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageDeliverStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageCell/FTChatMessageDeliverStatusView.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageConfiguration.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageDataSource.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageDelegate.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageHeader/FTChatMessageHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageHeader/FTChatMessageHeader.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageImageSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageImageSize.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryItem.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryItem.xib -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryView.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageAccessoryView.xib -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageInputView.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageInputView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageInputView.xib -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageRecorderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageRecorderView.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageRecorderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageInput/FTChatMessageRecorderView.xib -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageMarcos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageMarcos.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageModel.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageTableViewController+DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageTableViewController+DataSource.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageTableViewController.swift -------------------------------------------------------------------------------- /LocationChat/Resources/FTChatMessage/FTChatMessageUserModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/FTChatMessage/FTChatMessageUserModel.swift -------------------------------------------------------------------------------- /LocationChat/Resources/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/GoogleService-Info.plist -------------------------------------------------------------------------------- /LocationChat/Resources/MeasurementHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/Resources/MeasurementHelper.swift -------------------------------------------------------------------------------- /LocationChat/SignUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/SignUpViewController.swift -------------------------------------------------------------------------------- /LocationChat/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChat/ViewController.swift -------------------------------------------------------------------------------- /LocationChatTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChatTests/Info.plist -------------------------------------------------------------------------------- /LocationChatTests/LocationChatTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChatTests/LocationChatTests.swift -------------------------------------------------------------------------------- /LocationChatUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChatUITests/Info.plist -------------------------------------------------------------------------------- /LocationChatUITests/LocationChatUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/LocationChatUITests/LocationChatUITests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/EasyTipView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/EasyTipView/LICENSE -------------------------------------------------------------------------------- /Pods/EasyTipView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/EasyTipView/README.md -------------------------------------------------------------------------------- /Pods/EasyTipView/Source/EasyTipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/EasyTipView/Source/EasyTipView.swift -------------------------------------------------------------------------------- /Pods/EasyTipView/Source/UIKitExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/EasyTipView/Source/UIKitExtensions.swift -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTIndicator.h -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTIndicator.m -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTNotificationIndicator/FTNotificationIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTNotificationIndicator/FTNotificationIndicator.h -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTNotificationIndicator/FTNotificationIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTNotificationIndicator/FTNotificationIndicator.m -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure.png -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure_dark.png -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info.png -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info_dark.png -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success.png -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success_dark.png -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.h -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTProgressIndicator/FTProgressIndicator.m -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTToastIndicator/FTToastIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTToastIndicator/FTToastIndicator.h -------------------------------------------------------------------------------- /Pods/FTIndicator/FTIndicator/FTToastIndicator/FTToastIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/FTIndicator/FTToastIndicator/FTToastIndicator.m -------------------------------------------------------------------------------- /Pods/FTIndicator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/LICENSE -------------------------------------------------------------------------------- /Pods/FTIndicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FTIndicator/README.md -------------------------------------------------------------------------------- /Pods/Firebase/Core/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Firebase/Core/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Firebase/Core/Sources/module.modulemap -------------------------------------------------------------------------------- /Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Firebase/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseAuth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/CHANGELOG.md -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/FirebaseAuth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/FirebaseAuth -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRAuth.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRAuthCredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRAuthCredential.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRAuthErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRAuthErrors.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIREmailPasswordAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIREmailPasswordAuthProvider.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRFacebookAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRFacebookAuthProvider.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRGitHubAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRGitHubAuthProvider.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRGoogleAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRGoogleAuthProvider.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRTwitterAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRTwitterAuthProvider.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRUser.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRUserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FIRUserInfo.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FirebaseAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Headers/FirebaseAuth.h -------------------------------------------------------------------------------- /Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/Frameworks/frameworks/FirebaseAuth.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseAuth/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/FirebaseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/FirebaseCore -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRApp.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIROptions.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FirebaseCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FirebaseCore.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseCrash/Frameworks/frameworks/FirebaseCrash.framework/FirebaseCrash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/Frameworks/frameworks/FirebaseCrash.framework/FirebaseCrash -------------------------------------------------------------------------------- /Pods/FirebaseCrash/Frameworks/frameworks/FirebaseCrash.framework/Headers/FIRCrashLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/Frameworks/frameworks/FirebaseCrash.framework/Headers/FIRCrashLog.h -------------------------------------------------------------------------------- /Pods/FirebaseCrash/Frameworks/frameworks/FirebaseCrash.framework/Headers/FirebaseCrash.h: -------------------------------------------------------------------------------- 1 | #import "FIRCrashLog.h" 2 | -------------------------------------------------------------------------------- /Pods/FirebaseCrash/Frameworks/frameworks/FirebaseCrash.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/Frameworks/frameworks/FirebaseCrash.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseCrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCrash/batch-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/batch-upload -------------------------------------------------------------------------------- /Pods/FirebaseCrash/dump_syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/dump_syms -------------------------------------------------------------------------------- /Pods/FirebaseCrash/extract-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/extract-keys -------------------------------------------------------------------------------- /Pods/FirebaseCrash/upload-sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/upload-sym -------------------------------------------------------------------------------- /Pods/FirebaseCrash/upload-sym-util.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/upload-sym-util.bash -------------------------------------------------------------------------------- /Pods/FirebaseCrash/upload-sym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseCrash/upload-sym.sh -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/FirebaseDatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/FirebaseDatabase -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Info.plist -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/NOTICE -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/FirebaseInstanceID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/FirebaseInstanceID -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Sources/FIRInstanceID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseInstanceID/Sources/FIRInstanceID.h -------------------------------------------------------------------------------- /Pods/FirebaseRemoteConfig/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseRemoteConfig/CHANGELOG -------------------------------------------------------------------------------- /Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/FirebaseRemoteConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/FirebaseRemoteConfig -------------------------------------------------------------------------------- /Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/Headers/FIRRemoteConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/Headers/FIRRemoteConfig.h -------------------------------------------------------------------------------- /Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/Headers/FirebaseRemoteConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/Headers/FirebaseRemoteConfig.h -------------------------------------------------------------------------------- /Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseRemoteConfig/Frameworks/frameworks/FirebaseRemoteConfig.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseRemoteConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseRemoteConfig/README.md -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/FirebaseStorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/FirebaseStorage -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorage.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h -------------------------------------------------------------------------------- /Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/GoogleIPhoneUtilities/Frameworks/GoogleIPhoneUtilities.framework/GoogleIPhoneUtilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/GoogleIPhoneUtilities/Frameworks/GoogleIPhoneUtilities.framework/GoogleIPhoneUtilities -------------------------------------------------------------------------------- /Pods/GoogleInterchangeUtilities/Frameworks/frameworks/GoogleInterchangeUtilities.framework/GoogleInterchangeUtilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/GoogleInterchangeUtilities/Frameworks/frameworks/GoogleInterchangeUtilities.framework/GoogleInterchangeUtilities -------------------------------------------------------------------------------- /Pods/GoogleNetworkingUtilities/Frameworks/frameworks/GoogleNetworkingUtilities.framework/GoogleNetworkingUtilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/GoogleNetworkingUtilities/Frameworks/frameworks/GoogleNetworkingUtilities.framework/GoogleNetworkingUtilities -------------------------------------------------------------------------------- /Pods/GoogleSymbolUtilities/Frameworks/frameworks/GoogleSymbolUtilities.framework/GoogleSymbolUtilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/GoogleSymbolUtilities/Frameworks/frameworks/GoogleSymbolUtilities.framework/GoogleSymbolUtilities -------------------------------------------------------------------------------- /Pods/GoogleUtilities/Frameworks/frameworks/GoogleUtilities.framework/GoogleUtilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/GoogleUtilities/Frameworks/frameworks/GoogleUtilities.framework/GoogleUtilities -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseInstanceID/FIRInstanceID.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseInstanceID/Sources/FIRInstanceID.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/Core/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseInstanceID/FIRInstanceID.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseInstanceID/Sources/FIRInstanceID.h -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/AnimatedImageView.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/CacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/ImageCache.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/ImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/ImageTransition.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/Indicator.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/KingfisherManager.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/RequrstModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/RequrstModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/Resource.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/String+MD5.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ThreadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/ThreadHelper.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Local Podspecs/PKHUD.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Local Podspecs/PKHUD.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/PKHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/LICENSE -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/FrameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/FrameView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/HUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/HUD.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/checkmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/checkmark.pdf -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/cross.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/cross.pdf -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/progress_activity.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/progress_activity.imageset/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/progress_activity.imageset/progress.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/progress_activity.imageset/progress.pdf -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/progress_circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/progress_circular.imageset/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/progress_circular.imageset/progress_circular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/progress_circular.imageset/progress_circular.pdf -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUD.h -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUD.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDAnimating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDAnimating.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDAnimation.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDAssets.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDErrorView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDProgressView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDRotatingImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDRotatingImageView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDSquareBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDSquareBaseView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDSuccessView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDSuccessView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDSystemActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDSystemActivityIndicatorView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDTextView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDWideBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/PKHUDWideBaseView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/Window.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/WindowRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/PKHUD/WindowRootViewController.swift -------------------------------------------------------------------------------- /Pods/PKHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/PKHUD/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/EasyTipView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/EasyTipView.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/FTIndicator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/FTIndicator.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Kingfisher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Kingfisher.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/PKHUD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/PKHUD.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Pods-LocationChat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Pods-LocationChat.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Pods-LocationChatTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Pods-LocationChatTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Pods-LocationChatUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/Pods-LocationChatUITests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Pods.xcodeproj/xcuserdata/sohambhattacharjee.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/EasyTipView/EasyTipView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/EasyTipView/EasyTipView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/EasyTipView/EasyTipView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/EasyTipView/EasyTipView-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/EasyTipView/EasyTipView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/EasyTipView/EasyTipView-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/EasyTipView/EasyTipView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/EasyTipView/EasyTipView.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/EasyTipView/EasyTipView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/EasyTipView/EasyTipView.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/EasyTipView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/EasyTipView/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FTIndicator/FTIndicator-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/FTIndicator/FTIndicator-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FTIndicator/FTIndicator-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/FTIndicator/FTIndicator-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FTIndicator/FTIndicator-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/FTIndicator/FTIndicator-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FTIndicator/FTIndicator.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/FTIndicator/FTIndicator.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FTIndicator/FTIndicator.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/FTIndicator/FTIndicator.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FTIndicator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/FTIndicator/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Kingfisher/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/PKHUD/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/PKHUD/PKHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/PKHUD/PKHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/PKHUD/PKHUD-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/PKHUD/PKHUD.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/PKHUD/PKHUD.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChat/Pods-LocationChat.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatTests/Pods-LocationChatTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Pods/Target Support Files/Pods-LocationChatUITests/Pods-LocationChatUITests.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/README.md -------------------------------------------------------------------------------- /Simulator Screen Shot 25-Oct-2016, 10.58.44 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/Simulator Screen Shot 25-Oct-2016, 10.58.44 PM.png -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohamb1390/FirebaseChat/HEAD/contributors.txt --------------------------------------------------------------------------------