├── Podfile ├── Podfile.lock ├── Pods ├── Appirater │ ├── Appirater.h │ ├── Appirater.m │ ├── AppiraterDelegate.h │ ├── README.md │ ├── ar.lproj │ │ └── AppiraterLocalizable.strings │ ├── ca.lproj │ │ └── AppiraterLocalizable.strings │ ├── cs.lproj │ │ └── AppiraterLocalizable.strings │ ├── da.lproj │ │ └── AppiraterLocalizable.strings │ ├── de.lproj │ │ └── AppiraterLocalizable.strings │ ├── el.lproj │ │ └── AppiraterLocalizable.strings │ ├── en.lproj │ │ └── AppiraterLocalizable.strings │ ├── es.lproj │ │ └── AppiraterLocalizable.strings │ ├── fa.lproj │ │ └── AppiraterLocalizable.strings │ ├── fi.lproj │ │ └── AppiraterLocalizable.strings │ ├── fr.lproj │ │ └── AppiraterLocalizable.strings │ ├── he.lproj │ │ └── AppiraterLocalizable.strings │ ├── hu.lproj │ │ └── AppiraterLocalizable.strings │ ├── hy.lproj │ │ └── AppiraterLocalizable.strings │ ├── id.lproj │ │ └── AppiraterLocalizable.strings │ ├── it.lproj │ │ └── AppiraterLocalizable.strings │ ├── ja.lproj │ │ └── AppiraterLocalizable.strings │ ├── ko.lproj │ │ └── AppiraterLocalizable.strings │ ├── ms.lproj │ │ └── AppiraterLocalizable.strings │ ├── nb.lproj │ │ └── AppiraterLocalizable.strings │ ├── nl.lproj │ │ └── AppiraterLocalizable.strings │ ├── pl.lproj │ │ └── AppiraterLocalizable.strings │ ├── pt-BR.lproj │ │ └── AppiraterLocalizable.strings │ ├── pt.lproj │ │ └── AppiraterLocalizable.strings │ ├── ro.lproj │ │ └── AppiraterLocalizable.strings │ ├── ru.lproj │ │ └── AppiraterLocalizable.strings │ ├── sk.lproj │ │ └── AppiraterLocalizable.strings │ ├── sv.lproj │ │ └── AppiraterLocalizable.strings │ ├── th.lproj │ │ └── AppiraterLocalizable.strings │ ├── tr.lproj │ │ └── AppiraterLocalizable.strings │ ├── uk.lproj │ │ └── AppiraterLocalizable.strings │ ├── vi.lproj │ │ └── AppiraterLocalizable.strings │ ├── zh-Hans.lproj │ │ └── AppiraterLocalizable.strings │ └── zh-Hant.lproj │ │ └── AppiraterLocalizable.strings ├── Firebase │ ├── CoreOnly │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ ├── LICENSE │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ └── FirebaseAnalytics.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64_armv7 │ │ └── FirebaseAnalytics.framework │ │ │ ├── FirebaseAnalytics │ │ │ ├── Headers │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ ├── FIRAnalytics+Consent.h │ │ │ ├── FIRAnalytics.h │ │ │ ├── FIREventNames.h │ │ │ ├── FIRParameterNames.h │ │ │ ├── FIRUserPropertyNames.h │ │ │ └── FirebaseAnalytics.h │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ └── module.modulemap │ │ └── ios-arm64_i386_x86_64-simulator │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics+Consent.h │ │ ├── FIRAnalytics.h │ │ ├── FIREventNames.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ ├── Info.plist │ │ └── Modules │ │ └── module.modulemap ├── FirebaseCore │ ├── FirebaseCore │ │ └── Sources │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRComponent.m │ │ │ ├── FIRComponentContainer.m │ │ │ ├── FIRComponentContainerInternal.h │ │ │ ├── FIRComponentType.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRConfigurationInternal.h │ │ │ ├── FIRCoreDiagnosticsConnector.m │ │ │ ├── FIRDependency.m │ │ │ ├── FIRDiagnosticsData.h │ │ │ ├── FIRDiagnosticsData.m │ │ │ ├── FIRFirebaseUserAgent.h │ │ │ ├── FIRFirebaseUserAgent.m │ │ │ ├── FIRHeartbeatInfo.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ ├── FIROptionsInternal.h │ │ │ └── FirebaseCoreInternal.h │ │ │ └── Public │ │ │ └── FirebaseCore │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ ├── FIRVersion.h │ │ │ └── FirebaseCore.h │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseCoreDiagnostics │ ├── Firebase │ │ └── CoreDiagnostics │ │ │ └── FIRCDLibrary │ │ │ ├── FIRCoreDiagnostics.m │ │ │ ├── Protogen │ │ │ └── nanopb │ │ │ │ ├── firebasecore.nanopb.c │ │ │ │ └── firebasecore.nanopb.h │ │ │ └── Public │ │ │ └── FIRCoreDiagnostics.h │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md ├── FirebaseInstallations │ ├── FirebaseCore │ │ └── Sources │ │ │ └── Private │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ ├── FIROptionsInternal.h │ │ │ └── FirebaseCoreInternal.h │ ├── FirebaseInstallations │ │ └── Source │ │ │ └── Library │ │ │ ├── Errors │ │ │ ├── FIRInstallationsErrorUtil.h │ │ │ ├── FIRInstallationsErrorUtil.m │ │ │ ├── FIRInstallationsHTTPError.h │ │ │ └── FIRInstallationsHTTPError.m │ │ │ ├── FIRInstallations.m │ │ │ ├── FIRInstallationsAuthTokenResult.m │ │ │ ├── FIRInstallationsAuthTokenResultInternal.h │ │ │ ├── FIRInstallationsItem.h │ │ │ ├── FIRInstallationsItem.m │ │ │ ├── FIRInstallationsLogger.h │ │ │ ├── FIRInstallationsLogger.m │ │ │ ├── IIDMigration │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ ├── InstallationsAPI │ │ │ ├── FIRInstallationsAPIService.h │ │ │ ├── FIRInstallationsAPIService.m │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ ├── InstallationsIDController │ │ │ ├── FIRCurrentDateProvider.h │ │ │ ├── FIRCurrentDateProvider.m │ │ │ ├── FIRInstallationsBackoffController.h │ │ │ ├── FIRInstallationsBackoffController.m │ │ │ ├── FIRInstallationsIDController.h │ │ │ ├── FIRInstallationsIDController.m │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ └── FIRInstallationsStatus.h │ │ │ ├── InstallationsStore │ │ │ ├── FIRInstallationsStore.h │ │ │ ├── FIRInstallationsStore.m │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ └── FIRInstallationsStoredItem.m │ │ │ ├── Private │ │ │ └── FirebaseInstallationsInternal.h │ │ │ └── Public │ │ │ └── FirebaseInstallations │ │ │ ├── FIRInstallations.h │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ ├── FIRInstallationsErrors.h │ │ │ └── FirebaseInstallations.h │ ├── LICENSE │ └── README.md ├── GoogleAppMeasurement │ └── Frameworks │ │ └── GoogleAppMeasurement.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64_armv7 │ │ └── GoogleAppMeasurement.framework │ │ │ ├── GoogleAppMeasurement │ │ │ ├── Info.plist │ │ │ └── Modules │ │ │ └── module.modulemap │ │ └── ios-arm64_i386_x86_64-simulator │ │ └── GoogleAppMeasurement.framework │ │ ├── GoogleAppMeasurement │ │ ├── Info.plist │ │ └── Modules │ │ └── module.modulemap ├── GoogleDataTransport │ ├── GoogleDataTransport │ │ ├── GDTCCTLibrary │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ ├── GDTCCTUploadOperation.m │ │ │ ├── GDTCCTUploader.m │ │ │ ├── GDTCOREvent+GDTCCTSupport.m │ │ │ ├── Private │ │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ │ ├── GDTCCTUploadOperation.h │ │ │ │ └── GDTCCTUploader.h │ │ │ ├── Protogen │ │ │ │ └── nanopb │ │ │ │ │ ├── cct.nanopb.c │ │ │ │ │ └── cct.nanopb.h │ │ │ └── Public │ │ │ │ └── GDTCOREvent+GDTCCTSupport.h │ │ └── GDTCORLibrary │ │ │ ├── GDTCORAssert.m │ │ │ ├── GDTCORClock.m │ │ │ ├── GDTCORConsoleLogger.m │ │ │ ├── GDTCORDirectorySizeTracker.m │ │ │ ├── GDTCOREndpoints.m │ │ │ ├── GDTCOREvent.m │ │ │ ├── GDTCORFlatFileStorage+Promises.m │ │ │ ├── GDTCORFlatFileStorage.m │ │ │ ├── GDTCORLifecycle.m │ │ │ ├── GDTCORPlatform.m │ │ │ ├── GDTCORReachability.m │ │ │ ├── GDTCORRegistrar.m │ │ │ ├── GDTCORStorageEventSelector.m │ │ │ ├── GDTCORTransformer.m │ │ │ ├── GDTCORTransport.m │ │ │ ├── GDTCORUploadBatch.m │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ ├── Internal │ │ │ ├── GDTCORAssert.h │ │ │ ├── GDTCORDirectorySizeTracker.h │ │ │ ├── GDTCORLifecycle.h │ │ │ ├── GDTCORPlatform.h │ │ │ ├── GDTCORReachability.h │ │ │ ├── GDTCORRegistrar.h │ │ │ ├── GDTCORStorageEventSelector.h │ │ │ ├── GDTCORStorageProtocol.h │ │ │ └── GDTCORUploader.h │ │ │ ├── Private │ │ │ ├── GDTCOREndpoints_Private.h │ │ │ ├── GDTCOREvent_Private.h │ │ │ ├── GDTCORFlatFileStorage+Promises.h │ │ │ ├── GDTCORFlatFileStorage.h │ │ │ ├── GDTCORReachability_Private.h │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ ├── GDTCORTransformer.h │ │ │ ├── GDTCORTransformer_Private.h │ │ │ ├── GDTCORTransport_Private.h │ │ │ ├── GDTCORUploadBatch.h │ │ │ └── GDTCORUploadCoordinator.h │ │ │ └── Public │ │ │ └── GoogleDataTransport │ │ │ ├── GDTCORClock.h │ │ │ ├── GDTCORConsoleLogger.h │ │ │ ├── GDTCOREndpoints.h │ │ │ ├── GDTCOREvent.h │ │ │ ├── GDTCOREventDataObject.h │ │ │ ├── GDTCOREventTransformer.h │ │ │ ├── GDTCORTargets.h │ │ │ ├── GDTCORTransport.h │ │ │ └── GoogleDataTransport.h │ ├── LICENSE │ └── README.md ├── GoogleUtilities │ ├── GoogleUtilities │ │ ├── AppDelegateSwizzler │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ ├── GULAppDelegateSwizzler_Private.h │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ ├── GULApplication.h │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ ├── Common │ │ │ └── GULLoggerCodes.h │ │ ├── Environment │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ ├── GULHeartbeatDateStorageUserDefaults.m │ │ │ ├── GULSecureCoding.m │ │ │ ├── Public │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ │ ├── GULHeartbeatDateStorable.h │ │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ │ ├── GULHeartbeatDateStorageUserDefaults.h │ │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ │ ├── GULSecureCoding.h │ │ │ │ │ ├── GULURLSessionDataResponse.h │ │ │ │ │ └── NSURLSession+GULPromises.h │ │ │ ├── SecureStorage │ │ │ │ ├── GULKeychainStorage.m │ │ │ │ └── GULKeychainUtils.m │ │ │ ├── URLSessionPromiseWrapper │ │ │ │ ├── GULURLSessionDataResponse.m │ │ │ │ └── NSURLSession+GULPromises.m │ │ │ └── third_party │ │ │ │ └── GULAppEnvironmentUtil.m │ │ ├── Logger │ │ │ ├── GULLogger.m │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ ├── GULLogger.h │ │ │ │ └── GULLoggerLevel.h │ │ ├── MethodSwizzler │ │ │ ├── GULSwizzler.m │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ └── GULSwizzler.h │ │ ├── NSData+zlib │ │ │ ├── GULNSData+zlib.m │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ └── GULNSData+zlib.h │ │ ├── Network │ │ │ ├── GULMutableDictionary.m │ │ │ ├── GULNetwork.m │ │ │ ├── GULNetworkConstants.m │ │ │ ├── GULNetworkInternal.h │ │ │ ├── GULNetworkURLSession.m │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ ├── GULNetwork.h │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ └── GULNetworkURLSession.h │ │ ├── Reachability │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ ├── GULReachabilityChecker.m │ │ │ ├── GULReachabilityMessageCode.h │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ └── GULReachabilityChecker.h │ │ └── UserDefaults │ │ │ ├── GULUserDefaults.m │ │ │ └── Public │ │ │ └── GoogleUtilities │ │ │ └── GULUserDefaults.h │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ └── Firebase │ │ │ └── Firebase.h │ └── Public │ │ └── Firebase │ │ └── Firebase.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── afrazsiddiqui.xcuserdatad │ │ └── xcschemes │ │ ├── Appirater-Appirater.xcscheme │ │ ├── Appirater.xcscheme │ │ ├── Firebase.xcscheme │ │ ├── FirebaseAnalytics.xcscheme │ │ ├── FirebaseCore.xcscheme │ │ ├── FirebaseCoreDiagnostics.xcscheme │ │ ├── FirebaseInstallations.xcscheme │ │ ├── GoogleAppMeasurement.xcscheme │ │ ├── GoogleDataTransport.xcscheme │ │ ├── GoogleUtilities.xcscheme │ │ ├── Pods-Spotify.xcscheme │ │ ├── PromisesObjC.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── nanopb.xcscheme │ │ └── xcschememanagement.plist ├── PromisesObjC │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── FBLPromises │ │ ├── FBLPromise+All.m │ │ ├── FBLPromise+Always.m │ │ ├── FBLPromise+Any.m │ │ ├── FBLPromise+Async.m │ │ ├── FBLPromise+Await.m │ │ ├── FBLPromise+Catch.m │ │ ├── FBLPromise+Delay.m │ │ ├── FBLPromise+Do.m │ │ ├── FBLPromise+Race.m │ │ ├── FBLPromise+Recover.m │ │ ├── FBLPromise+Reduce.m │ │ ├── FBLPromise+Retry.m │ │ ├── FBLPromise+Testing.m │ │ ├── FBLPromise+Then.m │ │ ├── FBLPromise+Timeout.m │ │ ├── FBLPromise+Validate.m │ │ ├── FBLPromise+Wrap.m │ │ ├── FBLPromise.m │ │ ├── FBLPromiseError.m │ │ └── include │ │ ├── FBLPromise+All.h │ │ ├── FBLPromise+Always.h │ │ ├── FBLPromise+Any.h │ │ ├── FBLPromise+Async.h │ │ ├── FBLPromise+Await.h │ │ ├── FBLPromise+Catch.h │ │ ├── FBLPromise+Delay.h │ │ ├── FBLPromise+Do.h │ │ ├── FBLPromise+Race.h │ │ ├── FBLPromise+Recover.h │ │ ├── FBLPromise+Reduce.h │ │ ├── FBLPromise+Retry.h │ │ ├── FBLPromise+Testing.h │ │ ├── FBLPromise+Then.h │ │ ├── FBLPromise+Timeout.h │ │ ├── FBLPromise+Validate.h │ │ ├── FBLPromise+Wrap.h │ │ ├── FBLPromise.h │ │ ├── FBLPromiseError.h │ │ ├── FBLPromisePrivate.h │ │ └── FBLPromises.h ├── SDWebImage │ ├── LICENSE │ ├── README.md │ ├── SDWebImage │ │ ├── Core │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSButton+WebCache.m │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── NSImage+Compatibility.h │ │ │ ├── NSImage+Compatibility.m │ │ │ ├── SDAnimatedImage.h │ │ │ ├── SDAnimatedImage.m │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageRep.m │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ ├── SDAnimatedImageView.h │ │ │ ├── SDAnimatedImageView.m │ │ │ ├── SDDiskCache.h │ │ │ ├── SDDiskCache.m │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ ├── SDImageAPNGCoder.h │ │ │ ├── SDImageAPNGCoder.m │ │ │ ├── SDImageAWebPCoder.h │ │ │ ├── SDImageAWebPCoder.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheConfig.m │ │ │ ├── SDImageCacheDefine.h │ │ │ ├── SDImageCacheDefine.m │ │ │ ├── SDImageCachesManager.h │ │ │ ├── SDImageCachesManager.m │ │ │ ├── SDImageCoder.h │ │ │ ├── SDImageCoder.m │ │ │ ├── SDImageCoderHelper.h │ │ │ ├── SDImageCoderHelper.m │ │ │ ├── SDImageCodersManager.h │ │ │ ├── SDImageCodersManager.m │ │ │ ├── SDImageFrame.h │ │ │ ├── SDImageFrame.m │ │ │ ├── SDImageGIFCoder.h │ │ │ ├── SDImageGIFCoder.m │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageGraphics.m │ │ │ ├── SDImageHEICCoder.h │ │ │ ├── SDImageHEICCoder.m │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ ├── SDImageIOCoder.h │ │ │ ├── SDImageIOCoder.m │ │ │ ├── SDImageLoader.h │ │ │ ├── SDImageLoader.m │ │ │ ├── SDImageLoadersManager.h │ │ │ ├── SDImageLoadersManager.m │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDImageTransformer.m │ │ │ ├── SDMemoryCache.h │ │ │ ├── SDMemoryCache.m │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDefine.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageError.m │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageIndicator.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImageOperation.m │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransition.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+ForceDecode.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+Metadata.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImage+Transform.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCache.h │ │ │ ├── UIView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ │ └── Private │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ ├── SDAssociatedObject.h │ │ │ ├── SDAssociatedObject.m │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDAsyncBlockOperation.m │ │ │ ├── SDDeviceHelper.h │ │ │ ├── SDDeviceHelper.m │ │ │ ├── SDDisplayLink.h │ │ │ ├── SDDisplayLink.m │ │ │ ├── SDFileAttributeHelper.h │ │ │ ├── SDFileAttributeHelper.m │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageAssetManager.m │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+SDHexString.h │ │ │ └── UIColor+SDHexString.m │ └── WebImage │ │ └── SDWebImage.h ├── Target Support Files │ ├── Appirater │ │ ├── Appirater-Info.plist │ │ ├── Appirater-dummy.m │ │ ├── Appirater-prefix.pch │ │ ├── Appirater-umbrella.h │ │ ├── Appirater.debug.xcconfig │ │ ├── Appirater.modulemap │ │ ├── Appirater.release.xcconfig │ │ └── ResourceBundle-Appirater-Appirater-Info.plist │ ├── Firebase │ │ ├── Firebase.debug.xcconfig │ │ └── Firebase.release.xcconfig │ ├── FirebaseAnalytics │ │ ├── FirebaseAnalytics-xcframeworks-input-files.xcfilelist │ │ ├── FirebaseAnalytics-xcframeworks-output-files.xcfilelist │ │ ├── FirebaseAnalytics-xcframeworks.sh │ │ ├── FirebaseAnalytics.debug.xcconfig │ │ └── FirebaseAnalytics.release.xcconfig │ ├── FirebaseCore │ │ ├── FirebaseCore-Info.plist │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.debug.xcconfig │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.release.xcconfig │ ├── FirebaseCoreDiagnostics │ │ ├── FirebaseCoreDiagnostics-Info.plist │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ ├── FirebaseCoreDiagnostics-umbrella.h │ │ ├── FirebaseCoreDiagnostics.debug.xcconfig │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ └── FirebaseCoreDiagnostics.release.xcconfig │ ├── FirebaseInstallations │ │ ├── FirebaseInstallations-Info.plist │ │ ├── FirebaseInstallations-dummy.m │ │ ├── FirebaseInstallations-umbrella.h │ │ ├── FirebaseInstallations.debug.xcconfig │ │ ├── FirebaseInstallations.modulemap │ │ └── FirebaseInstallations.release.xcconfig │ ├── GoogleAppMeasurement │ │ ├── GoogleAppMeasurement-xcframeworks-input-files.xcfilelist │ │ ├── GoogleAppMeasurement-xcframeworks-output-files.xcfilelist │ │ ├── GoogleAppMeasurement-xcframeworks.sh │ │ ├── GoogleAppMeasurement.debug.xcconfig │ │ └── GoogleAppMeasurement.release.xcconfig │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport-Info.plist │ │ ├── GoogleDataTransport-dummy.m │ │ ├── GoogleDataTransport-umbrella.h │ │ ├── GoogleDataTransport.debug.xcconfig │ │ ├── GoogleDataTransport.modulemap │ │ └── GoogleDataTransport.release.xcconfig │ ├── GoogleUtilities │ │ ├── GoogleUtilities-Info.plist │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities-umbrella.h │ │ ├── GoogleUtilities.debug.xcconfig │ │ ├── GoogleUtilities.modulemap │ │ └── GoogleUtilities.release.xcconfig │ ├── Pods-Spotify │ │ ├── Pods-Spotify-Info.plist │ │ ├── Pods-Spotify-acknowledgements.markdown │ │ ├── Pods-Spotify-acknowledgements.plist │ │ ├── Pods-Spotify-dummy.m │ │ ├── Pods-Spotify-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-Spotify-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-Spotify-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-Spotify-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-Spotify-frameworks.sh │ │ ├── Pods-Spotify-umbrella.h │ │ ├── Pods-Spotify.debug.xcconfig │ │ ├── Pods-Spotify.modulemap │ │ └── Pods-Spotify.release.xcconfig │ ├── PromisesObjC │ │ ├── PromisesObjC-Info.plist │ │ ├── PromisesObjC-dummy.m │ │ ├── PromisesObjC-umbrella.h │ │ ├── PromisesObjC.debug.xcconfig │ │ ├── PromisesObjC.modulemap │ │ └── PromisesObjC.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.debug.xcconfig │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.release.xcconfig │ └── nanopb │ │ ├── nanopb-Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.debug.xcconfig │ │ ├── nanopb.modulemap │ │ └── nanopb.release.xcconfig └── nanopb │ ├── LICENSE.txt │ ├── README.md │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ └── pb_encode.h ├── README.md ├── Spotify.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── afrazsiddiqui.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Spotify.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── afrazsiddiqui.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── Spotify ├── Controllers │ ├── Core │ │ ├── HomeViewController.swift │ │ ├── LibraryViewController.swift │ │ ├── SearchViewController.swift │ │ └── TabBarViewController.swift │ └── Other │ │ ├── AlbumViewController.swift │ │ ├── AuthViewController.swift │ │ ├── CategoryViewController.swift │ │ ├── Library │ │ ├── LibraryAlbumsViewController.swift │ │ └── LibraryPlaylistsViewController.swift │ │ ├── PlayerViewController.swift │ │ ├── PlaylistViewController.swift │ │ ├── ProfileViewController.swift │ │ ├── SearchResultsViewController.swift │ │ ├── SettingsViewController.swift │ │ └── WelcomeViewController.swift ├── Info.plist ├── Managers │ ├── APICaller.swift │ ├── AuthManager.swift │ └── HapticsManager.swift ├── Models │ ├── APIImage.swift │ ├── AlbumDetailsResponse.swift │ ├── AllCategoriesResponse.swift │ ├── Artist.swift │ ├── AudioTrack.swift │ ├── AuthResponse.swift │ ├── FeaturedPlaylistsResponse.swift │ ├── LibraryAlbumsResponse.swift │ ├── LibraryPlaylistsResponse.swift │ ├── NewReleasesResponse.swift │ ├── Playlist.swift │ ├── PlaylistDetailsResponse.swift │ ├── RecommendationsResponse.swift │ ├── RecommendedGenresResponse.swift │ ├── SearchResult.swift │ ├── SearchResultResponse.swift │ ├── SettingsModels.swift │ └── UserProfile.swift ├── Presenter │ └── PlaybackPresenter.swift ├── Resources │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small-50.png │ │ │ ├── icon-small-50@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ ├── ios-marketing.png │ │ │ ├── notification-icon@2x.png │ │ │ ├── notification-icon@3x.png │ │ │ ├── notification-icon~ipad.png │ │ │ └── notification-icon~ipad@2x.png │ │ ├── Contents.json │ │ ├── albums_background.imageset │ │ │ ├── Contents.json │ │ │ └── albums.jpg │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo.png │ ├── Extensions.swift │ └── SceneDelegate.swift ├── ViewModels │ ├── AlbumCollectionViewCellViewModel.swift │ ├── CategoryCollectionViewCellViewModel.swift │ ├── FeaturedPlaylistCellViewModel.swift │ ├── NewReleasesCellViewModel.swift │ ├── PlaylistHeaderViewViewModel.swift │ ├── RecommendedTrackCellViewModel.swift │ ├── SearchResultDefaultTableViewCellViewModel.swift │ └── SearchResultSubtitleTableViewCellViewModel.swift └── Views │ ├── ActionLabelView.swift │ ├── AlbumTrackCollectionViewCell.swift │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Browse │ ├── FeaturedPlaylistCollectionViewCell.swift │ ├── NewReleaseCollectionViewCell.swift │ └── RecommendedTrackCollectionViewCell.swift │ ├── GenreCollectionViewCell.swift │ ├── LibraryToggleView.swift │ ├── PlayerControlsView.swift │ ├── PlaylistHeaderCollectionReusableView.swift │ ├── SearchResultCells │ ├── SearchResultDefaultTableViewCell.swift │ └── SearchResultSubtitleTableViewCell.swift │ └── TitleHeaderCollectionReusableView.swift ├── SpotifyTests └── SpotifyTests.swift ├── codemagic.yaml ├── codemagic.yml └── screenshots.png /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Appirater/Appirater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/Appirater.h -------------------------------------------------------------------------------- /Pods/Appirater/Appirater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/Appirater.m -------------------------------------------------------------------------------- /Pods/Appirater/AppiraterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/AppiraterDelegate.h -------------------------------------------------------------------------------- /Pods/Appirater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/README.md -------------------------------------------------------------------------------- /Pods/Appirater/ar.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/ar.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/ca.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/ca.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/cs.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/cs.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/da.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/da.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/de.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/de.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/el.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/el.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/en.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/en.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/es.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/es.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/fa.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/fa.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/fi.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/fi.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/fr.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/fr.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/he.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/he.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/hu.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/hu.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/hy.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/hy.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/id.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/id.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/it.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/it.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/ja.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/ja.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/ko.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/ko.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/ms.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/ms.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/nb.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/nb.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/nl.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/nl.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/pl.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/pl.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/pt-BR.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/pt-BR.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/pt.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/pt.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/ro.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/ro.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/ru.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/ru.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/sk.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/sk.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/sv.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/sv.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/th.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/th.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/tr.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/tr.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/uk.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/uk.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/vi.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/vi.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/zh-Hans.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/zh-Hans.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Appirater/zh-Hant.lproj/AppiraterLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Appirater/zh-Hant.lproj/AppiraterLocalizable.strings -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Firebase/CoreOnly/Sources/module.modulemap -------------------------------------------------------------------------------- /Pods/Firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Firebase/LICENSE -------------------------------------------------------------------------------- /Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Firebase/README.md -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/Info.plist -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics+Consent.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRAnalytics.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIREventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIREventNames.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRParameterNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRParameterNames.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Info.plist -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_armv7/FirebaseAnalytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/FirebaseAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/FirebaseAnalytics -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIRAnalytics.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIREventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Headers/FIREventNames.h -------------------------------------------------------------------------------- /Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.xcframework/ios-arm64_i386_x86_64-simulator/FirebaseAnalytics.framework/Info.plist -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRAnalyticsConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRAnalyticsConfiguration.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRAnalyticsConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRAnalyticsConfiguration.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRAppAssociationRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRAppAssociationRegistration.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRAppAssociationRegistration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRAppAssociationRegistration.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRBundleUtil.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentContainer.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentContainerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentContainerInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponentType.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRConfiguration.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRConfigurationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRConfigurationInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRDependency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRDependency.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRDiagnosticsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRDiagnosticsData.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRDiagnosticsData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRDiagnosticsData.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRFirebaseUserAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRFirebaseUserAgent.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRFirebaseUserAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRFirebaseUserAgent.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRHeartbeatInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRHeartbeatInfo.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRAppInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRAppInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponent.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentContainer.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRComponentType.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRDependency.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRHeartbeatInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRHeartbeatInfo.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLibrary.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRLogger.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIROptionsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FIROptionsInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FirebaseCoreInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Private/FirebaseCoreInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCoreDiagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseCoreDiagnostics/README.md -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRAppInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRAppInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponent.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponentContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponentContainer.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRComponentType.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRDependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRDependency.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRHeartbeatInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRHeartbeatInfo.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRLibrary.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIRLogger.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIROptionsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FIROptionsInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FirebaseCoreInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseCore/Sources/Private/FirebaseCoreInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallations.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsItem.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/FIRInstallationsLogger.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseInstallations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/FirebaseInstallations/README.md -------------------------------------------------------------------------------- /Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/Info.plist -------------------------------------------------------------------------------- /Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/GoogleAppMeasurement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/GoogleAppMeasurement -------------------------------------------------------------------------------- /Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/Info.plist -------------------------------------------------------------------------------- /Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_armv7/GoogleAppMeasurement.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurement.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleAppMeasurement/Frameworks/GoogleAppMeasurement.xcframework/ios-arm64_i386_x86_64-simulator/GoogleAppMeasurement.framework/Info.plist -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTUploadOperation.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploadOperation.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORClock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORClock.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCOREndpoints.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage+Promises.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadBatch.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORAssert.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORLifecycle.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORPlatform.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORReachability.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORRegistrar.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageEventSelector.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORStorageProtocol.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Internal/GDTCORUploader.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCOREndpoints_Private.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage+Promises.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadBatch.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREndpoints.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleDataTransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleDataTransport/README.md -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Common/GULLoggerCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Common/GULLoggerCodes.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/GULHeartbeatDateStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/GULHeartbeatDateStorage.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/GULSecureCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/GULSecureCoding.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Logger/GULLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Logger/GULLogger.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/GULSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/GULSwizzler.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/GULNSData+zlib.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/GULMutableDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/GULMutableDictionary.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/GULNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetwork.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkConstants.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkInternal.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkURLSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/GULNetworkURLSession.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityChecker.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityMessageCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Reachability/GULReachabilityMessageCode.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/UserDefaults/GULUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/GULUserDefaults.m -------------------------------------------------------------------------------- /Pods/GoogleUtilities/GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h -------------------------------------------------------------------------------- /Pods/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Appirater-Appirater.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Appirater-Appirater.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Appirater.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Appirater.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Firebase.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Firebase.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseAnalytics.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseAnalytics.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseCore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseCore.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseCoreDiagnostics.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseCoreDiagnostics.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseInstallations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/FirebaseInstallations.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/GoogleAppMeasurement.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/GoogleAppMeasurement.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/GoogleDataTransport.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/GoogleDataTransport.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/GoogleUtilities.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/GoogleUtilities.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Pods-Spotify.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/Pods-Spotify.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/PromisesObjC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/PromisesObjC.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/nanopb.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/nanopb.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/PromisesObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/LICENSE -------------------------------------------------------------------------------- /Pods/PromisesObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/README.md -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+All.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+All.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Always.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Always.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Any.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Any.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Async.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Async.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Await.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Await.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Catch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Catch.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Delay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Delay.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Race.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Race.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Recover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Recover.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Reduce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Reduce.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Retry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Retry.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Testing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Testing.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Then.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Then.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Timeout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Timeout.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Validate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Validate.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Wrap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Wrap.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromiseError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/FBLPromiseError.m -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+All.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Always.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Always.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Any.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Async.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Await.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Await.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Catch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Catch.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Delay.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Do.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Race.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Recover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Recover.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Reduce.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Retry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Retry.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Testing.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Then.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Then.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Timeout.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Validate.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise+Wrap.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromise.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromiseError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromiseError.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromisePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromisePrivate.h -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromises.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/PromisesObjC/Sources/FBLPromises/include/FBLPromises.h -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDGraphicsImageRenderer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageAWebPCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderDecryptor.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ExtendedCacheData.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAssociatedObject.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDeviceHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDDisplayLink.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDFileAttributeHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDWebImageTransitionInternal.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/SDWebImage/Private/UIColor+SDHexString.m -------------------------------------------------------------------------------- /Pods/SDWebImage/WebImage/SDWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/Appirater-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/Appirater-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/Appirater-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/Appirater-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/Appirater-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/Appirater-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/Appirater-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/Appirater-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/Appirater.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/Appirater.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/Appirater.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/Appirater.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/Appirater.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/Appirater.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Appirater/ResourceBundle-Appirater-Appirater-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Appirater/ResourceBundle-Appirater-Appirater-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Firebase/Firebase.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Firebase/Firebase.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Firebase/Firebase.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCore/FirebaseCore-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/GoogleUtilities/GoogleUtilities.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Spotify/Pods-Spotify.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/Pods-Spotify/Pods-Spotify.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/PromisesObjC/PromisesObjC-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/PromisesObjC/PromisesObjC-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/PromisesObjC/PromisesObjC-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/PromisesObjC/PromisesObjC.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/PromisesObjC/PromisesObjC.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/PromisesObjC/PromisesObjC.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/nanopb/nanopb-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/nanopb/nanopb-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/nanopb/nanopb-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/nanopb/nanopb-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/nanopb/nanopb.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/nanopb/nanopb.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/Target Support Files/nanopb/nanopb.release.xcconfig -------------------------------------------------------------------------------- /Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/README.md -------------------------------------------------------------------------------- /Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Spotify.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Spotify.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Spotify.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Spotify.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Spotify.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcodeproj/xcuserdata/afrazsiddiqui.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Spotify.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Spotify.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Spotify.xcworkspace/xcuserdata/afrazsiddiqui.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcworkspace/xcuserdata/afrazsiddiqui.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Spotify.xcworkspace/xcuserdata/afrazsiddiqui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify.xcworkspace/xcuserdata/afrazsiddiqui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Spotify/Controllers/Core/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Core/HomeViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Core/LibraryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Core/LibraryViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Core/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Core/SearchViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Core/TabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Core/TabBarViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/AlbumViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/AlbumViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/AuthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/AuthViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/CategoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/CategoryViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/Library/LibraryAlbumsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/Library/LibraryAlbumsViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/Library/LibraryPlaylistsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/Library/LibraryPlaylistsViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/PlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/PlayerViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/PlaylistViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/PlaylistViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/ProfileViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/SearchResultsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/SearchResultsViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/SettingsViewController.swift -------------------------------------------------------------------------------- /Spotify/Controllers/Other/WelcomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Controllers/Other/WelcomeViewController.swift -------------------------------------------------------------------------------- /Spotify/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Info.plist -------------------------------------------------------------------------------- /Spotify/Managers/APICaller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Managers/APICaller.swift -------------------------------------------------------------------------------- /Spotify/Managers/AuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Managers/AuthManager.swift -------------------------------------------------------------------------------- /Spotify/Managers/HapticsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Managers/HapticsManager.swift -------------------------------------------------------------------------------- /Spotify/Models/APIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/APIImage.swift -------------------------------------------------------------------------------- /Spotify/Models/AlbumDetailsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/AlbumDetailsResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/AllCategoriesResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/AllCategoriesResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/Artist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/Artist.swift -------------------------------------------------------------------------------- /Spotify/Models/AudioTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/AudioTrack.swift -------------------------------------------------------------------------------- /Spotify/Models/AuthResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/AuthResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/FeaturedPlaylistsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/FeaturedPlaylistsResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/LibraryAlbumsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/LibraryAlbumsResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/LibraryPlaylistsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/LibraryPlaylistsResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/NewReleasesResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/NewReleasesResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/Playlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/Playlist.swift -------------------------------------------------------------------------------- /Spotify/Models/PlaylistDetailsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/PlaylistDetailsResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/RecommendationsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/RecommendationsResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/RecommendedGenresResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/RecommendedGenresResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/SearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/SearchResult.swift -------------------------------------------------------------------------------- /Spotify/Models/SearchResultResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/SearchResultResponse.swift -------------------------------------------------------------------------------- /Spotify/Models/SettingsModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/SettingsModels.swift -------------------------------------------------------------------------------- /Spotify/Models/UserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Models/UserProfile.swift -------------------------------------------------------------------------------- /Spotify/Presenter/PlaybackPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Presenter/PlaybackPresenter.swift -------------------------------------------------------------------------------- /Spotify/Resources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/AppDelegate.swift -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small-50.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small-50@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon-small@3x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/ios-marketing.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon@3x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/AppIcon.appiconset/notification-icon~ipad@2x.png -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/albums_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/albums_background.imageset/Contents.json -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/albums_background.imageset/albums.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/albums_background.imageset/albums.jpg -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Spotify/Resources/Assets.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Assets.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /Spotify/Resources/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/Extensions.swift -------------------------------------------------------------------------------- /Spotify/Resources/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Resources/SceneDelegate.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/AlbumCollectionViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/AlbumCollectionViewCellViewModel.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/CategoryCollectionViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/CategoryCollectionViewCellViewModel.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/FeaturedPlaylistCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/FeaturedPlaylistCellViewModel.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/NewReleasesCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/NewReleasesCellViewModel.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/PlaylistHeaderViewViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/PlaylistHeaderViewViewModel.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/RecommendedTrackCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/RecommendedTrackCellViewModel.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/SearchResultDefaultTableViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/SearchResultDefaultTableViewCellViewModel.swift -------------------------------------------------------------------------------- /Spotify/ViewModels/SearchResultSubtitleTableViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/ViewModels/SearchResultSubtitleTableViewCellViewModel.swift -------------------------------------------------------------------------------- /Spotify/Views/ActionLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/ActionLabelView.swift -------------------------------------------------------------------------------- /Spotify/Views/AlbumTrackCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/AlbumTrackCollectionViewCell.swift -------------------------------------------------------------------------------- /Spotify/Views/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Spotify/Views/Browse/FeaturedPlaylistCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/Browse/FeaturedPlaylistCollectionViewCell.swift -------------------------------------------------------------------------------- /Spotify/Views/Browse/NewReleaseCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/Browse/NewReleaseCollectionViewCell.swift -------------------------------------------------------------------------------- /Spotify/Views/Browse/RecommendedTrackCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/Browse/RecommendedTrackCollectionViewCell.swift -------------------------------------------------------------------------------- /Spotify/Views/GenreCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/GenreCollectionViewCell.swift -------------------------------------------------------------------------------- /Spotify/Views/LibraryToggleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/LibraryToggleView.swift -------------------------------------------------------------------------------- /Spotify/Views/PlayerControlsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/PlayerControlsView.swift -------------------------------------------------------------------------------- /Spotify/Views/PlaylistHeaderCollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/PlaylistHeaderCollectionReusableView.swift -------------------------------------------------------------------------------- /Spotify/Views/SearchResultCells/SearchResultDefaultTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/SearchResultCells/SearchResultDefaultTableViewCell.swift -------------------------------------------------------------------------------- /Spotify/Views/SearchResultCells/SearchResultSubtitleTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/SearchResultCells/SearchResultSubtitleTableViewCell.swift -------------------------------------------------------------------------------- /Spotify/Views/TitleHeaderCollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/Spotify/Views/TitleHeaderCollectionReusableView.swift -------------------------------------------------------------------------------- /SpotifyTests/SpotifyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/SpotifyTests/SpotifyTests.swift -------------------------------------------------------------------------------- /codemagic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/codemagic.yaml -------------------------------------------------------------------------------- /codemagic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/codemagic.yml -------------------------------------------------------------------------------- /screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrazCodes/Spotify-iOS/HEAD/screenshots.png --------------------------------------------------------------------------------