├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CODE_OF_CONDUCT.md ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 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-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-50x50@1x.png │ │ ├── Icon-Small-50x50@2x.png │ │ └── ItunesArtwork@2x.png │ ├── Contents.json │ └── Launch_image.imageset │ │ ├── Contents.json │ │ ├── Icon-App-83.5x83.5@2x-1.png │ │ ├── Icon-App-83.5x83.5@2x-2.png │ │ └── Icon-App-83.5x83.5@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ExampleViewController.swift └── Info.plist ├── Images ├── coreTeam1.png ├── coreTeam2.png ├── filters.PNG ├── library.PNG ├── logo │ ├── icon.png │ ├── icon_svg.svg │ ├── logotype_horizontal.png │ └── logotype_horizontal_svg.svg ├── photo.PNG ├── video.PNG └── visual.jpg ├── LICENSE ├── Package.resolved ├── Package.swift ├── Podfile ├── README.md ├── Source ├── Configuration │ ├── YPColors.swift │ ├── YPFonts.swift │ ├── YPIcons.swift │ ├── YPImagePickerConfiguration.swift │ ├── YPImageSize.swift │ ├── YPPickerScreen.swift │ └── YPWordings.swift ├── Filters │ ├── Crop │ │ ├── YPCropVC.swift │ │ └── YPCropView.swift │ ├── Photo │ │ ├── YPFilter.swift │ │ ├── YPFilterCollectionViewCell.swift │ │ ├── YPFiltersView.swift │ │ └── YPPhotoFiltersVC.swift │ └── Video │ │ ├── YPVideoFiltersVC.swift │ │ └── YPVideoView.swift ├── Helpers │ ├── Extensions │ │ ├── AVAsset+Extensions.swift │ │ ├── AVCaptureDevice+Extensions.swift │ │ ├── AVCaptureSession+Extensions.swift │ │ ├── AVFileType+Extensions.swift │ │ ├── AVFoundation+Extensions.swift │ │ ├── AVMutableComposition+Extensions.swift │ │ ├── AVPlayer+Extensions.swift │ │ ├── Array+Extensions.swift │ │ ├── Bundle+Extensions.swift │ │ ├── CGFloat+Extensions.swift │ │ ├── CGRect+Extensions.swift │ │ ├── CIImage+Extensions.swift │ │ ├── IndexSet+Extensions.swift │ │ ├── NSFileManager+Extensions.swift │ │ ├── PHCachingImageManager+Extensions.swift │ │ ├── PHFetchResult+Extensions.swift │ │ ├── UIApplication+ThreadSafe.swift │ │ ├── UIBarButtonItem+Extensions.swift │ │ ├── UIButton+Extensions.swift │ │ ├── UICollectionView+Extensions.swift │ │ ├── UIColor+Extensions.swift │ │ ├── UIImage+Extensions.swift │ │ ├── UINavigationBar+Extensions.swift │ │ └── URL+Extensions.swift │ ├── Permissions │ │ ├── YPPermissionCheckable.swift │ │ ├── YPPermissionDeniedPopup.swift │ │ └── YPPermissionManager.swift │ ├── YPAccessibility.swift │ ├── YPAlerts.swift │ ├── YPDeviceOrientationHelper.swift │ ├── YPHelper.swift │ ├── YPLoaders.swift │ ├── YPLoadingView.swift │ ├── YPPhotoSaver.swift │ └── YPVideoProcessor.swift ├── Info.plist ├── Models │ ├── YPDragDirection.swift │ ├── YPError.swift │ ├── YPFlashMode.swift │ ├── YPLibrarySelection.swift │ ├── YPLog.swift │ ├── YPMediaItem.swift │ └── YPTrimError.swift ├── Pages │ ├── Gallery │ │ ├── Album │ │ │ ├── YPAlbum.swift │ │ │ ├── YPAlbumCell.swift │ │ │ ├── YPAlbumVC.swift │ │ │ ├── YPAlbumView.swift │ │ │ └── YPAlbumsManager.swift │ │ ├── BottomPager │ │ │ ├── YPBottomPager.swift │ │ │ ├── YPBottomPagerView.swift │ │ │ ├── YPMenuItem.swift │ │ │ └── YPPagerMenu.swift │ │ ├── LibraryMediaManager.swift │ │ ├── YPAssetViewContainer.swift │ │ ├── YPAssetZoomableView.swift │ │ ├── YPGridView.swift │ │ ├── YPLibrary+LibraryChange.swift │ │ ├── YPLibraryVC+CollectionView.swift │ │ ├── YPLibraryVC+PanGesture.swift │ │ ├── YPLibraryVC.swift │ │ ├── YPLibraryView.swift │ │ ├── YPLibraryView.xib │ │ ├── YPLibraryViewCell.swift │ │ └── YPLibraryViewDelegate.swift │ ├── Photo │ │ ├── YPCameraVC.swift │ │ ├── YPCameraView.swift │ │ └── YPPhotoCaptureHelper.swift │ └── Video │ │ ├── YPVideoCaptureHelper.swift │ │ └── YPVideoCaptureVC.swift ├── Resources │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── yp_arrow_down.imageset │ │ │ ├── Arrow.pdf │ │ │ └── Contents.json │ │ ├── yp_arrow_left.imageset │ │ │ ├── Contents.json │ │ │ ├── arrow_left.png │ │ │ ├── arrow_left@2x.png │ │ │ └── arrow_left@3x.png │ │ ├── yp_iconCapture.imageset │ │ │ ├── Contents.json │ │ │ └── iconCapture2.pdf │ │ ├── yp_iconCrop.imageset │ │ │ ├── Contents.json │ │ │ ├── yp_iconCrop2.png │ │ │ ├── yp_iconCrop2@2x.png │ │ │ └── yp_iconCrop2@3x.png │ │ ├── yp_iconFlash_auto.imageset │ │ │ ├── Contents.json │ │ │ └── yp_iconFlash_auto.pdf │ │ ├── yp_iconFlash_off.imageset │ │ │ ├── Contents.json │ │ │ └── yp_icon_flash_off.pdf │ │ ├── yp_iconFlash_on.imageset │ │ │ ├── Contents.json │ │ │ └── yp_iconFlash.pdf │ │ ├── yp_iconLoop.imageset │ │ │ ├── Contents.json │ │ │ └── yp_iconLoop.pdf │ │ ├── yp_iconVideoCapture.imageset │ │ │ ├── Contents.json │ │ │ └── iconCapture Copy.pdf │ │ ├── yp_iconVideoCaptureRecording.imageset │ │ │ ├── Contents.json │ │ │ └── iconCapture Copy 2.pdf │ │ ├── yp_multiple.imageset │ │ │ ├── Contents.json │ │ │ ├── yp_multiple.png │ │ │ ├── yp_multiple@2x.png │ │ │ └── yp_multiple@3x.png │ │ ├── yp_multiple_colored.imageset │ │ │ ├── Contents.json │ │ │ ├── yp_multiple_colored.png │ │ │ ├── yp_multiple_colored@2x.png │ │ │ └── yp_multiple_colored@3x.png │ │ ├── yp_play.imageset │ │ │ ├── Contents.json │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ └── play@3x.png │ │ └── yp_remove.imageset │ │ │ ├── Contents.json │ │ │ ├── yp_remove@1x.png │ │ │ ├── yp_remove@2x.png │ │ │ └── yp_remove@3x.png │ ├── ar.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── bg.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── cs.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── da.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── de.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── en.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── es.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── fa.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── fr.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── he.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── id.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── it.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── ja.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── km-KH.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── km.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── ko.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── nb.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── nl.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── pl.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── pt-BR.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── pt-PT.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── ro.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── ru.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── sv.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── th.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── tr.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── vi.lproj │ │ └── YPImagePickerLocalizable.strings │ ├── zh-Hans.lproj │ │ └── YPImagePickerLocalizable.strings │ └── zh-Hant.lproj │ │ └── YPImagePickerLocalizable.strings ├── SelectionsGallery │ ├── YPSelectionsGalleryCell.swift │ ├── YPSelectionsGalleryVC.swift │ └── YPSelectionsGalleryView.swift ├── YPImagePicker.swift ├── YPImagePickerHeader.h └── YPPickerVC.swift ├── YPImagePicker.podspec ├── YPImagePicker.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Example.xcscheme │ └── YPImagePicker.xcscheme └── YPImagePicker.xcworkspace ├── contents.xcworkspacedata └── xcshareddata ├── IDEWorkspaceChecks.plist └── swiftpm └── Package.resolved /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Launch_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/Launch_image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Launch_image.imageset/Icon-App-83.5x83.5@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/Launch_image.imageset/Icon-App-83.5x83.5@2x-1.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/Launch_image.imageset/Icon-App-83.5x83.5@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/Launch_image.imageset/Icon-App-83.5x83.5@2x-2.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/Launch_image.imageset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Assets.xcassets/Launch_image.imageset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/ExampleViewController.swift -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Images/coreTeam1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/coreTeam1.png -------------------------------------------------------------------------------- /Images/coreTeam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/coreTeam2.png -------------------------------------------------------------------------------- /Images/filters.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/filters.PNG -------------------------------------------------------------------------------- /Images/library.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/library.PNG -------------------------------------------------------------------------------- /Images/logo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/logo/icon.png -------------------------------------------------------------------------------- /Images/logo/icon_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/logo/icon_svg.svg -------------------------------------------------------------------------------- /Images/logo/logotype_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/logo/logotype_horizontal.png -------------------------------------------------------------------------------- /Images/logo/logotype_horizontal_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/logo/logotype_horizontal_svg.svg -------------------------------------------------------------------------------- /Images/photo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/photo.PNG -------------------------------------------------------------------------------- /Images/video.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/video.PNG -------------------------------------------------------------------------------- /Images/visual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Images/visual.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/README.md -------------------------------------------------------------------------------- /Source/Configuration/YPColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Configuration/YPColors.swift -------------------------------------------------------------------------------- /Source/Configuration/YPFonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Configuration/YPFonts.swift -------------------------------------------------------------------------------- /Source/Configuration/YPIcons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Configuration/YPIcons.swift -------------------------------------------------------------------------------- /Source/Configuration/YPImagePickerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Configuration/YPImagePickerConfiguration.swift -------------------------------------------------------------------------------- /Source/Configuration/YPImageSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Configuration/YPImageSize.swift -------------------------------------------------------------------------------- /Source/Configuration/YPPickerScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Configuration/YPPickerScreen.swift -------------------------------------------------------------------------------- /Source/Configuration/YPWordings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Configuration/YPWordings.swift -------------------------------------------------------------------------------- /Source/Filters/Crop/YPCropVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Crop/YPCropVC.swift -------------------------------------------------------------------------------- /Source/Filters/Crop/YPCropView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Crop/YPCropView.swift -------------------------------------------------------------------------------- /Source/Filters/Photo/YPFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Photo/YPFilter.swift -------------------------------------------------------------------------------- /Source/Filters/Photo/YPFilterCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Photo/YPFilterCollectionViewCell.swift -------------------------------------------------------------------------------- /Source/Filters/Photo/YPFiltersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Photo/YPFiltersView.swift -------------------------------------------------------------------------------- /Source/Filters/Photo/YPPhotoFiltersVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Photo/YPPhotoFiltersVC.swift -------------------------------------------------------------------------------- /Source/Filters/Video/YPVideoFiltersVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Video/YPVideoFiltersVC.swift -------------------------------------------------------------------------------- /Source/Filters/Video/YPVideoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Filters/Video/YPVideoView.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/AVAsset+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/AVAsset+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/AVCaptureDevice+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/AVCaptureDevice+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/AVCaptureSession+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/AVCaptureSession+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/AVFileType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/AVFileType+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/AVFoundation+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/AVFoundation+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/AVMutableComposition+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/AVMutableComposition+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/AVPlayer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/AVPlayer+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/Array+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/Array+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/Bundle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/Bundle+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/CGFloat+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/CGFloat+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/CGRect+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/CGRect+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/CIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/CIImage+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/IndexSet+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/IndexSet+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/NSFileManager+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/NSFileManager+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/PHCachingImageManager+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/PHCachingImageManager+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/PHFetchResult+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/PHFetchResult+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/UIApplication+ThreadSafe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/UIApplication+ThreadSafe.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/UIBarButtonItem+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/UIBarButtonItem+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/UIButton+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/UIButton+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/UICollectionView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/UICollectionView+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/UIColor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/UIColor+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/UIImage+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/UINavigationBar+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/UINavigationBar+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Extensions/URL+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Extensions/URL+Extensions.swift -------------------------------------------------------------------------------- /Source/Helpers/Permissions/YPPermissionCheckable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Permissions/YPPermissionCheckable.swift -------------------------------------------------------------------------------- /Source/Helpers/Permissions/YPPermissionDeniedPopup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Permissions/YPPermissionDeniedPopup.swift -------------------------------------------------------------------------------- /Source/Helpers/Permissions/YPPermissionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/Permissions/YPPermissionManager.swift -------------------------------------------------------------------------------- /Source/Helpers/YPAccessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPAccessibility.swift -------------------------------------------------------------------------------- /Source/Helpers/YPAlerts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPAlerts.swift -------------------------------------------------------------------------------- /Source/Helpers/YPDeviceOrientationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPDeviceOrientationHelper.swift -------------------------------------------------------------------------------- /Source/Helpers/YPHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPHelper.swift -------------------------------------------------------------------------------- /Source/Helpers/YPLoaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPLoaders.swift -------------------------------------------------------------------------------- /Source/Helpers/YPLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPLoadingView.swift -------------------------------------------------------------------------------- /Source/Helpers/YPPhotoSaver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPPhotoSaver.swift -------------------------------------------------------------------------------- /Source/Helpers/YPVideoProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Helpers/YPVideoProcessor.swift -------------------------------------------------------------------------------- /Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Info.plist -------------------------------------------------------------------------------- /Source/Models/YPDragDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Models/YPDragDirection.swift -------------------------------------------------------------------------------- /Source/Models/YPError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Models/YPError.swift -------------------------------------------------------------------------------- /Source/Models/YPFlashMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Models/YPFlashMode.swift -------------------------------------------------------------------------------- /Source/Models/YPLibrarySelection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Models/YPLibrarySelection.swift -------------------------------------------------------------------------------- /Source/Models/YPLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Models/YPLog.swift -------------------------------------------------------------------------------- /Source/Models/YPMediaItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Models/YPMediaItem.swift -------------------------------------------------------------------------------- /Source/Models/YPTrimError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Models/YPTrimError.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/Album/YPAlbum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/Album/YPAlbum.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/Album/YPAlbumCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/Album/YPAlbumCell.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/Album/YPAlbumVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/Album/YPAlbumVC.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/Album/YPAlbumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/Album/YPAlbumView.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/Album/YPAlbumsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/Album/YPAlbumsManager.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/BottomPager/YPBottomPager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/BottomPager/YPBottomPager.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/BottomPager/YPBottomPagerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/BottomPager/YPBottomPagerView.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/BottomPager/YPMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/BottomPager/YPMenuItem.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/BottomPager/YPPagerMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/BottomPager/YPPagerMenu.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/LibraryMediaManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/LibraryMediaManager.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPAssetViewContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPAssetViewContainer.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPAssetZoomableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPAssetZoomableView.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPGridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPGridView.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibrary+LibraryChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibrary+LibraryChange.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibraryVC+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibraryVC+CollectionView.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibraryVC+PanGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibraryVC+PanGesture.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibraryVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibraryVC.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibraryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibraryView.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibraryView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibraryView.xib -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibraryViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibraryViewCell.swift -------------------------------------------------------------------------------- /Source/Pages/Gallery/YPLibraryViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Gallery/YPLibraryViewDelegate.swift -------------------------------------------------------------------------------- /Source/Pages/Photo/YPCameraVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Photo/YPCameraVC.swift -------------------------------------------------------------------------------- /Source/Pages/Photo/YPCameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Photo/YPCameraView.swift -------------------------------------------------------------------------------- /Source/Pages/Photo/YPPhotoCaptureHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Photo/YPPhotoCaptureHelper.swift -------------------------------------------------------------------------------- /Source/Pages/Video/YPVideoCaptureHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Video/YPVideoCaptureHelper.swift -------------------------------------------------------------------------------- /Source/Pages/Video/YPVideoCaptureVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Pages/Video/YPVideoCaptureVC.swift -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_arrow_down.imageset/Arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_arrow_down.imageset/Arrow.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_arrow_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_arrow_down.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_arrow_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_arrow_left.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_arrow_left.imageset/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_arrow_left.imageset/arrow_left.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_arrow_left.imageset/arrow_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_arrow_left.imageset/arrow_left@2x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_arrow_left.imageset/arrow_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_arrow_left.imageset/arrow_left@3x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconCapture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconCapture.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconCapture.imageset/iconCapture2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconCapture.imageset/iconCapture2.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconCrop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconCrop.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconCrop.imageset/yp_iconCrop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconCrop.imageset/yp_iconCrop2.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconCrop.imageset/yp_iconCrop2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconCrop.imageset/yp_iconCrop2@2x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconCrop.imageset/yp_iconCrop2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconCrop.imageset/yp_iconCrop2@3x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconFlash_auto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconFlash_auto.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconFlash_auto.imageset/yp_iconFlash_auto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconFlash_auto.imageset/yp_iconFlash_auto.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconFlash_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconFlash_off.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconFlash_off.imageset/yp_icon_flash_off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconFlash_off.imageset/yp_icon_flash_off.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconFlash_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconFlash_on.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconFlash_on.imageset/yp_iconFlash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconFlash_on.imageset/yp_iconFlash.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconLoop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconLoop.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconLoop.imageset/yp_iconLoop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconLoop.imageset/yp_iconLoop.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconVideoCapture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconVideoCapture.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconVideoCapture.imageset/iconCapture Copy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconVideoCapture.imageset/iconCapture Copy.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconVideoCaptureRecording.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconVideoCaptureRecording.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_iconVideoCaptureRecording.imageset/iconCapture Copy 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_iconVideoCaptureRecording.imageset/iconCapture Copy 2.pdf -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple.imageset/yp_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple.imageset/yp_multiple.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple.imageset/yp_multiple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple.imageset/yp_multiple@2x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple.imageset/yp_multiple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple.imageset/yp_multiple@3x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/yp_multiple_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/yp_multiple_colored.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/yp_multiple_colored@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/yp_multiple_colored@2x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/yp_multiple_colored@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_multiple_colored.imageset/yp_multiple_colored@3x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_play.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_play.imageset/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_play.imageset/play.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_play.imageset/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_play.imageset/play@2x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_play.imageset/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_play.imageset/play@3x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_remove.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_remove.imageset/Contents.json -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_remove.imageset/yp_remove@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_remove.imageset/yp_remove@1x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_remove.imageset/yp_remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_remove.imageset/yp_remove@2x.png -------------------------------------------------------------------------------- /Source/Resources/Assets.xcassets/yp_remove.imageset/yp_remove@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/Assets.xcassets/yp_remove.imageset/yp_remove@3x.png -------------------------------------------------------------------------------- /Source/Resources/ar.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/ar.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/bg.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/bg.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/cs.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/cs.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/da.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/da.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/de.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/de.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/en.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/en.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/es.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/es.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/fa.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/fa.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/fr.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/fr.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/he.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/he.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/id.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/id.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/it.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/it.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/ja.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/ja.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/km-KH.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/km-KH.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/km.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/km.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/ko.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/ko.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/nb.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/nb.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/nl.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/nl.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/pl.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/pl.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/pt-BR.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/pt-BR.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/pt-PT.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/pt-PT.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/ro.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/ro.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/ru.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/ru.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/sv.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/sv.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/th.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/th.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/tr.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/tr.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/vi.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/vi.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/zh-Hans.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/zh-Hans.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/Resources/zh-Hant.lproj/YPImagePickerLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/Resources/zh-Hant.lproj/YPImagePickerLocalizable.strings -------------------------------------------------------------------------------- /Source/SelectionsGallery/YPSelectionsGalleryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/SelectionsGallery/YPSelectionsGalleryCell.swift -------------------------------------------------------------------------------- /Source/SelectionsGallery/YPSelectionsGalleryVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/SelectionsGallery/YPSelectionsGalleryVC.swift -------------------------------------------------------------------------------- /Source/SelectionsGallery/YPSelectionsGalleryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/SelectionsGallery/YPSelectionsGalleryView.swift -------------------------------------------------------------------------------- /Source/YPImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/YPImagePicker.swift -------------------------------------------------------------------------------- /Source/YPImagePickerHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/YPImagePickerHeader.h -------------------------------------------------------------------------------- /Source/YPPickerVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/Source/YPPickerVC.swift -------------------------------------------------------------------------------- /YPImagePicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.podspec -------------------------------------------------------------------------------- /YPImagePicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YPImagePicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YPImagePicker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /YPImagePicker.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /YPImagePicker.xcodeproj/xcshareddata/xcschemes/YPImagePicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcodeproj/xcshareddata/xcschemes/YPImagePicker.xcscheme -------------------------------------------------------------------------------- /YPImagePicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YPImagePicker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /YPImagePicker.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yummypets/YPImagePicker/HEAD/YPImagePicker.xcworkspace/xcshareddata/swiftpm/Package.resolved --------------------------------------------------------------------------------