├── .idea ├── .gitignore ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── spotiflyer-ios.iml ├── vcs.xml └── xcode.xml ├── Podfile ├── Podfile.lock ├── Pods ├── ID3TagEditor │ ├── LICENSE.md │ ├── README.md │ └── Source │ │ ├── Common │ │ ├── PaddingAdder.swift │ │ ├── PaddingAdderToEndOfContentUsingNullChar.swift │ │ ├── PaddingRemover.swift │ │ ├── PaddingRemoverUsingTrimming.swift │ │ ├── SynchsafeEncoder.swift │ │ ├── SynchsafeIntegerDecoder.swift │ │ ├── SynchsafeIntegerEncoder.swift │ │ ├── UInt32ToByteArrayAdapter.swift │ │ └── UInt32ToByteArrayAdapterUsingUnsafePointer.swift │ │ ├── Create │ │ ├── FrameContentAdapter.swift │ │ ├── FrameContentSizeCalculator.swift │ │ ├── FrameFlagsCreator.swift │ │ ├── FrameFromIntegerContentAdapter.swift │ │ ├── FrameFromStringContentAdapter.swift │ │ ├── FrameFromStringContentCreator.swift │ │ ├── FrameHeaderCreator.swift │ │ ├── ID3AttachedPictureFrameCreator.swift │ │ ├── ID3AttachedPicturesFramesCreator.swift │ │ ├── ID3AttachedPicturesFramesCreatorFactory.swift │ │ ├── ID3DiscPositionFrameCreator.swift │ │ ├── ID3FrameContentCreator.swift │ │ ├── ID3FrameContentSizeCalculator.swift │ │ ├── ID3FrameCreator.swift │ │ ├── ID3FrameCreatorsFactory.swift │ │ ├── ID3FrameFlagsCreator.swift │ │ ├── ID3FrameFromStringContentCreator.swift │ │ ├── ID3FrameFromStringContentCreatorWithISO88591EncodingFactory.swift │ │ ├── ID3FrameFromStringContentCreatorWithUTF16EncodingFactory.swift │ │ ├── ID3FrameHeaderCreator.swift │ │ ├── ID3FrameHeaderCreatorFactory.swift │ │ ├── ID3FramesCreator.swift │ │ ├── ID3FramesWithLocalizedContentCreator.swift │ │ ├── ID3FramesWithLocalizedContentCreatorFactory.swift │ │ ├── ID3GenreFrameCreator.swift │ │ ├── ID3ISO88591StringToByteAdapter.swift │ │ ├── ID3LocalizedFrameCreator.swift │ │ ├── ID3RecordingDateTimeFrameCreator.swift │ │ ├── ID3RecordingDayMonthFrameCreator.swift │ │ ├── ID3RecordingHourMinuteFrameCreator.swift │ │ ├── ID3RecordingTimesFrameCreatorsFactory.swift │ │ ├── ID3TagCreator.swift │ │ ├── ID3TagCreatorFactory.swift │ │ ├── ID3TagHeaderCreator.swift │ │ ├── ID3TimestampCreator.swift │ │ ├── ID3TrackPositionFrameCreator.swift │ │ ├── ID3UTF16StringToByteAdapter.swift │ │ ├── ID3iTunesFrameCreatorsFactory.swift │ │ ├── LocalizedFrameCreator.swift │ │ ├── StringToBytesAdapter.swift │ │ └── TimestampCreator.swift │ │ ├── Frame │ │ ├── FrameName.swift │ │ ├── FrameType.swift │ │ ├── ID3AttachedPictureFrameConfiguration.swift │ │ ├── ID3Frame.swift │ │ ├── ID3FrameAttachedPicture.swift │ │ ├── ID3FrameConfiguration.swift │ │ ├── ID3FrameContentLanguage.swift │ │ ├── ID3FrameGenre.swift │ │ ├── ID3FramePartofTotal.swift │ │ ├── ID3FrameRecordingDateTime.swift │ │ ├── ID3FrameRecordingDayMonth.swift │ │ ├── ID3FrameRecordingHourMinute.swift │ │ ├── ID3FrameWithIntegerContent.swift │ │ ├── ID3FrameWithLocalizedContent.swift │ │ ├── ID3FrameWithStringContent.swift │ │ ├── ID3Genre.swift │ │ ├── ID3PictureFormat.swift │ │ └── ID3PictureType.swift │ │ ├── ID3TagEditor.h │ │ ├── ID3TagEditor.swift │ │ ├── ID3TagEditorError.swift │ │ ├── ID3Version.swift │ │ ├── Mp3 │ │ ├── Mp3FileReader.swift │ │ ├── Mp3FileWriter.swift │ │ └── Mp3WithID3TagBuilder.swift │ │ ├── Parse │ │ ├── FrameContentParser.swift │ │ ├── FrameContentParsingOperation.swift │ │ ├── FrameContentSizeParser.swift │ │ ├── FrameSizeParser.swift │ │ ├── ID3AttachedPictureFrameContentParsingOperation.swift │ │ ├── ID3AttachedPictureFrameContentParsingOperationFactory.swift │ │ ├── ID3CoupleOfNumbersAdapter.swift │ │ ├── ID3DiscPositionFrameContentParsingOperationFactory.swift │ │ ├── ID3FrameContentParsingOperationFactory.swift │ │ ├── ID3FrameContentSizeParser.swift │ │ ├── ID3FrameParser.swift │ │ ├── ID3FrameSizeParser.swift │ │ ├── ID3FrameStringContentParser.swift │ │ ├── ID3FrameStringContentParserFactory.swift │ │ ├── ID3FrameStringContentParsingOperation.swift │ │ ├── ID3FrameStringContentParsingOperationFactory.swift │ │ ├── ID3FrameStringEncodingDetector.swift │ │ ├── ID3FramesParser.swift │ │ ├── ID3GenreFrameContentParsingOperationFactory.swift │ │ ├── ID3GenreStringAdapter.swift │ │ ├── ID3LocalizedFrameContentParsingOperation.swift │ │ ├── ID3LocalizedFrameContentParsingOperationFactory.swift │ │ ├── ID3ParsingOperationForID3FrameWithIntegerFactory.swift │ │ ├── ID3ParsingOperationForID3FrameWithStringFactory.swift │ │ ├── ID3PartOfTotalStringAdapter.swift │ │ ├── ID3PictureTypeAdapter.swift │ │ ├── ID3RecordingDayMonthContentParsingOperationFactory.swift │ │ ├── ID3RecordingHourMinuteFrameContentParsingOperationFactory.swift │ │ ├── ID3RecordingTimeFrameContentParsingOperation.swift │ │ ├── ID3RecordingTimeFrameContentParsingOperationFactory.swift │ │ ├── ID3StringEncoding.swift │ │ ├── ID3StringEncodingConverter.swift │ │ ├── ID3TagParser.swift │ │ ├── ID3TagParserFactory.swift │ │ ├── ID3TagSizeParser.swift │ │ ├── ID3TagVersionParser.swift │ │ ├── ID3TrackPositionFrameContentParsingOperationFactory.swift │ │ ├── PartOfTotalStringAdapter.swift │ │ ├── PictureTypeAdapter.swift │ │ ├── TagSizeParser.swift │ │ └── TagVersionParser.swift │ │ └── Tag │ │ ├── ID32v2TagBuilder.swift │ │ ├── ID32v3TagBuilder.swift │ │ ├── ID32v4TagBuilder.swift │ │ ├── ID3Tag.swift │ │ ├── ID3TagConfiguration.swift │ │ ├── ID3TagPresence.swift │ │ ├── ID3TagProperties.swift │ │ ├── ID3TagToStringAdapter.swift │ │ ├── TagBuilder.swift │ │ └── TagPresence.swift ├── Local Podspecs │ └── root.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── shabinder.xcuserdatad │ │ └── xcschemes │ │ ├── ID3TagEditor.xcscheme │ │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests.xcscheme │ │ ├── Pods-spotiflyer-ios.xcscheme │ │ ├── Pods-spotiflyer-iosTests.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── ID3TagEditor │ ├── ID3TagEditor-Info.plist │ ├── ID3TagEditor-dummy.m │ ├── ID3TagEditor-prefix.pch │ ├── ID3TagEditor-umbrella.h │ ├── ID3TagEditor.debug.xcconfig │ ├── ID3TagEditor.modulemap │ └── ID3TagEditor.release.xcconfig │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-Info.plist │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-acknowledgements.markdown │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-acknowledgements.plist │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-dummy.m │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Debug-input-files.xcfilelist │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Debug-output-files.xcfilelist │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Release-input-files.xcfilelist │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Release-output-files.xcfilelist │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks.sh │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests-umbrella.h │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests.debug.xcconfig │ ├── Pods-spotiflyer-ios-spotiflyer-iosUITests.modulemap │ └── Pods-spotiflyer-ios-spotiflyer-iosUITests.release.xcconfig │ ├── Pods-spotiflyer-ios │ ├── Pods-spotiflyer-ios-Info.plist │ ├── Pods-spotiflyer-ios-acknowledgements.markdown │ ├── Pods-spotiflyer-ios-acknowledgements.plist │ ├── Pods-spotiflyer-ios-dummy.m │ ├── Pods-spotiflyer-ios-frameworks-Debug-input-files.xcfilelist │ ├── Pods-spotiflyer-ios-frameworks-Debug-output-files.xcfilelist │ ├── Pods-spotiflyer-ios-frameworks-Release-input-files.xcfilelist │ ├── Pods-spotiflyer-ios-frameworks-Release-output-files.xcfilelist │ ├── Pods-spotiflyer-ios-frameworks.sh │ ├── Pods-spotiflyer-ios-umbrella.h │ ├── Pods-spotiflyer-ios.debug.xcconfig │ ├── Pods-spotiflyer-ios.modulemap │ └── Pods-spotiflyer-ios.release.xcconfig │ └── Pods-spotiflyer-iosTests │ ├── Pods-spotiflyer-iosTests-Info.plist │ ├── Pods-spotiflyer-iosTests-acknowledgements.markdown │ ├── Pods-spotiflyer-iosTests-acknowledgements.plist │ ├── Pods-spotiflyer-iosTests-dummy.m │ ├── Pods-spotiflyer-iosTests-umbrella.h │ ├── Pods-spotiflyer-iosTests.debug.xcconfig │ ├── Pods-spotiflyer-iosTests.modulemap │ └── Pods-spotiflyer-iosTests.release.xcconfig ├── spotiflyer-ios.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── shabinder.xcuserdatad │ └── xcschemes │ ├── spotiflyer-ios.xcscheme │ └── xcschememanagement.plist ├── spotiflyer-ios.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── shabinder.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── spotiflyer-ios ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Artboard 1@2x.png │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── Colors │ │ ├── BlackColor.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── ErrorColor.colorset │ │ │ └── Contents.json │ │ ├── LightGrayColor.colorset │ │ │ └── Contents.json │ │ ├── OffWhiteColor.colorset │ │ │ └── Contents.json │ │ ├── PrimaryColor.colorset │ │ │ └── Contents.json │ │ ├── PrimaryDarkColor.colorset │ │ │ └── Contents.json │ │ ├── SuccessColor.colorset │ │ │ └── Contents.json │ │ └── TransparentColor.colorset │ │ │ └── Contents.json │ ├── Contents.json │ └── Images │ │ ├── Contents.json │ │ ├── check-image.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── download-image.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── error-image.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── gaana-logo.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── github-logo.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── logo.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── open-image.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── spotify-logo.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ ├── youtube-logo.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json │ │ └── youtube-music-logo.imageset │ │ ├── Artboard 1.png │ │ ├── Artboard 1@2x.png │ │ ├── Artboard 1@3x.png │ │ └── Contents.json ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift ├── ui │ ├── ContentView.swift │ ├── ListScreen │ │ ├── ListScreen.swift │ │ └── Views │ │ │ ├── ListItem.swift │ │ │ └── LoadingAnim.swift │ ├── MainScreen │ │ ├── MainScreen.swift │ │ └── Views │ │ │ ├── AboutColumn.swift │ │ │ ├── ActionButton.swift │ │ │ ├── HistoryColumn.swift │ │ │ ├── HistoryItem.swift │ │ │ ├── LogoButton.swift │ │ │ └── SearchBar.swift │ └── RootView.swift └── utils │ ├── ComponentHolder.swift │ ├── Extensions.swift │ ├── FileManagement.swift │ ├── MutableStateBuilder.swift │ ├── NavigationBarModifier.swift │ ├── ObservableValue.swift │ └── SimpleRouterState.swift ├── spotiflyer-iosTests ├── Info.plist └── spotiflyer_iosTests.swift └── spotiflyer-iosUITests ├── Info.plist └── spotiflyer_iosUITests.swift /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/spotiflyer-ios.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/.idea/spotiflyer-ios.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/xcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/.idea/xcode.xml -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/ID3TagEditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/LICENSE.md -------------------------------------------------------------------------------- /Pods/ID3TagEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/README.md -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/PaddingAdder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/PaddingAdder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/PaddingAdderToEndOfContentUsingNullChar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/PaddingAdderToEndOfContentUsingNullChar.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/PaddingRemover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/PaddingRemover.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/PaddingRemoverUsingTrimming.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/PaddingRemoverUsingTrimming.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/SynchsafeEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/SynchsafeEncoder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/SynchsafeIntegerDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/SynchsafeIntegerDecoder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/SynchsafeIntegerEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/SynchsafeIntegerEncoder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/UInt32ToByteArrayAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/UInt32ToByteArrayAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Common/UInt32ToByteArrayAdapterUsingUnsafePointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Common/UInt32ToByteArrayAdapterUsingUnsafePointer.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/FrameContentAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/FrameContentAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/FrameContentSizeCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/FrameContentSizeCalculator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/FrameFlagsCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/FrameFlagsCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/FrameFromIntegerContentAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/FrameFromIntegerContentAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/FrameFromStringContentAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/FrameFromStringContentAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/FrameFromStringContentCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/FrameFromStringContentCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/FrameHeaderCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/FrameHeaderCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3AttachedPictureFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3AttachedPictureFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3AttachedPicturesFramesCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3AttachedPicturesFramesCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3AttachedPicturesFramesCreatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3AttachedPicturesFramesCreatorFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3DiscPositionFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3DiscPositionFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameContentCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameContentCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameContentSizeCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameContentSizeCalculator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameCreatorsFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameCreatorsFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameFlagsCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameFlagsCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameFromStringContentCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameFromStringContentCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameFromStringContentCreatorWithISO88591EncodingFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameFromStringContentCreatorWithISO88591EncodingFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameFromStringContentCreatorWithUTF16EncodingFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameFromStringContentCreatorWithUTF16EncodingFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameHeaderCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameHeaderCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FrameHeaderCreatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FrameHeaderCreatorFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FramesCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FramesCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FramesWithLocalizedContentCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FramesWithLocalizedContentCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3FramesWithLocalizedContentCreatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3FramesWithLocalizedContentCreatorFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3GenreFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3GenreFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3ISO88591StringToByteAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3ISO88591StringToByteAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3LocalizedFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3LocalizedFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3RecordingDateTimeFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3RecordingDateTimeFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3RecordingDayMonthFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3RecordingDayMonthFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3RecordingHourMinuteFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3RecordingHourMinuteFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3RecordingTimesFrameCreatorsFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3RecordingTimesFrameCreatorsFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3TagCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3TagCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3TagCreatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3TagCreatorFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3TagHeaderCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3TagHeaderCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3TimestampCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3TimestampCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3TrackPositionFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3TrackPositionFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3UTF16StringToByteAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3UTF16StringToByteAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/ID3iTunesFrameCreatorsFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/ID3iTunesFrameCreatorsFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/LocalizedFrameCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/LocalizedFrameCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/StringToBytesAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/StringToBytesAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Create/TimestampCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Create/TimestampCreator.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/FrameName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/FrameName.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/FrameType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/FrameType.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3AttachedPictureFrameConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3AttachedPictureFrameConfiguration.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3Frame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3Frame.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameAttachedPicture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameAttachedPicture.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameConfiguration.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameContentLanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameContentLanguage.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameGenre.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameGenre.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FramePartofTotal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FramePartofTotal.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameRecordingDateTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameRecordingDateTime.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameRecordingDayMonth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameRecordingDayMonth.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameRecordingHourMinute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameRecordingHourMinute.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameWithIntegerContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameWithIntegerContent.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameWithLocalizedContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameWithLocalizedContent.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3FrameWithStringContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3FrameWithStringContent.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3Genre.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3Genre.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3PictureFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3PictureFormat.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Frame/ID3PictureType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Frame/ID3PictureType.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/ID3TagEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/ID3TagEditor.h -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/ID3TagEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/ID3TagEditor.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/ID3TagEditorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/ID3TagEditorError.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/ID3Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/ID3Version.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Mp3/Mp3FileReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Mp3/Mp3FileReader.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Mp3/Mp3FileWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Mp3/Mp3FileWriter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Mp3/Mp3WithID3TagBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Mp3/Mp3WithID3TagBuilder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/FrameContentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/FrameContentParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/FrameContentParsingOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/FrameContentParsingOperation.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/FrameContentSizeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/FrameContentSizeParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/FrameSizeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/FrameSizeParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3AttachedPictureFrameContentParsingOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3AttachedPictureFrameContentParsingOperation.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3AttachedPictureFrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3AttachedPictureFrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3CoupleOfNumbersAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3CoupleOfNumbersAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3DiscPositionFrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3DiscPositionFrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameContentSizeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameContentSizeParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameSizeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameSizeParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParserFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParserFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParsingOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParsingOperation.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameStringContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FrameStringEncodingDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FrameStringEncodingDetector.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3FramesParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3FramesParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3GenreFrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3GenreFrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3GenreStringAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3GenreStringAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3LocalizedFrameContentParsingOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3LocalizedFrameContentParsingOperation.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3LocalizedFrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3LocalizedFrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3ParsingOperationForID3FrameWithIntegerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3ParsingOperationForID3FrameWithIntegerFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3ParsingOperationForID3FrameWithStringFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3ParsingOperationForID3FrameWithStringFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3PartOfTotalStringAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3PartOfTotalStringAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3PictureTypeAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3PictureTypeAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3RecordingDayMonthContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3RecordingDayMonthContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3RecordingHourMinuteFrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3RecordingHourMinuteFrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3RecordingTimeFrameContentParsingOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3RecordingTimeFrameContentParsingOperation.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3RecordingTimeFrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3RecordingTimeFrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3StringEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3StringEncoding.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3StringEncodingConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3StringEncodingConverter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3TagParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3TagParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3TagParserFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3TagParserFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3TagSizeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3TagSizeParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3TagVersionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3TagVersionParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/ID3TrackPositionFrameContentParsingOperationFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/ID3TrackPositionFrameContentParsingOperationFactory.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/PartOfTotalStringAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/PartOfTotalStringAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/PictureTypeAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/PictureTypeAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/TagSizeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/TagSizeParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Parse/TagVersionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Parse/TagVersionParser.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID32v2TagBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID32v2TagBuilder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID32v3TagBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID32v3TagBuilder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID32v4TagBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID32v4TagBuilder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID3Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID3Tag.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID3TagConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID3TagConfiguration.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID3TagPresence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID3TagPresence.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID3TagProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID3TagProperties.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/ID3TagToStringAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/ID3TagToStringAdapter.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/TagBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/TagBuilder.swift -------------------------------------------------------------------------------- /Pods/ID3TagEditor/Source/Tag/TagPresence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/ID3TagEditor/Source/Tag/TagPresence.swift -------------------------------------------------------------------------------- /Pods/Local Podspecs/root.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Local Podspecs/root.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/ID3TagEditor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/ID3TagEditor.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/Pods-spotiflyer-ios-spotiflyer-iosUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/Pods-spotiflyer-ios-spotiflyer-iosUITests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/Pods-spotiflyer-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/Pods-spotiflyer-ios.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/Pods-spotiflyer-iosTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/Pods-spotiflyer-iosTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ID3TagEditor/ID3TagEditor-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/ID3TagEditor/ID3TagEditor-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ID3TagEditor/ID3TagEditor-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/ID3TagEditor/ID3TagEditor-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ID3TagEditor/ID3TagEditor-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/ID3TagEditor/ID3TagEditor-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ID3TagEditor/ID3TagEditor-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/ID3TagEditor/ID3TagEditor-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ID3TagEditor/ID3TagEditor.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/ID3TagEditor/ID3TagEditor.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ID3TagEditor/ID3TagEditor.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/ID3TagEditor/ID3TagEditor.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/ID3TagEditor/ID3TagEditor.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/ID3TagEditor/ID3TagEditor.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ID3TagEditor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ID3TagEditor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios-spotiflyer-iosUITests/Pods-spotiflyer-ios-spotiflyer-iosUITests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ID3TagEditor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ID3TagEditor.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-ios/Pods-spotiflyer-ios.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/Pods/Target Support Files/Pods-spotiflyer-iosTests/Pods-spotiflyer-iosTests.release.xcconfig -------------------------------------------------------------------------------- /spotiflyer-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /spotiflyer-ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /spotiflyer-ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /spotiflyer-ios.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/spotiflyer-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/spotiflyer-ios.xcscheme -------------------------------------------------------------------------------- /spotiflyer-ios.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcodeproj/xcuserdata/shabinder.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /spotiflyer-ios.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /spotiflyer-ios.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /spotiflyer-ios.xcworkspace/xcuserdata/shabinder.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios.xcworkspace/xcuserdata/shabinder.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /spotiflyer-ios/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/AppDelegate.swift -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/BlackColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/BlackColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/ErrorColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/ErrorColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/LightGrayColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/LightGrayColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/OffWhiteColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/OffWhiteColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/PrimaryColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/PrimaryColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/PrimaryDarkColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/PrimaryDarkColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/SuccessColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/SuccessColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Colors/TransparentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Colors/TransparentColor.colorset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/check-image.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/download-image.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/error-image.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/gaana-logo.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/github-logo.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/logo.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/open-image.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/spotify-logo.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-logo.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Artboard 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Artboard 1.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Artboard 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Artboard 1@2x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Artboard 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Artboard 1@3x.png -------------------------------------------------------------------------------- /spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Assets.xcassets/Images/youtube-music-logo.imageset/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Info.plist -------------------------------------------------------------------------------- /spotiflyer-ios/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /spotiflyer-ios/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/SceneDelegate.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/ContentView.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/ListScreen/ListScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/ListScreen/ListScreen.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/ListScreen/Views/ListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/ListScreen/Views/ListItem.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/ListScreen/Views/LoadingAnim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/ListScreen/Views/LoadingAnim.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/MainScreen/MainScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/MainScreen/MainScreen.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/MainScreen/Views/AboutColumn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/MainScreen/Views/AboutColumn.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/MainScreen/Views/ActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/MainScreen/Views/ActionButton.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/MainScreen/Views/HistoryColumn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/MainScreen/Views/HistoryColumn.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/MainScreen/Views/HistoryItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/MainScreen/Views/HistoryItem.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/MainScreen/Views/LogoButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/MainScreen/Views/LogoButton.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/MainScreen/Views/SearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/MainScreen/Views/SearchBar.swift -------------------------------------------------------------------------------- /spotiflyer-ios/ui/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/ui/RootView.swift -------------------------------------------------------------------------------- /spotiflyer-ios/utils/ComponentHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/utils/ComponentHolder.swift -------------------------------------------------------------------------------- /spotiflyer-ios/utils/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/utils/Extensions.swift -------------------------------------------------------------------------------- /spotiflyer-ios/utils/FileManagement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/utils/FileManagement.swift -------------------------------------------------------------------------------- /spotiflyer-ios/utils/MutableStateBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/utils/MutableStateBuilder.swift -------------------------------------------------------------------------------- /spotiflyer-ios/utils/NavigationBarModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/utils/NavigationBarModifier.swift -------------------------------------------------------------------------------- /spotiflyer-ios/utils/ObservableValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/utils/ObservableValue.swift -------------------------------------------------------------------------------- /spotiflyer-ios/utils/SimpleRouterState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-ios/utils/SimpleRouterState.swift -------------------------------------------------------------------------------- /spotiflyer-iosTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-iosTests/Info.plist -------------------------------------------------------------------------------- /spotiflyer-iosTests/spotiflyer_iosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-iosTests/spotiflyer_iosTests.swift -------------------------------------------------------------------------------- /spotiflyer-iosUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-iosUITests/Info.plist -------------------------------------------------------------------------------- /spotiflyer-iosUITests/spotiflyer_iosUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shabinder/spotiflyer-ios/HEAD/spotiflyer-iosUITests/spotiflyer_iosUITests.swift --------------------------------------------------------------------------------