├── .gitignore ├── LICENSE ├── MBAssetsImporter.xcodeproj └── project.pbxproj ├── MBAssetsImporter.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── MBAssetsImporter.xcscmblueprint ├── MBAssetsImporter ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── andromeda.imageset │ │ ├── 511431-andromeda-galaxy.jpg │ │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Importer.swift ├── Info.plist ├── LocalImporter.swift ├── MBAssetsImporterViewController.swift ├── PixabayImporter.swift └── String+Utils.swift ├── Podfile ├── Podfile.lock ├── Pods ├── MBCircularProgressBar │ ├── LICENSE │ ├── Pod │ │ ├── Assets │ │ │ └── example.png │ │ └── Classes │ │ │ ├── MBCircularProgressBarLayer.h │ │ │ ├── MBCircularProgressBarLayer.m │ │ │ ├── MBCircularProgressBarView.h │ │ │ └── MBCircularProgressBarView.m │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── MBCircularProgressBar │ ├── Info.plist │ ├── MBCircularProgressBar-dummy.m │ ├── MBCircularProgressBar-prefix.pch │ ├── MBCircularProgressBar-umbrella.h │ ├── MBCircularProgressBar.modulemap │ ├── MBCircularProgressBar.xcconfig │ └── ResourceBundle-MBCircularProgressBar-Info.plist │ └── Pods-MBAssetsImporter │ ├── Info.plist │ ├── Pods-MBAssetsImporter-acknowledgements.markdown │ ├── Pods-MBAssetsImporter-acknowledgements.plist │ ├── Pods-MBAssetsImporter-dummy.m │ ├── Pods-MBAssetsImporter-frameworks.sh │ ├── Pods-MBAssetsImporter-resources.sh │ ├── Pods-MBAssetsImporter-umbrella.h │ ├── Pods-MBAssetsImporter.debug.xcconfig │ ├── Pods-MBAssetsImporter.modulemap │ └── Pods-MBAssetsImporter.release.xcconfig ├── README.md └── Readme ├── folder.gif ├── importing.png ├── main.png └── panoramio.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/LICENSE -------------------------------------------------------------------------------- /MBAssetsImporter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MBAssetsImporter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MBAssetsImporter.xcworkspace/xcshareddata/MBAssetsImporter.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter.xcworkspace/xcshareddata/MBAssetsImporter.xcscmblueprint -------------------------------------------------------------------------------- /MBAssetsImporter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/AppDelegate.swift -------------------------------------------------------------------------------- /MBAssetsImporter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MBAssetsImporter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MBAssetsImporter/Assets.xcassets/andromeda.imageset/511431-andromeda-galaxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/Assets.xcassets/andromeda.imageset/511431-andromeda-galaxy.jpg -------------------------------------------------------------------------------- /MBAssetsImporter/Assets.xcassets/andromeda.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/Assets.xcassets/andromeda.imageset/Contents.json -------------------------------------------------------------------------------- /MBAssetsImporter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MBAssetsImporter/Importer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/Importer.swift -------------------------------------------------------------------------------- /MBAssetsImporter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/Info.plist -------------------------------------------------------------------------------- /MBAssetsImporter/LocalImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/LocalImporter.swift -------------------------------------------------------------------------------- /MBAssetsImporter/MBAssetsImporterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/MBAssetsImporterViewController.swift -------------------------------------------------------------------------------- /MBAssetsImporter/PixabayImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/PixabayImporter.swift -------------------------------------------------------------------------------- /MBAssetsImporter/String+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/MBAssetsImporter/String+Utils.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/MBCircularProgressBar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/MBCircularProgressBar/LICENSE -------------------------------------------------------------------------------- /Pods/MBCircularProgressBar/Pod/Assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/MBCircularProgressBar/Pod/Assets/example.png -------------------------------------------------------------------------------- /Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarLayer.h -------------------------------------------------------------------------------- /Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarLayer.m -------------------------------------------------------------------------------- /Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarView.h -------------------------------------------------------------------------------- /Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/MBCircularProgressBar/Pod/Classes/MBCircularProgressBarView.m -------------------------------------------------------------------------------- /Pods/MBCircularProgressBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/MBCircularProgressBar/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/MBCircularProgressBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/MBCircularProgressBar/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MBCircularProgressBar/ResourceBundle-MBCircularProgressBar-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/MBCircularProgressBar/ResourceBundle-MBCircularProgressBar-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Pods/Target Support Files/Pods-MBAssetsImporter/Pods-MBAssetsImporter.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/README.md -------------------------------------------------------------------------------- /Readme/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Readme/folder.gif -------------------------------------------------------------------------------- /Readme/importing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Readme/importing.png -------------------------------------------------------------------------------- /Readme/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Readme/main.png -------------------------------------------------------------------------------- /Readme/panoramio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatiBot/MBAssetsImporter/HEAD/Readme/panoramio.gif --------------------------------------------------------------------------------