diff --git a/SimplePhotoPicker.podspec b/SimplePhotoPicker.podspec index 4de4e7d..351487c 100644 --- a/SimplePhotoPicker.podspec +++ b/SimplePhotoPicker.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = 'SimplePhotoPicker' - s.version = '0.1.2' + s.version = '0.1.3' s.summary = 'This is the simple photo picker which uses default iPhone SDK with UIImagePickerController.' s.description = <<-DESC SimplePhotoPicker is a control that optionally takes inputs of Source Type & allow Editing. On the basis of these inputs, this control displays the action sheet if needed and displays the iOS default image editor if selected. It has simple block based implementation. No need to implement delegate methods. diff --git a/SimplePhotoPicker.xcodeproj/project.pbxproj b/SimplePhotoPicker.xcodeproj/project.pbxproj index 6b7c983..80a1198 100644 --- a/SimplePhotoPicker.xcodeproj/project.pbxproj +++ b/SimplePhotoPicker.xcodeproj/project.pbxproj @@ -56,7 +56,7 @@ 2986B7C31D01E8C4002CDC3D /* SimplePhotoPicker */ = { isa = PBXGroup; children = ( - 2986B7D81D01E8DD002CDC3D /* PhotoPicker */, + 299FA4BF1D17EBF60029831D /* Core */, 2986B7C41D01E8C4002CDC3D /* AppDelegate.swift */, 2986B7C61D01E8C4002CDC3D /* ViewController.swift */, 2986B7C81D01E8C4002CDC3D /* Main.storyboard */, @@ -67,12 +67,12 @@ path = SimplePhotoPicker; sourceTree = ""; }; - 2986B7D81D01E8DD002CDC3D /* PhotoPicker */ = { + 299FA4BF1D17EBF60029831D /* Core */ = { isa = PBXGroup; children = ( 2986B7D61D01E8D6002CDC3D /* PhotoPicker.swift */, ); - name = PhotoPicker; + path = Core; sourceTree = ""; }; /* End PBXGroup section */ @@ -298,6 +298,7 @@ 2986B7D51D01E8C4002CDC3D /* Release */, ); defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; diff --git a/SimplePhotoPicker/PhotoPicker.swift b/SimplePhotoPicker/Core/PhotoPicker.swift similarity index 100% rename from SimplePhotoPicker/PhotoPicker.swift rename to SimplePhotoPicker/Core/PhotoPicker.swift