├── .gitignore ├── Kite-Print-SDK.podspec ├── Kite-SDK ├── CHANGELOG.md ├── Crashlytics.framework │ ├── Crashlytics │ ├── Headers │ │ ├── ANSCompatibility.h │ │ ├── Answers.h │ │ ├── CLSAttributes.h │ │ ├── CLSLogging.h │ │ ├── CLSReport.h │ │ ├── CLSStackFrame.h │ │ └── Crashlytics.h │ ├── Info.plist │ ├── Modules │ │ └── module.modulemap │ ├── run │ ├── submit │ └── uploadDSYM ├── Kite │ ├── Info.plist │ └── KiteSDK.h ├── KitePrintSDK.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── KitePrintSDK.xcscmblueprint │ └── xcshareddata │ │ └── xcschemes │ │ ├── Kite-CI-Deploy.xcscheme │ │ ├── KiteSDK-Demo.xcscheme │ │ └── KiteSDK.xcscheme ├── KitePrintSDK.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── KitePrintSDK.xcscmblueprint ├── KiteSDK-Demo.entitlements ├── LICENSE ├── PSPrintSDK │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AssetDataSource.h │ ├── AssetDataSource.m │ ├── Base.lproj │ │ ├── Main.storyboard │ │ ├── OLEditingToolsView.xib │ │ ├── OLHintView.xib │ │ └── OLKiteStoryboard.storyboard │ ├── CI-Main.storyboard │ ├── CI-ViewController.h │ ├── CI-ViewController.m │ ├── Categories │ │ ├── NSDecimalNumber+CostFormatter.h │ │ ├── NSDecimalNumber+CostFormatter.m │ │ ├── NSDictionary+RequestParameterData.h │ │ ├── NSDictionary+RequestParameterData.m │ │ ├── NSMutableArray+OLUserSelectedAssetsUtils.h │ │ ├── NSMutableArray+OLUserSelectedAssetsUtils.m │ │ ├── NSObject+Utils.h │ │ ├── NSObject+Utils.m │ │ ├── NSString+Formatting.h │ │ ├── NSString+Formatting.m │ │ ├── UIColor+OLHexString.h │ │ ├── UIColor+OLHexString.m │ │ ├── UIImage+ImageNamedInKiteBundle.h │ │ ├── UIImage+ImageNamedInKiteBundle.m │ │ ├── UIImage+OLUtils.h │ │ ├── UIImage+OLUtils.m │ │ ├── UIImageView+FadeIn.h │ │ ├── UIImageView+FadeIn.m │ │ ├── UIView+AutoLayoutHelper.h │ │ ├── UIView+AutoLayoutHelper.m │ │ ├── UIView+RoundRect.h │ │ ├── UIView+RoundRect.m │ │ ├── UIViewController+OLMethods.h │ │ └── UIViewController+OLMethods.m │ ├── CustomAssetCollectionDataSource.h │ ├── CustomAssetCollectionDataSource.m │ ├── Images.xcassets │ │ ├── 1.imageset │ │ │ ├── 1.jpg │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 1024x1024bb.jpg │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Spotlight-40.png │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ └── Icon-Spotlight-40@3x.png │ │ ├── Checkmark.imageset │ │ │ ├── Checkmark.png │ │ │ ├── Checkmark@2x.png │ │ │ ├── Checkmark@3x.png │ │ │ └── Contents.json │ │ ├── CheckmarkShadow.imageset │ │ │ ├── CheckmarkShadow.png │ │ │ ├── CheckmarkShadow@2x.png │ │ │ ├── CheckmarkShadow@3x.png │ │ │ └── Contents.json │ │ ├── CheckmarkUnselected.imageset │ │ │ ├── CheckmarkUnselected.png │ │ │ ├── CheckmarkUnselected@2x.png │ │ │ ├── CheckmarkUnselected@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── cat.imageset │ │ │ ├── Contents.json │ │ │ └── black_cat_filled.png │ │ └── dog.imageset │ │ │ ├── Contents.json │ │ │ └── dog_filled.png │ ├── KiteCI-Info.plist │ ├── KitePrintSDK-Info.plist │ ├── KitePrintSDK-Prefix.pch │ ├── KitePrintSDK.xcassets │ │ ├── Aa.imageset │ │ │ ├── Aa@2x.png │ │ │ ├── Aa@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Ellipse-shadow.imageset │ │ │ ├── Contents.json │ │ │ └── Ellipse-shadow.png │ │ ├── Ellipse.imageset │ │ │ ├── Contents.json │ │ │ └── Ellipse.png │ │ ├── OLCheckmark.imageset │ │ │ ├── Contents.json │ │ │ ├── Tick-Color@2x.png │ │ │ └── Tick-Color@3x.png │ │ ├── OLCheckmarkBg.imageset │ │ │ ├── Contents.json │ │ │ ├── OLCheckmarkBg@2x.png │ │ │ └── OLCheckmarkBg@3x.png │ │ ├── Tt.imageset │ │ │ ├── Contents.json │ │ │ ├── Tt@2x.png │ │ │ └── Tt@3x.png │ │ ├── add-image-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── add-image@2x.png │ │ │ └── add-image@3x.png │ │ ├── bigX.imageset │ │ │ ├── Contents.json │ │ │ ├── bigX@2x.png │ │ │ └── bigX@3x.png │ │ ├── bookmark.imageset │ │ │ ├── Contents.json │ │ │ ├── bookmark@2x.png │ │ │ └── bookmark@3x.png │ │ ├── button_arrow_down.imageset │ │ │ ├── Contents.json │ │ │ ├── arrow@2x.png │ │ │ └── arrow@3x.png │ │ ├── button_arrow_up.imageset │ │ │ ├── Contents.json │ │ │ ├── arrow@2x.png │ │ │ └── arrow@3x.png │ │ ├── cart-empty.imageset │ │ │ ├── Basket-empty@2x.png │ │ │ ├── Basket-empty@3x.png │ │ │ └── Contents.json │ │ ├── cart-full.imageset │ │ │ ├── Basket-full@2x.png │ │ │ ├── Basket-full@3x.png │ │ │ └── Contents.json │ │ ├── case-options-gloss.imageset │ │ │ ├── Contents.json │ │ │ └── case-options-gloss@2x.png │ │ ├── case-options-matte.imageset │ │ │ ├── Contents.json │ │ │ └── case-options-matte@2x.png │ │ ├── case-options.imageset │ │ │ ├── Contents.json │ │ │ ├── case-options@2x.png │ │ │ └── case-options@3x.png │ │ ├── circle-move.imageset │ │ │ ├── Contents.json │ │ │ ├── circle-move@2x.png │ │ │ └── circle-move@3x.png │ │ ├── circle-resize.imageset │ │ │ ├── Contents.json │ │ │ ├── circle-move@2x.png │ │ │ └── circle-move@3x.png │ │ ├── circle-rotate.imageset │ │ │ ├── Contents.json │ │ │ ├── rotate@2x.png │ │ │ └── rotate@3x.png │ │ ├── circle-x.imageset │ │ │ ├── Contents.json │ │ │ ├── circle-x@2x.png │ │ │ └── circle-x@3x.png │ │ ├── circle.imageset │ │ │ ├── Contents.json │ │ │ ├── circle@2x.png │ │ │ └── circle@3x.png │ │ ├── crop-corner-dl.imageset │ │ │ ├── Contents.json │ │ │ └── crop-corner-dl.png │ │ ├── crop-corner-dr.imageset │ │ │ ├── Contents.json │ │ │ └── crop-corner-dr.png │ │ ├── crop-corner-ul.imageset │ │ │ ├── Contents.json │ │ │ └── crop-corner-ul.png │ │ ├── crop-corner-ur.imageset │ │ │ ├── Contents.json │ │ │ └── crop-corner-ur.png │ │ ├── crop-line-down.imageset │ │ │ ├── Contents.json │ │ │ └── crop-line-down.png │ │ ├── crop-line-left.imageset │ │ │ ├── Contents.json │ │ │ └── crop-line-left.png │ │ ├── crop-line-right.imageset │ │ │ ├── Contents.json │ │ │ └── crop-line-right.png │ │ ├── crop-line-up.imageset │ │ │ ├── Contents.json │ │ │ └── crop-line-up.png │ │ ├── crop.imageset │ │ │ ├── Contents.json │ │ │ ├── crop@2x.png │ │ │ └── crop@3x.png │ │ ├── details-arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── details-arrow@2x.png │ │ │ └── details-arrow@3x.png │ │ ├── dropshadow.imageset │ │ │ ├── Contents.json │ │ │ ├── dropshadow@2x.png │ │ │ └── dropshadow@3x.png │ │ ├── dummy mask.imageset │ │ │ ├── Contents.json │ │ │ └── dummy_mask.png │ │ ├── endsession.imageset │ │ │ ├── Contents.json │ │ │ ├── Slice 1.png │ │ │ ├── Slice 1@2x copy.png │ │ │ └── Slice 1@3x.png │ │ ├── filters.imageset │ │ │ ├── Contents.json │ │ │ ├── filters@2x.png │ │ │ └── filters@3x.png │ │ ├── flip-black.imageset │ │ │ ├── Contents.json │ │ │ ├── flip icon@2x.png │ │ │ └── flip icon@3x.png │ │ ├── flip.imageset │ │ │ ├── Contents.json │ │ │ ├── flip@2x.png │ │ │ └── flip@3x.png │ │ ├── frame_border.imageset │ │ │ ├── Contents.json │ │ │ └── frame_border@2x.png │ │ ├── grey-bg.imageset │ │ │ ├── Contents.json │ │ │ └── grey-bg.png │ │ ├── grey-chevron.imageset │ │ │ ├── Contents.json │ │ │ ├── grey-chevron@2x.png │ │ │ └── grey-chevron@3x.png │ │ ├── import_facebook.imageset │ │ │ ├── Contents.json │ │ │ └── import_facebook@2x.png │ │ ├── import_gallery.imageset │ │ │ ├── Contents.json │ │ │ └── import_gallery@2x.png │ │ ├── import_instagram.imageset │ │ │ ├── Contents.json │ │ │ └── import_instagram@2x.png │ │ ├── line.imageset │ │ │ ├── Contents.json │ │ │ ├── line@2x-1.png │ │ │ ├── line@2x-2.png │ │ │ └── line@2x.png │ │ ├── loadingA.imageset │ │ │ ├── Contents.json │ │ │ └── loadingA.png │ │ ├── paint-bucket-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── paint-bucket-icon@2x.png │ │ │ └── paint-bucket-icon@3x.png │ │ ├── placeholder-small.imageset │ │ │ ├── Contents.json │ │ │ └── placeholder-small.png │ │ ├── plus.imageset │ │ │ ├── Contents.json │ │ │ └── plus.png │ │ ├── print-at-home.imageset │ │ │ ├── Contents.json │ │ │ └── T6830_lifestyle_Ctcm2451714551_Ttcm245108560332_F.png.jpg │ │ ├── quality-bannerA.imageset │ │ │ ├── Contents.json │ │ │ └── quality-bannerA@2x.png │ │ ├── quality-bannerB.imageset │ │ │ ├── Contents.json │ │ │ └── quality-bannerB@2x.png │ │ ├── quality-bannerC.imageset │ │ │ ├── Contents.json │ │ │ └── quality-bannerC@2x.png │ │ ├── quality.imageset │ │ │ ├── Contents.json │ │ │ └── Kite_750x1334.jpg.png │ │ ├── review-pencil.imageset │ │ │ ├── Contents.json │ │ │ ├── review-pencil.png │ │ │ ├── review-pencil@2x.png │ │ │ └── review-pencil@3x.png │ │ ├── right chevron.imageset │ │ │ ├── Contents.json │ │ │ └── right chevron@2x.png │ │ ├── rotate.imageset │ │ │ ├── Contents.json │ │ │ ├── rotate@2x.png │ │ │ └── rotate@3x.png │ │ ├── shirt-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── shirt-icon@2x.png │ │ │ └── shirt-icon@3x.png │ │ ├── shirt-size-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── shirt-size-icon@2x.png │ │ │ └── shirt-size-icon@3x.png │ │ ├── template chevron.imageset │ │ │ ├── Contents.json │ │ │ └── black chevron@2x.png │ │ ├── tool-size.imageset │ │ │ ├── Contents.json │ │ │ ├── tool-size@2x.png │ │ │ └── tool-size@3x.png │ │ ├── tools-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Icons@2x.png │ │ │ └── Icons@3x.png │ │ ├── white gradient.imageset │ │ │ ├── Contents.json │ │ │ └── white gradient@2x.png │ │ ├── x-button.imageset │ │ │ ├── Contents.json │ │ │ ├── x.png │ │ │ ├── x@2x.png │ │ │ └── x@3x.png │ │ └── x.imageset │ │ │ ├── Contents.json │ │ │ ├── x@2x.png │ │ │ └── x@3x.png │ ├── OL3DProductViewController.h │ ├── OL3DProductViewController.m │ ├── OLAPIClient.h │ ├── OLAPIClient.m │ ├── OLAnalytics.h │ ├── OLAnalytics.m │ ├── OLApparelPrintJob.h │ ├── OLApparelPrintJob.m │ ├── OLApparelViewController.h │ ├── OLApparelViewController.m │ ├── OLArtboardAssetView.h │ ├── OLArtboardAssetView.m │ ├── OLArtboardTemplate.h │ ├── OLArtboardTemplate.m │ ├── OLArtboardView.h │ ├── OLArtboardView.m │ ├── OLAsset+Private.h │ ├── OLAsset.h │ ├── OLAsset.m │ ├── OLBasketItemTableViewCell.h │ ├── OLBasketItemTableViewCell.m │ ├── OLButtonCollectionViewCell.h │ ├── OLButtonCollectionViewCell.m │ ├── OLCalendarPrintJob.h │ ├── OLCalendarPrintJob.m │ ├── OLCaseViewController.h │ ├── OLCaseViewController.m │ ├── OLCircleMaskCollectionViewCell.h │ ├── OLCircleMaskCollectionViewCell.m │ ├── OLCircleSelectedCollectionViewCell.h │ ├── OLCircleSelectedCollectionViewCell.m │ ├── OLCircularProgressView.h │ ├── OLCircularProgressView.m │ ├── OLCollagePosterViewController.h │ ├── OLCollagePosterViewController.m │ ├── OLCollectionViewController.h │ ├── OLCollectionViewController.m │ ├── OLColorSelectionCollectionViewCell.h │ ├── OLColorSelectionCollectionViewCell.m │ ├── OLConstants.h │ ├── OLConstants.m │ ├── OLCountry.h │ ├── OLCountry.m │ ├── OLCustomImagePickerViewControllerDelegate.h │ ├── OLCustomPickerController.h │ ├── OLCustomViewControllerPhotoProvider.h │ ├── OLCustomViewControllerPhotoProvider.m │ ├── OLEditingToolsView.h │ ├── OLEditingToolsView.m │ ├── OLFrameOrderReviewViewController.h │ ├── OLFrameOrderReviewViewController.m │ ├── OLFulfilmentItem.h │ ├── OLFulfilmentItem.m │ ├── OLGreetingCardPrintJob.h │ ├── OLGreetingCardPrintJob.m │ ├── OLHPSDKWrapper.h │ ├── OLHPSDKWrapper.m │ ├── OLImageCachingManager.h │ ├── OLImageCachingManager.m │ ├── OLImageCropper.h │ ├── OLImageCropper.m │ ├── OLImageDownloadDelegate.h │ ├── OLImageDownloadDelegate.m │ ├── OLImageDownloader.h │ ├── OLImageDownloader.m │ ├── OLImageEditViewController.h │ ├── OLImageEditViewController.m │ ├── OLImagePickerLoginPageViewController.h │ ├── OLImagePickerLoginPageViewController.m │ ├── OLImagePickerNavigationControllerViewController.h │ ├── OLImagePickerNavigationControllerViewController.m │ ├── OLImagePickerPageViewController.h │ ├── OLImagePickerPageViewController.m │ ├── OLImagePickerPhotosPageViewController.h │ ├── OLImagePickerPhotosPageViewController.m │ ├── OLImagePickerProvider.h │ ├── OLImagePickerProvider.m │ ├── OLImagePickerProviderCollection.h │ ├── OLImagePickerProviderCollection.m │ ├── OLImagePickerViewController.h │ ├── OLImagePickerViewController.m │ ├── OLImagePreviewViewController.h │ ├── OLImagePreviewViewController.m │ ├── OLImageRenderOptions.h │ ├── OLImageRenderOptions.m │ ├── OLImageView.h │ ├── OLImageView.m │ ├── OLInfoBanner.h │ ├── OLInfoBanner.m │ ├── OLInfoPageViewController.h │ ├── OLInfoPageViewController.m │ ├── OLKioskLandingViewController.h │ ├── OLKioskLandingViewController.m │ ├── OLKiteABTesting.h │ ├── OLKiteABTesting.m │ ├── OLKiteLocalizationResources.bundle │ │ ├── cs.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── da.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── de.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── en.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── es.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── fi.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── fr.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── hu.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── it.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── nb.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── nl.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── pl.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── pt.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ ├── sk.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ │ └── sv.lproj │ │ │ ├── KitePrintSDK.secondary.csv │ │ │ ├── KitePrintSDK.strings │ │ │ ├── KitePrintSDK.translated.csv │ │ │ └── KitePrintSDK.untranslated.csv │ ├── OLKitePrintSDK.h │ ├── OLKitePrintSDK.m │ ├── OLKiteUtils.h │ ├── OLKiteUtils.m │ ├── OLKiteViewController+Private.h │ ├── OLKiteViewController+Theme.h │ ├── OLKiteViewController.h │ ├── OLKiteViewController.m │ ├── OLLogoutViewController.h │ ├── OLLogoutViewController.m │ ├── OLMarkdownParser.h │ ├── OLMarkdownParser.m │ ├── OLNavigationController.h │ ├── OLNavigationController.m │ ├── OLPackProductViewController.h │ ├── OLPackProductViewController.m │ ├── OLPhotoEdits.h │ ├── OLPhotoEdits.m │ ├── OLPhotoTextField.h │ ├── OLPhotoTextField.m │ ├── OLPlaceholderAsset.h │ ├── OLPlaceholderAsset.m │ ├── OLPolaroidPrintJob.h │ ├── OLPolaroidPrintJob.m │ ├── OLPostcardPrintJob.h │ ├── OLPostcardPrintJob.m │ ├── OLPrintEnvironment.h │ ├── OLPrintJob.h │ ├── OLPrintJob.m │ ├── OLProduct.h │ ├── OLProduct.m │ ├── OLProductDetailsViewController.h │ ├── OLProductDetailsViewController.m │ ├── OLProductGroup.h │ ├── OLProductGroup.m │ ├── OLProductHomeViewController.h │ ├── OLProductHomeViewController.m │ ├── OLProductOverviewPageContentViewController.h │ ├── OLProductOverviewPageContentViewController.m │ ├── OLProductOverviewViewController.h │ ├── OLProductOverviewViewController.m │ ├── OLProductPrintJob.h │ ├── OLProductPrintJob.m │ ├── OLProductRepresentation.h │ ├── OLProductRepresentation.m │ ├── OLProductTemplate.h │ ├── OLProductTemplate.m │ ├── OLProductTemplateCollection.h │ ├── OLProductTemplateCollection.m │ ├── OLProductTemplateOption.h │ ├── OLProductTemplateOption.m │ ├── OLProductTemplateOptionChoice.h │ ├── OLProductTemplateOptionChoice.m │ ├── OLProductTemplateSyncRequest.h │ ├── OLProductTemplateSyncRequest.m │ ├── OLProductTypeSelectionViewController.h │ ├── OLProductTypeSelectionViewController.m │ ├── OLQRCodeUploadViewController.h │ ├── OLQRCodeUploadViewController.m │ ├── OLRemoteDataPoller.h │ ├── OLRemoteDataPoller.m │ ├── OLSelectedEffectButton.h │ ├── OLSelectedEffectButton.m │ ├── OLShippingClass.h │ ├── OLShippingClass.m │ ├── OLSingleImagePosterViewController.h │ ├── OLSingleImagePosterViewController.m │ ├── OLSingleProductReviewViewController.h │ ├── OLSingleProductReviewViewController.m │ ├── OLTextOnPhoto.h │ ├── OLTextOnPhoto.m │ ├── OLTouchReporterView.h │ ├── OLTouchReporterView.m │ ├── OLTouchTolerantView.h │ ├── OLTouchTolerantView.m │ ├── OLURLShortener.h │ ├── OLURLShortener.m │ ├── OLUserSession.h │ ├── OLUserSession.m │ ├── OLViewController.h │ ├── OLViewController.m │ ├── RMImageCropper │ │ ├── LICENSE │ │ ├── RMImageCropper.h │ │ ├── RMImageCropper.m │ │ ├── UIView+RMUtils.h │ │ └── UIView+RMUtils.m │ ├── ViewController.h │ ├── ViewController.m │ ├── kite_corrupt.jpg │ ├── main.m │ └── mug.scn ├── Podfile ├── Podfile.lock ├── docs │ ├── 12_ios_apns_certificate_1_2x.png │ ├── 12_ios_apns_certificate_2_2x.png │ ├── 12_ios_apns_certificate_3_2x.png │ ├── 4_enablepushnotifications_2x.png │ ├── OLKitePrintSDK.md │ ├── applepay.md │ ├── create_print_jobs.md │ ├── custom_photo_sources.md │ ├── entry_filtered.png │ ├── entry_home.png │ ├── entry_payment.png │ ├── entry_points.md │ ├── hp_sdk.md │ ├── hp_sdk.png │ ├── keychain_export.png │ ├── kite.png │ ├── localization.md │ ├── migration.md │ ├── no_loading.md │ ├── payment.md │ ├── print-shop1.jpg │ ├── print_shop.md │ ├── push_notifications.md │ ├── push_notifications.png │ ├── sdk-overview.png │ ├── social.png │ └── social_photo_sources.md ├── update-localization-files.py └── update-localization-files.sh ├── README.md └── circle.yml /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | *.*~ 4 | *~ 5 | # Xcode 6 | build/ 7 | *.pbxuser 8 | !default.pbxuser 9 | *.mode1v3 10 | !default.mode1v3 11 | *.mode2v3 12 | !default.mode2v3 13 | *.perspectivev3 14 | !default.perspectivev3 15 | xcuserdata 16 | *.xccheckout 17 | profile 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | KitePrintSDK-appledocs 23 | 24 | # CocoaPods 25 | Pods 26 | Podfile~ 27 | Gemfile.lock 28 | /Kite-SDK/Archive 29 | .gitattributes 30 | /Kite-CI-Deploy.app.dSYM.zip 31 | /Kite-SDK/Unity-Plugin 32 | /Kite-SDK/.idea 33 | /Carthage 34 | /Kite-SDK/KitePrintSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 35 | -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/Crashlytics.framework/Crashlytics -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/Headers/ANSCompatibility.h: -------------------------------------------------------------------------------- 1 | // 2 | // ANSCompatibility.h 3 | // AnswersKit 4 | // 5 | // Copyright (c) 2015 Crashlytics, Inc. All rights reserved. 6 | // 7 | 8 | #pragma once 9 | 10 | #if !__has_feature(nullability) 11 | #define nonnull 12 | #define nullable 13 | #define _Nullable 14 | #define _Nonnull 15 | #endif 16 | 17 | #ifndef NS_ASSUME_NONNULL_BEGIN 18 | #define NS_ASSUME_NONNULL_BEGIN 19 | #endif 20 | 21 | #ifndef NS_ASSUME_NONNULL_END 22 | #define NS_ASSUME_NONNULL_END 23 | #endif 24 | 25 | #if __has_feature(objc_generics) 26 | #define ANS_GENERIC_NSARRAY(type) NSArray 27 | #define ANS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 28 | #else 29 | #define ANS_GENERIC_NSARRAY(type) NSArray 30 | #define ANS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 31 | #endif 32 | -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/Headers/CLSAttributes.h: -------------------------------------------------------------------------------- 1 | // 2 | // CLSAttributes.h 3 | // Crashlytics 4 | // 5 | // Copyright (c) 2015 Crashlytics, Inc. All rights reserved. 6 | // 7 | 8 | #pragma once 9 | 10 | #define CLS_DEPRECATED(x) __attribute__ ((deprecated(x))) 11 | 12 | #if !__has_feature(nullability) 13 | #define nonnull 14 | #define nullable 15 | #define _Nullable 16 | #define _Nonnull 17 | #endif 18 | 19 | #ifndef NS_ASSUME_NONNULL_BEGIN 20 | #define NS_ASSUME_NONNULL_BEGIN 21 | #endif 22 | 23 | #ifndef NS_ASSUME_NONNULL_END 24 | #define NS_ASSUME_NONNULL_END 25 | #endif 26 | 27 | #if __has_feature(objc_generics) 28 | #define CLS_GENERIC_NSARRAY(type) NSArray 29 | #define CLS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 30 | #else 31 | #define CLS_GENERIC_NSARRAY(type) NSArray 32 | #define CLS_GENERIC_NSDICTIONARY(key_type,object_key) NSDictionary 33 | #endif 34 | -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/Headers/CLSStackFrame.h: -------------------------------------------------------------------------------- 1 | // 2 | // CLSStackFrame.h 3 | // Crashlytics 4 | // 5 | // Copyright 2015 Crashlytics, Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "CLSAttributes.h" 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | /** 14 | * 15 | * This class is used in conjunction with -[Crashlytics recordCustomExceptionName:reason:frameArray:] to 16 | * record information about non-ObjC/C++ exceptions. All information included here will be displayed 17 | * in the Crashlytics UI, and can influence crash grouping. Be particularly careful with the use of the 18 | * address property. If set, Crashlytics will attempt symbolication and could overwrite other properities 19 | * in the process. 20 | * 21 | **/ 22 | @interface CLSStackFrame : NSObject 23 | 24 | + (instancetype)stackFrame; 25 | + (instancetype)stackFrameWithAddress:(NSUInteger)address; 26 | + (instancetype)stackFrameWithSymbol:(NSString *)symbol; 27 | 28 | @property (nonatomic, copy, nullable) NSString *symbol; 29 | @property (nonatomic, copy, nullable) NSString *library; 30 | @property (nonatomic, copy, nullable) NSString *fileName; 31 | @property (nonatomic, assign) uint32_t lineNumber; 32 | @property (nonatomic, assign) uint64_t offset; 33 | @property (nonatomic, assign) uint64_t address; 34 | 35 | @end 36 | 37 | NS_ASSUME_NONNULL_END 38 | -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 14F1021 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | Crashlytics 11 | CFBundleIdentifier 12 | com.twitter.crashlytics.ios 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Crashlytics 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 3.7.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | iPhoneOS 26 | 27 | CFBundleVersion 28 | 102 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13B137 33 | DTPlatformName 34 | iphoneos 35 | DTPlatformVersion 36 | 9.1 37 | DTSDKBuild 38 | 13B137 39 | DTSDKName 40 | iphoneos9.1 41 | DTXcode 42 | 0710 43 | DTXcodeBuild 44 | 7B91b 45 | MinimumOSVersion 46 | 6.0 47 | NSHumanReadableCopyright 48 | Copyright © 2015 Crashlytics, Inc. All rights reserved. 49 | UIDeviceFamily 50 | 51 | 1 52 | 2 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Crashlytics { 2 | header "Crashlytics.h" 3 | header "Answers.h" 4 | header "ANSCompatibility.h" 5 | header "CLSLogging.h" 6 | header "CLSReport.h" 7 | header "CLSStackFrame.h" 8 | header "CLSAttributes.h" 9 | 10 | export * 11 | 12 | link "z" 13 | link "c++" 14 | } 15 | -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # run 4 | # 5 | # Copyright (c) 2015 Crashlytics. All rights reserved. 6 | 7 | # Figure out where we're being called from 8 | DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) 9 | 10 | # Quote path in case of spaces or special chars 11 | DIR="\"${DIR}" 12 | 13 | PATH_SEP="/" 14 | VALIDATE_COMMAND="uploadDSYM\" $@ validate run-script" 15 | UPLOAD_COMMAND="uploadDSYM\" $@ run-script" 16 | 17 | # Ensure params are as expected, run in sync mode to validate 18 | eval $DIR$PATH_SEP$VALIDATE_COMMAND 19 | return_code=$? 20 | 21 | if [[ $return_code != 0 ]]; then 22 | exit $return_code 23 | fi 24 | 25 | # Verification passed, upload dSYM in background to prevent Xcode from waiting 26 | # Note: Validation is performed again before upload. 27 | # Output can still be found in Console.app 28 | eval $DIR$PATH_SEP$UPLOAD_COMMAND > /dev/null 2>&1 & 29 | -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Kite-SDK/Crashlytics.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/Crashlytics.framework/uploadDSYM -------------------------------------------------------------------------------- /Kite-SDK/Kite/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Kite-SDK/Kite/KiteSDK.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | //! Project version number for KiteSDK. 33 | FOUNDATION_EXPORT double KiteVersionNumber; 34 | 35 | //! Project version string for KiteSDK. 36 | FOUNDATION_EXPORT const unsigned char KiteVersionString[]; 37 | 38 | #import 39 | -------------------------------------------------------------------------------- /Kite-SDK/KitePrintSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Kite-SDK/KitePrintSDK.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Kite-SDK/KiteSDK-Demo.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.in-app-payments 6 | 7 | merchant.ly.kite.sdk 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Kite-SDK/LICENSE: -------------------------------------------------------------------------------- 1 | Modified MIT License 2 | 3 | Copyright (c) 2010-2015 Kite Tech Ltd. https://www.kite.ly 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 13 | to be used with any competitor platforms. This means the software MAY NOT be modified 14 | to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 15 | Kite Tech Ltd platform servers. 16 | 17 | The above copyright notice and this permission notice shall be included in 18 | all copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 26 | THE SOFTWARE. -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface AppDelegate : UIResponder 33 | 34 | @property (strong, nonatomic) UIWindow *window; 35 | @property (strong, nonatomic) NSMutableDictionary *setupProperties; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/AssetDataSource.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | #import "KITAssetDataSource.h" 32 | #import "OLAsset+Private.h" 33 | 34 | @interface AssetDataSource : OLAsset 35 | + (AssetDataSource *)assetWithURL:(NSURL *)url; 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/CI-ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface CIViewController : UIViewController 33 | - (void)showKiteVcForAPIKey:(NSString *)s assets:(NSArray *)assets; 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/NSDecimalNumber+CostFormatter.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface NSDecimalNumber (CostFormatter) 33 | 34 | - (NSString *)formatCostForCurrencyCode:(NSString *)currencyCode; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/NSDictionary+RequestParameterData.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface NSDictionary (RequestParameterData) 33 | 34 | - (NSData *)requestParameterData; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/NSObject+Utils.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface NSObject (Utils) 33 | 34 | - (void)safePerformSelector:(SEL)selector withObject:(id)object; 35 | - (id)safePerformSelectorWithReturn:(SEL)selector withObject:(id)object; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/UIColor+OLHexString.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+HexString.h 3 | // 4 | // Created by Micah Hainline 5 | // http://stackoverflow.com/users/590840/micah-hainline 6 | // 7 | 8 | #import 9 | 10 | @interface UIColor (OLHexString) 11 | 12 | + (CGFloat) colorComponentFrom: (NSString *) string start: (NSUInteger) start length: (NSUInteger) length; 13 | + (UIColor *) colorWithHexString: (NSString *) hexString; 14 | + (UIColor *) textColorForBackGroundColor:(UIColor *)color; 15 | - (NSString *)hexString; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/UIImage+ImageNamedInKiteBundle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface UIImage (ImageNamedInKiteBundle) 33 | 34 | + (UIImage*)imageNamedInKiteBundle:(NSString*)name; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/UIView+RoundRect.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface UIView (RoundRect) 33 | 34 | - (void) makeRoundRectWithRadius:(CGFloat)radius; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/UIView+RoundRect.m: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "UIView+RoundRect.h" 31 | 32 | @implementation UIView (RoundRect) 33 | 34 | - (void) makeRoundRectWithRadius:(CGFloat)radius{ 35 | CALayer *layer = [self layer]; 36 | [layer setMasksToBounds:YES]; 37 | [layer setCornerRadius:radius]; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Categories/UIViewController+OLMethods.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface UIViewController (OLMethods) 33 | 34 | - (void)addBasketIconToTopRight; 35 | - (BOOL)isPushed; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/CustomAssetCollectionDataSource.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | #import 30 | #import "KITAssetCollectionDataSource.h" 31 | 32 | @interface CustomAssetCollectionDataSource : NSObject 33 | 34 | - (NSUInteger)count; 35 | - (id)objectAtIndex:(NSUInteger)index; 36 | 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/1.imageset/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/1.imageset/1.jpg -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "1.jpg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/1024x1024bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/1024x1024bb.jpg -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/Checkmark.imageset/Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/Checkmark.imageset/Checkmark.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/Checkmark.imageset/Checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/Checkmark.imageset/Checkmark@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/Checkmark.imageset/Checkmark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/Checkmark.imageset/Checkmark@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/Checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "Checkmark.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "Checkmark@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "Checkmark@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkShadow.imageset/CheckmarkShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkShadow.imageset/CheckmarkShadow.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkShadow.imageset/CheckmarkShadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkShadow.imageset/CheckmarkShadow@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkShadow.imageset/CheckmarkShadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkShadow.imageset/CheckmarkShadow@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkShadow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "CheckmarkShadow.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "CheckmarkShadow@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "CheckmarkShadow@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkUnselected.imageset/CheckmarkUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkUnselected.imageset/CheckmarkUnselected.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkUnselected.imageset/CheckmarkUnselected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkUnselected.imageset/CheckmarkUnselected@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkUnselected.imageset/CheckmarkUnselected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkUnselected.imageset/CheckmarkUnselected@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/CheckmarkUnselected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "CheckmarkUnselected.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "CheckmarkUnselected@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "CheckmarkUnselected@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "extent" : "full-screen", 14 | "minimum-system-version" : "7.0", 15 | "subtype" : "retina4", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/cat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "black_cat_filled.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/cat.imageset/black_cat_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/cat.imageset/black_cat_filled.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/dog.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "dog_filled.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/Images.xcassets/dog.imageset/dog_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/Images.xcassets/dog.imageset/dog_filled.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_8_0 10 | #warning "This project uses features only available in iOS SDK 8.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Aa.imageset/Aa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Aa.imageset/Aa@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Aa.imageset/Aa@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Aa.imageset/Aa@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Aa.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Aa@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "Aa@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Ellipse-shadow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Ellipse-shadow.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Ellipse-shadow.imageset/Ellipse-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Ellipse-shadow.imageset/Ellipse-shadow.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Ellipse.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Ellipse.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Ellipse.imageset/Ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Ellipse.imageset/Ellipse.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Tick-Color@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "Tick-Color@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmark.imageset/Tick-Color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmark.imageset/Tick-Color@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmark.imageset/Tick-Color@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmark.imageset/Tick-Color@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmarkBg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "OLCheckmarkBg@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "OLCheckmarkBg@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmarkBg.imageset/OLCheckmarkBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmarkBg.imageset/OLCheckmarkBg@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmarkBg.imageset/OLCheckmarkBg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/OLCheckmarkBg.imageset/OLCheckmarkBg@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Tt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Tt@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "Tt@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Tt.imageset/Tt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Tt.imageset/Tt@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Tt.imageset/Tt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/Tt.imageset/Tt@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/add-image-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "add-image@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "add-image@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/add-image-icon.imageset/add-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/add-image-icon.imageset/add-image@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/add-image-icon.imageset/add-image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/add-image-icon.imageset/add-image@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bigX.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bigX@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "bigX@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bigX.imageset/bigX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bigX.imageset/bigX@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bigX.imageset/bigX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bigX.imageset/bigX@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bookmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bookmark@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "bookmark@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bookmark.imageset/bookmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bookmark.imageset/bookmark@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bookmark.imageset/bookmark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/bookmark.imageset/bookmark@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "arrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "arrow@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_down.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_down.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_down.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_down.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "arrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "arrow@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_up.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_up.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_up.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/button_arrow_up.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-empty.imageset/Basket-empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-empty.imageset/Basket-empty@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-empty.imageset/Basket-empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-empty.imageset/Basket-empty@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-empty.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Basket-empty@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "Basket-empty@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-full.imageset/Basket-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-full.imageset/Basket-full@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-full.imageset/Basket-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-full.imageset/Basket-full@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/cart-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Basket-full@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "Basket-full@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options-gloss.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "case-options-gloss@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options-gloss.imageset/case-options-gloss@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options-gloss.imageset/case-options-gloss@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options-matte.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "case-options-matte@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options-matte.imageset/case-options-matte@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options-matte.imageset/case-options-matte@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "case-options@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "case-options@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options.imageset/case-options@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options.imageset/case-options@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options.imageset/case-options@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/case-options.imageset/case-options@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-move.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "circle-move@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "circle-move@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-move.imageset/circle-move@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-move.imageset/circle-move@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-move.imageset/circle-move@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-move.imageset/circle-move@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-resize.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "circle-move@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "circle-move@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-resize.imageset/circle-move@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-resize.imageset/circle-move@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-resize.imageset/circle-move@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-resize.imageset/circle-move@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-rotate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "rotate@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "rotate@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-rotate.imageset/rotate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-rotate.imageset/rotate@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-rotate.imageset/rotate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-rotate.imageset/rotate@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-x.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "circle-x@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "circle-x@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-x.imageset/circle-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-x.imageset/circle-x@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-x.imageset/circle-x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle-x.imageset/circle-x@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "circle@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "circle@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle.imageset/circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle.imageset/circle@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle.imageset/circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/circle.imageset/circle@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-dl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-corner-dl.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-dl.imageset/crop-corner-dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-dl.imageset/crop-corner-dl.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-dr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-corner-dr.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-dr.imageset/crop-corner-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-dr.imageset/crop-corner-dr.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-ul.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-corner-ul.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-ul.imageset/crop-corner-ul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-ul.imageset/crop-corner-ul.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-ur.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-corner-ur.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-ur.imageset/crop-corner-ur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-corner-ur.imageset/crop-corner-ur.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-line-down.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-down.imageset/crop-line-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-down.imageset/crop-line-down.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-line-left.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-left.imageset/crop-line-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-left.imageset/crop-line-left.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-line-right.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-right.imageset/crop-line-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-right.imageset/crop-line-right.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "crop-line-up.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-up.imageset/crop-line-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop-line-up.imageset/crop-line-up.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "crop@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "crop@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop.imageset/crop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop.imageset/crop@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop.imageset/crop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/crop.imageset/crop@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/details-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "details-arrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "details-arrow@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/details-arrow.imageset/details-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/details-arrow.imageset/details-arrow@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/details-arrow.imageset/details-arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/details-arrow.imageset/details-arrow@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dropshadow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "dropshadow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "dropshadow@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dropshadow.imageset/dropshadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dropshadow.imageset/dropshadow@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dropshadow.imageset/dropshadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dropshadow.imageset/dropshadow@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dummy mask.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "dummy_mask.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dummy mask.imageset/dummy_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/dummy mask.imageset/dummy_mask.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/endsession.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Slice 1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "Slice 1@2x copy.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "Slice 1@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/endsession.imageset/Slice 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/endsession.imageset/Slice 1.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/endsession.imageset/Slice 1@2x copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/endsession.imageset/Slice 1@2x copy.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/endsession.imageset/Slice 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/endsession.imageset/Slice 1@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/filters.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "filters@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "filters@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/filters.imageset/filters@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/filters.imageset/filters@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/filters.imageset/filters@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/filters.imageset/filters@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip-black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "flip icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "flip icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip-black.imageset/flip icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip-black.imageset/flip icon@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip-black.imageset/flip icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip-black.imageset/flip icon@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "flip@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "flip@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip.imageset/flip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip.imageset/flip@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip.imageset/flip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/flip.imageset/flip@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/frame_border.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "frame_border@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/frame_border.imageset/frame_border@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/frame_border.imageset/frame_border@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "grey-bg.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-bg.imageset/grey-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-bg.imageset/grey-bg.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-chevron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "grey-chevron@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "grey-chevron@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-chevron.imageset/grey-chevron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-chevron.imageset/grey-chevron@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-chevron.imageset/grey-chevron@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/grey-chevron.imageset/grey-chevron@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "import_facebook@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_facebook.imageset/import_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_facebook.imageset/import_facebook@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_gallery.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "import_gallery@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_gallery.imageset/import_gallery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_gallery.imageset/import_gallery@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_instagram.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "import_instagram@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_instagram.imageset/import_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/import_instagram.imageset/import_instagram@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/line.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "line@2x-2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "line@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "line@2x-1.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/line.imageset/line@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/line.imageset/line@2x-1.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/line.imageset/line@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/line.imageset/line@2x-2.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/line.imageset/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/line.imageset/line@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/loadingA.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "loadingA.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/loadingA.imageset/loadingA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/loadingA.imageset/loadingA.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/paint-bucket-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "paint-bucket-icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "paint-bucket-icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/paint-bucket-icon.imageset/paint-bucket-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/paint-bucket-icon.imageset/paint-bucket-icon@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/paint-bucket-icon.imageset/paint-bucket-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/paint-bucket-icon.imageset/paint-bucket-icon@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/placeholder-small.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "placeholder-small.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/placeholder-small.imageset/placeholder-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/placeholder-small.imageset/placeholder-small.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "plus.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/plus.imageset/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/plus.imageset/plus.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/print-at-home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "T6830_lifestyle_Ctcm2451714551_Ttcm245108560332_F.png.jpg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/print-at-home.imageset/T6830_lifestyle_Ctcm2451714551_Ttcm245108560332_F.png.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/print-at-home.imageset/T6830_lifestyle_Ctcm2451714551_Ttcm245108560332_F.png.jpg -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerA.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "quality-bannerA@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerA.imageset/quality-bannerA@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerA.imageset/quality-bannerA@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerB.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "quality-bannerB@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerB.imageset/quality-bannerB@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerB.imageset/quality-bannerB@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerC.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "quality-bannerC@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerC.imageset/quality-bannerC@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality-bannerC.imageset/quality-bannerC@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Kite_750x1334.jpg.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality.imageset/Kite_750x1334.jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/quality.imageset/Kite_750x1334.jpg.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/review-pencil.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "review-pencil.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "review-pencil@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "review-pencil@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/review-pencil.imageset/review-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/review-pencil.imageset/review-pencil.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/review-pencil.imageset/review-pencil@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/review-pencil.imageset/review-pencil@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/review-pencil.imageset/review-pencil@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/review-pencil.imageset/review-pencil@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/right chevron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "right chevron@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/right chevron.imageset/right chevron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/right chevron.imageset/right chevron@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/rotate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "rotate@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "rotate@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/rotate.imageset/rotate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/rotate.imageset/rotate@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/rotate.imageset/rotate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/rotate.imageset/rotate@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "shirt-icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "shirt-icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-icon.imageset/shirt-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-icon.imageset/shirt-icon@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-icon.imageset/shirt-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-icon.imageset/shirt-icon@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-size-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "shirt-size-icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "shirt-size-icon@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-size-icon.imageset/shirt-size-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-size-icon.imageset/shirt-size-icon@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-size-icon.imageset/shirt-size-icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/shirt-size-icon.imageset/shirt-size-icon@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/template chevron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "black chevron@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/template chevron.imageset/black chevron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/template chevron.imageset/black chevron@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tool-size.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tool-size@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "tool-size@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tool-size.imageset/tool-size@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tool-size.imageset/tool-size@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tool-size.imageset/tool-size@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tool-size.imageset/tool-size@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tools-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Icons@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "Icons@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tools-icon.imageset/Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tools-icon.imageset/Icons@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tools-icon.imageset/Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/tools-icon.imageset/Icons@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/white gradient.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "white gradient@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/white gradient.imageset/white gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/white gradient.imageset/white gradient@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x-button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "x@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "x@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | }, 23 | "properties" : { 24 | "template-rendering-intent" : "template" 25 | } 26 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x-button.imageset/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x-button.imageset/x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x-button.imageset/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x-button.imageset/x@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x-button.imageset/x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x-button.imageset/x@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "x@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "x@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "template" 24 | } 25 | } -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x.imageset/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x.imageset/x@2x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x.imageset/x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/KitePrintSDK.xcassets/x.imageset/x@3x.png -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OL3DProductViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLSingleProductReviewViewController.h" 31 | 32 | @interface OL3DProductViewController : OLSingleProductReviewViewController 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLAPIClient.h: -------------------------------------------------------------------------------- 1 | // 2 | // OLAPIClient.h 3 | // KiteSDK 4 | // 5 | // Created by Jaime Landazuri on 18/03/2019. 6 | // Copyright © 2019 Kite.ly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef void (^OLAPIClientRequestHandler)(NSInteger httpStatusCode, id json, NSError *error); 12 | 13 | @interface OLAPIClient : NSObject 14 | 15 | + (id)shared; 16 | - (void)getWithURL:(NSURL *)url parameters:(NSDictionary *)parameters headers:(NSDictionary *)headers requestIdentifier:(NSNumber **)requestIdentifier completionHandler:(OLAPIClientRequestHandler)completionHandler; 17 | - (void)cancelRequestWithIdentifier:(NSNumber *)requestIdentifier; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLApparelViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLCaseViewController.h" 31 | 32 | @interface OLApparelViewController : OLCaseViewController 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLArtboardTemplate.m: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLArtboardTemplate.h" 31 | 32 | @implementation OLArtboardTemplate 33 | 34 | - (NSInteger)numberOfPhotos{ 35 | return self.positions.count; 36 | } 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLBasketItemTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // OLBasketItemTableViewCell.h 3 | // KiteSDK 4 | // 5 | // Created by Konstadinos Karayannis on 26/10/2017. 6 | // Copyright © 2017 Kite.ly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OLBasketItemTableViewCell : UITableViewCell 12 | @property (strong, nonatomic) NSString *productTemplate; 13 | @end 14 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLBasketItemTableViewCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // OLBasketItemTableViewCell.m 3 | // KiteSDK 4 | // 5 | // Created by Konstadinos Karayannis on 26/10/2017. 6 | // Copyright © 2017 Kite.ly. All rights reserved. 7 | // 8 | 9 | #import "OLBasketItemTableViewCell.h" 10 | 11 | @implementation OLBasketItemTableViewCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCalendarPrintJob.h: -------------------------------------------------------------------------------- 1 | // 2 | // OLCalendarPrintJob.h 3 | // KiteSDK 4 | // 5 | // Created by Konstadinos Karayannis on 06/08/2018. 6 | // Copyright © 2018 Kite.ly. All rights reserved. 7 | // 8 | 9 | #import "OLProductPrintJob.h" 10 | 11 | @interface OLCalendarPrintJob : OLProductPrintJob 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCaseViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLSingleProductReviewViewController.h" 31 | 32 | @interface OLCaseViewController : OLSingleProductReviewViewController 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCircleMaskCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | #import "OLArtboardView.h" 32 | 33 | @interface OLCircleMaskCollectionViewCell : UICollectionViewCell 34 | @property (assign, nonatomic) BOOL enableMask; 35 | @property (weak, nonatomic) IBOutlet OLArtboardView *imageView; 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCircleSelectedCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface OLCircleSelectedCollectionViewCell : UICollectionViewCell 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCircularProgressView.h: -------------------------------------------------------------------------------- 1 | // 2 | // DACircularProgressView.h 3 | // DACircularProgress 4 | // 5 | // Created by Daniel Amitay on 2/6/12. 6 | // Copyright (c) 2012 Daniel Amitay. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OLCircularProgressView : UIView 12 | 13 | @property(nonatomic, strong) UIColor *trackTintColor UI_APPEARANCE_SELECTOR; 14 | @property(nonatomic, strong) UIColor *progressTintColor UI_APPEARANCE_SELECTOR; 15 | @property(nonatomic, strong) UIColor *innerTintColor UI_APPEARANCE_SELECTOR; 16 | @property(nonatomic) NSInteger roundedCorners UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :-( 17 | @property(nonatomic) CGFloat thicknessRatio UI_APPEARANCE_SELECTOR; 18 | @property(nonatomic) NSInteger clockwiseProgress UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :-( 19 | @property(nonatomic) CGFloat progress; 20 | 21 | @property(nonatomic) CGFloat indeterminateDuration UI_APPEARANCE_SELECTOR; 22 | @property(nonatomic) NSInteger indeterminate UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :-( 23 | 24 | - (void)setProgress:(CGFloat)progress animated:(BOOL)animated; 25 | - (void)setProgress:(CGFloat)progress animated:(BOOL)animated initialDelay:(CFTimeInterval)initialDelay; 26 | - (void)setProgress:(CGFloat)progress animated:(BOOL)animated initialDelay:(CFTimeInterval)initialDelay withDuration:(CFTimeInterval)duration; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCollagePosterViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLSingleImagePosterViewController.h" 31 | 32 | @interface OLCollagePosterViewController : OLSingleImagePosterViewController 33 | + (void)changeOrderOfPhotosInArray:(NSMutableArray*)array forProduct:(OLProduct *)product; 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCollectionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface OLCollectionViewController : UICollectionViewController 33 | 34 | @property (assign, nonatomic) BOOL isOffScreen; 35 | - (void)tearDownLargeObjectsFromMemory; 36 | - (void)recreateTornDownLargeObjectsToMemory; 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLColorSelectionCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | #import "OLButtonCollectionViewCell.h" 32 | 33 | @interface OLColorSelectionCollectionViewCell : OLButtonCollectionViewCell 34 | 35 | @property (strong, nonatomic) UIColor *color; 36 | @property (assign, nonatomic) BOOL darkMode; 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLCustomPickerController.h: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | MIT License (MIT) 4 | 5 | Copyright (c) 2016 Kite.ly 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in 15 | all copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 | THE SOFTWARE. 24 | 25 | */ 26 | 27 | #import 28 | #import "OLCustomImagePickerViewControllerDelegate.h" 29 | 30 | 31 | @protocol OLCustomPickerController 32 | @property (weak, nonatomic) id delegate; 33 | 34 | @optional 35 | @property (assign, nonatomic) NSInteger minimumPhotos; 36 | @property (assign, nonatomic) NSInteger maximumPhotos; 37 | @property (strong, nonatomic) NSString *productId; 38 | @property (strong, nonatomic) NSArray *selectedAssets; 39 | @end 40 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLFrameOrderReviewViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLPackProductViewController.h" 31 | 32 | @interface OLFrameOrderReviewViewController : OLPackProductViewController 33 | 34 | + (void)reverseRowsOfPhotosInArray:(NSMutableArray*)array forProduct:(OLProduct *)product; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLHPSDKWrapper.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | #import 30 | 31 | @interface OLHPSDKWrapper : NSObject 32 | 33 | + (id)printItemWithAsset:(UIImage *)image; 34 | + (id)printViewControllerWithDelegate:(id)delegate dataSource:(id)dataSource printItem:(id)printItem fromQueue:(BOOL)fromQueue settingsOnly:(BOOL)settingsOnly; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImageCachingManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | #import 33 | 34 | @interface OLImageCachingManager : NSObject 35 | 36 | @property (strong, nonatomic) PHCachingImageManager *photosCachingManager; 37 | 38 | + (instancetype)sharedInstance; 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImageCropper.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | #import "RMImageCropper.h" 30 | 31 | @interface OLImageCropper : RMImageCropper 32 | 33 | - (void)setProgress:(float)progress; 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImageCropper.m: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLImageCropper.h" 31 | #import "OLImageView.h" 32 | 33 | @interface OLImageCropper () 34 | 35 | @end 36 | 37 | @implementation OLImageCropper 38 | 39 | - (void)setProgress:(float)progress{ 40 | [self.imageView setProgress:progress]; 41 | } 42 | 43 | @end 44 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImagePickerLoginPageViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLImagePickerPageViewController.h" 31 | 32 | @interface OLImagePickerLoginPageViewController : OLImagePickerPageViewController 33 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *labelTopConstraint; 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImagePickerNavigationControllerViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLNavigationController.h" 31 | 32 | @import Photobook; 33 | 34 | @interface OLImagePickerNavigationControllerViewController : OLNavigationController 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImagePreviewViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | #import "OLImageView.h" 32 | #import "OLViewController.h" 33 | 34 | @class OLAsset; 35 | 36 | @interface OLImagePreviewViewController : OLViewController 37 | 38 | @property (strong, nonatomic) OLAsset *asset; 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImageRenderOptions.m: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLImageRenderOptions.h" 31 | 32 | @implementation OLImageRenderOptions 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLImageView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @protocol OLImageViewDelegate 33 | 34 | @end 35 | 36 | @interface OLImageView : UIImageView 37 | 38 | - (void)setProgress:(float)progress; 39 | @property (weak, nonatomic) id delegate; 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLInfoPageViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | #import "OLViewController.h" 32 | 33 | @interface OLInfoPageViewController : OLViewController 34 | @property (strong, nonatomic) NSString *imageName; 35 | @property (strong, nonatomic) NSString *titleText; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKioskLandingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLViewController.h" 31 | 32 | @interface OLKioskLandingViewController : OLViewController 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/cs.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/cs.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/cs.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/da.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/de.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/en.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | basket.Edit,Edit,/* Edit basket item */ 3 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/en.lproj/KitePrintSDK.translated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/en.lproj/KitePrintSDK.translated.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/es.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/fi.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/fi.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/fi.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/fr.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/hu.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/hu.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/hu.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/it.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/nb.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/nb.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/nb.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/nl.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/nl.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/nl.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/pl.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/pt.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/pt.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/pt.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/sk.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/sk.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/sk.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/sv.lproj/KitePrintSDK.secondary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/sv.lproj/KitePrintSDK.secondary.csv -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLKiteLocalizationResources.bundle/sv.lproj/KitePrintSDK.untranslated.csv: -------------------------------------------------------------------------------- 1 | ENGLISH/INTERNAL,TO TRANSLATE,COMMENT/CONTEXT 2 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLLogoutViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface OLLogoutViewController : UIViewController 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLNavigationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface OLNavigationController : UINavigationController 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLPlaceholderAsset.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLAsset.h" 31 | 32 | @interface OLPlaceholderAsset : OLAsset 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLPolaroidPrintJob.h: -------------------------------------------------------------------------------- 1 | // 2 | // OLPolaroidPrintJob.h 3 | // KiteSDK 4 | // 5 | // Created by Jaime Landazuri on 19/03/2019. 6 | // Copyright © 2019 Kite.ly. All rights reserved. 7 | // 8 | 9 | #import "OLProductPrintJob.h" 10 | 11 | @interface OLPolaroidPrintJob : OLProductPrintJob 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLPolaroidPrintJob.m: -------------------------------------------------------------------------------- 1 | // 2 | // OLPolaroidPrintJob.m 3 | // KiteSDK 4 | // 5 | // Created by Jaime Landazuri on 19/03/2019. 6 | // Copyright © 2019 Kite.ly. All rights reserved. 7 | // 8 | 9 | #import "OLPolaroidPrintJob.h" 10 | #import "OLAsset+Private.h" 11 | 12 | @implementation OLPolaroidPrintJob 13 | 14 | @synthesize selectedShippingMethod; 15 | 16 | - (NSDictionary *)jsonRepresentation { 17 | NSMutableArray *assets = [[NSMutableArray alloc] init]; 18 | NSMutableArray *pdfs = [[NSMutableArray alloc] init]; 19 | 20 | for (NSUInteger i = 0; i < self.assetsForUploading.count; i++) { 21 | OLAsset *asset = self.assetsForUploading[i]; 22 | 23 | for (NSInteger j = 0; j <= asset.extraCopies; j++) { 24 | NSMutableDictionary *assetDictionary = [[NSMutableDictionary alloc] init]; 25 | if (i < self.assetsToUpload.count && self.assetsToUpload[i].uploadUrl) { 26 | assetDictionary[@"asset"] = self.assetsToUpload[i].uploadUrl; 27 | } else { 28 | assetDictionary[@"asset"] = @(asset.assetId); 29 | } 30 | 31 | NSString *borderText = asset.edits.bottomBorderText.text; 32 | assetDictionary[@"text"] = borderText ? borderText : @""; 33 | 34 | [assets addObject:[assetDictionary copy]]; 35 | } 36 | } 37 | 38 | NSMutableDictionary *json = [[NSMutableDictionary alloc] init]; 39 | json[@"template_id"] = self.templateId; 40 | json[@"assets"] = assets; 41 | if (pdfs.count > 0) { 42 | json[@"pdf"] = [pdfs firstObject]; 43 | } 44 | 45 | json[@"job_id"] = [self uuid]; 46 | json[@"multiples"] = [NSNumber numberWithInteger:self.extraCopies + 1]; 47 | json[@"shipping_class"] = [NSNumber numberWithInteger:selectedShippingMethod.id]; 48 | 49 | return json; 50 | } 51 | 52 | @end 53 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLPrintEnvironment.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | typedef NS_ENUM(NSInteger, OLKitePrintSDKEnvironment) { 31 | OLKitePrintSDKEnvironmentLive, 32 | OLKitePrintSDKEnvironmentSandbox, 33 | }; 34 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLSelectedEffectButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // OLSelectedEffectButton.h 3 | // KitePrintSDK 4 | // 5 | // Created by Konstadinos Karayannis on 23/06/16. 6 | // Copyright © 2016 Kite.ly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OLSelectedEffectButton : UIButton 12 | @property (strong, nonatomic) UIColor *effectColor; 13 | - (void)updateBadge:(NSString *)string; 14 | @end 15 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLSingleImagePosterViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLSingleProductReviewViewController.h" 31 | 32 | @interface OLSingleImagePosterViewController : OLSingleProductReviewViewController 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLTouchReporterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @protocol OLTouchReporterDelegate 33 | 34 | - (void)reportTouch; 35 | 36 | @end 37 | 38 | @interface OLTouchReporterView : UIView 39 | @property (weak, nonatomic) id delegate; 40 | @end 41 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLTouchReporterView.m: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import "OLTouchReporterView.h" 31 | 32 | @implementation OLTouchReporterView 33 | 34 | - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event{ 35 | [self.delegate reportTouch]; 36 | return NO; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLTouchTolerantView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface OLTouchTolerantView : UIView 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/OLURLShortener.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | typedef void (^OLURLShortenerHandler)(NSString *shortenedURL, NSError *error); 33 | 34 | @interface OLURLShortener : NSObject 35 | 36 | - (void)shortenURL:(NSString *)url handler:(OLURLShortenerHandler)handler; 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/RMImageCropper/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 Geoffrey Samtleben 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/RMImageCropper/RMImageCropper.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "OLImageView.h" 4 | 5 | typedef NS_ENUM(NSUInteger, RMImageCropperMode) { 6 | RMImageCropperModeAspectFill, 7 | RMImageCropperModeAspectFit 8 | }; 9 | 10 | @class RMImageCropper; 11 | 12 | @protocol RMImageCropperDelegate 13 | - (void)imageCropperDidTransformImage:(RMImageCropper *)imageCropper; 14 | @end 15 | 16 | @interface RMImageCropper : UIView 17 | 18 | @property (nonatomic, weak) id delegate; 19 | @property (nonatomic, assign) NSInteger minimum; 20 | @property (nonatomic, strong) UIImage * image; 21 | @property (nonatomic, readonly) UIImage * editedImage; 22 | @property (nonatomic, assign) BOOL enabled; 23 | @property (nonatomic, assign) RMImageCropperMode initialScale; 24 | @property (nonatomic, assign) RMImageCropperMode minimumScale; 25 | @property (nonatomic, strong) OLImageView *imageView; 26 | @property (nonatomic, copy) void (^tapped)(void); 27 | 28 | - (void)editedImageAsync:(void (^)(UIImage *image))complete; 29 | - (CGRect)getFrameRect; 30 | - (CGRect)getImageRect; 31 | - (CGSize)croppedImageSize; 32 | - (BOOL)isCorrecting; 33 | + (UIImage *)editedImageFromImage:(UIImage *)image andFrame:(CGRect)frameRect andImageRect:(CGRect)imageRect andImageViewWidth:(CGFloat)width andImageViewHeight:(CGFloat)height; 34 | - (void)setGesturesEnabled:(BOOL)enabled; 35 | 36 | @end 37 | 38 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/RMImageCropper/UIView+RMUtils.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface UIView (RMUtils) 4 | 5 | @property (readonly, nonatomic) CGPoint rm_topLeft; 6 | @property (readonly, nonatomic) CGPoint rm_topRight; 7 | @property (readonly, nonatomic) CGPoint rm_bottomLeft; 8 | @property (readonly, nonatomic) CGPoint rm_bottomRight; 9 | @property (readonly, nonatomic) CGPoint rm_top; 10 | @property (readonly, nonatomic) CGPoint rm_bottom; 11 | @property (readonly, nonatomic) CGPoint rm_right; 12 | @property (readonly, nonatomic) CGPoint rm_left; 13 | @property (readonly, nonatomic) CGSize rm_size; 14 | @property (readonly, nonatomic) CGFloat rm_height; 15 | @property (readonly, nonatomic) CGFloat rm_width; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Modified MIT License 3 | // 4 | // Copyright (c) 2010-2017 Kite Tech Ltd. https://www.kite.ly 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to deal 8 | // in the Software without restriction, including without limitation the rights 9 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | // copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The software MAY ONLY be used with the Kite Tech Ltd platform and MAY NOT be modified 14 | // to be used with any competitor platforms. This means the software MAY NOT be modified 15 | // to place orders with any competitors to Kite Tech Ltd, all orders MUST go through the 16 | // Kite Tech Ltd platform servers. 17 | // 18 | // The above copyright notice and this permission notice shall be included in 19 | // all copies or substantial portions of the Software. 20 | // 21 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 27 | // THE SOFTWARE. 28 | // 29 | 30 | #import 31 | 32 | @interface ViewController : UIViewController 33 | @property (nonatomic, weak) IBOutlet UILabel *label; 34 | @end 35 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/kite_corrupt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/kite_corrupt.jpg -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Kite SDK 4 | // 5 | // Created by Deon Botha on 18/12/2013. 6 | // Copyright (c) 2013 Deon Botha. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Kite-SDK/PSPrintSDK/mug.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/PSPrintSDK/mug.scn -------------------------------------------------------------------------------- /Kite-SDK/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '10.0' 2 | use_frameworks! 3 | 4 | target 'KiteSDK' do 5 | pod 'Photobook' 6 | end 7 | 8 | target 'KiteSDK-Demo' do 9 | end 10 | 11 | target 'Kite-CI-Deploy' do 12 | pod 'KITAssetsPickerController', :git => 'https://github.com/kkarayannis/KITAssetsPickerController.git' 13 | end 14 | -------------------------------------------------------------------------------- /Kite-SDK/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Analytics (3.7.0) 3 | - KeychainSwift (17.0.0) 4 | - KITAssetsPickerController (1.0.9): 5 | - PureLayout (~> 3.0.0) 6 | - PayPal-iOS-Dynamic-Loader (1.0.1) 7 | - Photobook (2.1.2): 8 | - Analytics (~> 3.7.0) 9 | - KeychainSwift (~> 17.0.0) 10 | - PayPal-iOS-Dynamic-Loader 11 | - SDWebImage (~> 5.2.0) 12 | - Stripe (~> 18.0.0) 13 | - PureLayout (3.0.2) 14 | - SDWebImage (5.2.3): 15 | - SDWebImage/Core (= 5.2.3) 16 | - SDWebImage/Core (5.2.3) 17 | - Stripe (18.0.0) 18 | 19 | DEPENDENCIES: 20 | - KITAssetsPickerController (from `https://github.com/kkarayannis/KITAssetsPickerController.git`) 21 | - Photobook 22 | 23 | SPEC REPOS: 24 | trunk: 25 | - Analytics 26 | - KeychainSwift 27 | - PayPal-iOS-Dynamic-Loader 28 | - Photobook 29 | - PureLayout 30 | - SDWebImage 31 | - Stripe 32 | 33 | EXTERNAL SOURCES: 34 | KITAssetsPickerController: 35 | :git: https://github.com/kkarayannis/KITAssetsPickerController.git 36 | 37 | CHECKOUT OPTIONS: 38 | KITAssetsPickerController: 39 | :commit: b08f373301d1a3c17c09104a5577d61a1255ba8c 40 | :git: https://github.com/kkarayannis/KITAssetsPickerController.git 41 | 42 | SPEC CHECKSUMS: 43 | Analytics: 77fd5fb102a4a5eedafa2c2b0245ceb7b7c15e45 44 | KeychainSwift: 9f43f562dffc88af6efadb57d74b14c598eb337f 45 | KITAssetsPickerController: bcb94b0b3267006fa666041f18a2370a00a9b105 46 | PayPal-iOS-Dynamic-Loader: a32db083fe7e8f8d9ad4309e483e369c9a47e5eb 47 | Photobook: cd264fc74310f065a162aa91a73c411db77ae2ee 48 | PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd 49 | SDWebImage: 46a7f73228f84ce80990c786e4372cf4db5875ce 50 | Stripe: 8c9ac6b717a38ed4f373d4db9204cfe8c4120d65 51 | 52 | PODFILE CHECKSUM: 5b634b89130e8e7f533077c606b05b10f5595556 53 | 54 | COCOAPODS: 1.8.3 55 | -------------------------------------------------------------------------------- /Kite-SDK/docs/12_ios_apns_certificate_1_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/12_ios_apns_certificate_1_2x.png -------------------------------------------------------------------------------- /Kite-SDK/docs/12_ios_apns_certificate_2_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/12_ios_apns_certificate_2_2x.png -------------------------------------------------------------------------------- /Kite-SDK/docs/12_ios_apns_certificate_3_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/12_ios_apns_certificate_3_2x.png -------------------------------------------------------------------------------- /Kite-SDK/docs/4_enablepushnotifications_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/4_enablepushnotifications_2x.png -------------------------------------------------------------------------------- /Kite-SDK/docs/OLKitePrintSDK.md: -------------------------------------------------------------------------------- 1 | Customizing The Kite.ly Print SDK 2 | ============== 3 | 4 | This tutorial covers customizing the Kite.ly Print SDK 5 | 6 | _If you haven't already, see the [README](../../README.md) for an initial overview and instructions for adding the SDK to your project._ 7 | 8 | 9 | Overview 10 | -------- 11 | `OLKitePrintSDK` is a static class that needs to be initialized with apiKey by using the method: 12 | ```obj-c 13 | + (void)setAPIKey:(NSString *)apiKey withEnvironment:(OLKitePrintSDKEnvironment)environment; 14 | ``` 15 | 16 | You can set the environment to be either live or sandbox for testing: 17 | ```obj-c 18 | + (OLKitePrintSDKEnvironment)environment; 19 | ``` 20 | 21 | Next Steps 22 | ---------- 23 | - If you are using the [Full mode of the SDK](../../README.md#full) then create and present or push an `OLKiteViewController` passing it an array of OLAssets 24 | -------------------------------------------------------------------------------- /Kite-SDK/docs/entry_filtered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/entry_filtered.png -------------------------------------------------------------------------------- /Kite-SDK/docs/entry_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/entry_home.png -------------------------------------------------------------------------------- /Kite-SDK/docs/entry_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/entry_payment.png -------------------------------------------------------------------------------- /Kite-SDK/docs/hp_sdk.md: -------------------------------------------------------------------------------- 1 | Enable Print at Home Functionality with HP Print SDK 2 | ============== 3 | 4 | Kite SDK provides offers integrated print-at-home functionality with the HP Print SDK. 5 | 6 | ![Kite](hp_sdk.png) 7 | 8 | ## Installation with CocoaPods 9 | ```ruby 10 | pod 'MobilePrintSDK', '~> 3.0.9' 11 | ``` 12 | 13 | ## Usage 14 | Enable by setting the showPrintAtHome property of OLKiteViewController to true. 15 | 16 | Objective-C: 17 | ```obj-c 18 | OLKiteViewController *kiteViewController = [[OLKiteViewController alloc] initWithAssets:assets]; 19 | kiteViewController.showPrintAtHome = YES; 20 | [self presentViewController:kiteViewController animated:YES completion:NULL]; 21 | ``` 22 | Swift: 23 | ```swift 24 | let kiteViewController = OLKiteViewController.init(assets: [OLAsset(url: URL(string: "http://psps.s3.amazonaws.com/sdk_static/4.jpg"))]) 25 | kiteViewController.showPrintAtHome = true 26 | present(kiteViewController!, animated: true, completion: nil) 27 | ``` 28 | 29 | Please note that only the first asset passed to KiteViewController will be available for print with the Print at Home functionality. 30 | -------------------------------------------------------------------------------- /Kite-SDK/docs/hp_sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/hp_sdk.png -------------------------------------------------------------------------------- /Kite-SDK/docs/keychain_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/keychain_export.png -------------------------------------------------------------------------------- /Kite-SDK/docs/kite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/kite.png -------------------------------------------------------------------------------- /Kite-SDK/docs/localization.md: -------------------------------------------------------------------------------- 1 | Localization 2 | ============== 3 | 4 | We currently offer support for localized strings in the following languages: 5 | - English (en) 6 | - French (fr) 7 | - German (de) 8 | - Italian (it) 9 | - Spanish (es) 10 | - Czech (cs) 11 | - Danish (da) 12 | - Finnish (fi) 13 | - Hungarian (hu) 14 | - Norwegian. (nb) 15 | - Polish (pl) 16 | - Portuguese (pt) 17 | - Slovak (sk) 18 | - Swedish (sv) 19 | 20 | To use the above languages or a subset of them, you need to add an entry to your application's plist, CFBundleLocalizations, with the list of languages you require. 21 | 22 | 23 | Example: 24 | ``` 25 | CFBundleLocalizations 26 | 27 | en 28 | fr 29 | es 30 | de 31 | it 32 | 33 | ``` 34 | -------------------------------------------------------------------------------- /Kite-SDK/docs/no_loading.md: -------------------------------------------------------------------------------- 1 | Eliminating Loading 2 | ============== 3 | 4 | You can create a OLKiteViewController like usual and call `startLoadingWithCompletionHandler:` on it make it load everything it needs from the network in the background. You can show it immediately or keep it in memory to show it later. 5 | 6 | If you let the OLKiteViewController object be destroyed, you can create a new one and set its `preserveExistingTemplates` property to true, which will allow it to load immediately, even without calling `startLoadingWithCompletionHandler:`. This is achieved by the first object caching the data it received from the network. 7 | 8 | Note: This is not needed when launching directly to checkout. 9 | 10 | 11 | -------------------------------------------------------------------------------- /Kite-SDK/docs/payment.md: -------------------------------------------------------------------------------- 1 | Paying for and Submitting a Print Order 2 | ============== 3 | 4 | If you don't want to use the print shop experience included with the Print SDK (i.e. the [Kite Print Shop Experience](print_shop.md)) you can create your own experience but for checking out you *must* use the Checkout APIs of this SDK. If you need to have your own checkout experience as well then you must use Kite's REST APIs. 5 | 6 | Payments should be made directly to Kite's PayPal account rather than your own. We then pay you based on your desired margins that you have configured in the [developer dashboard](https://www.kite.ly). This is the recommended client side approach if you want to avoid paying for your own server(s) to validate customer payments. 7 | 8 | Alternatively we do support a server side payment flow where the user pays you directly. In this approach you'll need a server to validate payment and issue a print request using our REST API. The client iOS app deals solely with your server to submit the print order. If your server is happy with the proof of payment it submits the order to our server on behalf of the client app. See [payment workflows](https://www.kite.ly/docs/#payment-workflows) for more details regarding this approach. 9 | 10 | _If you haven't already, see the [README](../../README.md) for an initial overview and instructions for adding the SDK to your project._ 11 | 12 | Next Steps 13 | ---------- 14 | 15 | - [Register your payment details](https://www.kite.ly/settings/billing/) with us so that we can pay you when your users place orders 16 | -------------------------------------------------------------------------------- /Kite-SDK/docs/print-shop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/print-shop1.jpg -------------------------------------------------------------------------------- /Kite-SDK/docs/push_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/push_notifications.png -------------------------------------------------------------------------------- /Kite-SDK/docs/sdk-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/sdk-overview.png -------------------------------------------------------------------------------- /Kite-SDK/docs/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OceanLabs/iOS-Print-SDK/2d018bdaa5acb08bc2ad0b1fce3d0ed27bd1006e/Kite-SDK/docs/social.png -------------------------------------------------------------------------------- /Kite-SDK/update-localization-files.sh: -------------------------------------------------------------------------------- 1 | command -v iconv >/dev/null 2>&1 || { exit 0; } 2 | 3 | cd PSPrintSDK/OLKiteLocalizationResources.bundle/ 4 | 5 | find ../ -name \*.m | xargs genstrings -o . 6 | rm Localizable.strings 7 | 8 | filename="KitePrintSDK.strings" 9 | translated="KitePrintSDK.translated.csv" 10 | converted="KitePrintSDK.converted.strings" 11 | untranslated="KitePrintSDK.untranslated.csv" 12 | result="KitePrintSDK.result.strings" 13 | secondary="KitePrintSDK.secondary.csv" 14 | 15 | iconv -f UTF-16 -t UTF-8 $filename > $converted 16 | if [ ! -f $converted ]; then 17 | cp $filename $converted 18 | fi 19 | 20 | sed -i -e 's/\%1\$/\%/g' $converted 21 | sed -i -e 's/\%2\$/\%/g' $converted 22 | sed -i -e 's/\%3\$/\%/g' $converted 23 | 24 | rm $filename 25 | 26 | for lang in `find . -name \*.lproj`; do 27 | 28 | cd $lang 29 | pwd 30 | 31 | touch $untranslated 32 | touch $result 33 | touch $translated 34 | touch $secondary 35 | 36 | python ../../../update-localization-files.py "`pwd`/../$converted" "`pwd`/$translated" "`pwd`/$untranslated" "`pwd`/$result" "`pwd`/$secondary" 37 | 38 | mv $result $filename 39 | 40 | cd .. 41 | 42 | done 43 | 44 | rm $converted 45 | rm $converted-e -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | xcode: 3 | version: "9.3" 4 | 5 | general: 6 | branches: 7 | only: 8 | - master 9 | artifacts: 10 | - "~/image.png" 11 | 12 | test: 13 | override: 14 | - export LC_CTYPE="en_US.UTF-8" 15 | - export XCTOOL_FORCE_TTY="true" 16 | - set -o pipefail && xcodebuild -workspace 'Kite-SDK/KitePrintSDK.xcworkspace' -scheme 'Kite-CI-Deploy' clean build -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= PROVISIONING_PROFILE= GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES 17 | --------------------------------------------------------------------------------