Skip to content

Commit

Permalink
removed Redbooth remanents
Browse files Browse the repository at this point in the history
  • Loading branch information
twof committed Jan 7, 2019
1 parent 783e2d8 commit 7d959cd
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 18 deletions.
12 changes: 6 additions & 6 deletions ExampleApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSCameraUsageDescription</key>
<string>Camera is used by Image picker when taking new photos or recording videos</string>
<key>NSMicrophoneUsageDescription</key>
<string>Microphone is used by Image picker when recording videos</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>App uses access to Photos when picking images</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
Expand All @@ -34,11 +40,5 @@
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>NSPhotoLibraryUsageDescription</key>
<string>App uses access to Photos when picking images</string>
<key>NSCameraUsageDescription</key>
<string>Camera is used by Image picker when taking new photos or recording videos</string>
<key>NSMicrophoneUsageDescription</key>
<string>Microphone is used by Image picker when recording videos</string>
</dict>
</plist>
10 changes: 5 additions & 5 deletions ImagePicker.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@
TargetAttributes = {
420C23FB1F5D82C6008935D4 = {
CreatedOnToolsVersion = 8.3.3;
DevelopmentTeam = VQHLE7RNUG;
DevelopmentTeam = P2PP2EM79F;
LastSwiftMigration = 0900;
ProvisioningStyle = Automatic;
};
Expand Down Expand Up @@ -628,11 +628,11 @@
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = VQHLE7RNUG;
DEVELOPMENT_TEAM = P2PP2EM79F;
INFOPLIST_FILE = ExampleApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = eu.inloop.ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = com.twof.ExampleApp;
PRODUCT_NAME = "Image Picker";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.2;
Expand All @@ -644,11 +644,11 @@
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = VQHLE7RNUG;
DEVELOPMENT_TEAM = P2PP2EM79F;
INFOPLIST_FILE = ExampleApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = eu.inloop.ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = com.twof.ExampleApp;
PRODUCT_NAME = "Image Picker";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.2;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<key>orderHint</key>
<integer>1</integer>
</dict>
<key>ExampleApp.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
</dict>
<key>ImagePicker.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
Expand Down
2 changes: 0 additions & 2 deletions ImagePicker/ImagePickerController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ open class ImagePickerController : UIViewController {
}
}

/// Redbooth Added.
/// Access all currently selected images by name
/// With index paths
public var selectedAssetsToIndexPath: [PHAsset: IndexPath] {
Expand All @@ -163,7 +162,6 @@ open class ImagePickerController : UIViewController {
}
}

/// Redbooth Added.
/// Return all visible asset cells
public var visibleAssetsToIndexPath: [PHAsset: IndexPath] {
get {
Expand Down
5 changes: 0 additions & 5 deletions ImagePicker/VideoCaptureDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ import AVFoundation
import Photos

final class VideoCaptureDelegate: NSObject, AVCaptureFileOutputRecordingDelegate {

func capture(_ output: AVCaptureFileOutput!, didFinishRecordingToOutputFileAt outputFileURL: URL!, fromConnections connections: [Any]!, error: Error!) {
fatalError("Redbooth added, protocol conformance")
}

deinit {
log("deinit: \(String(describing: self))")
}
Expand Down

0 comments on commit 7d959cd

Please sign in to comment.