├── .gitignore ├── vlckitSwiftSample-Bridging-Header.h ├── vlckitSwiftSample.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── project.pbxproj ├── vlckitSwiftSample ├── empty.cpp ├── empty.hpp ├── Base.lproj │ ├── Main.storyboard │ └── LaunchScreen.storyboard ├── Info.plist ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── AppDelegate.swift └── ViewController.swift ├── vlckitSwiftSample.xcworkspace ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── contents.xcworkspacedata ├── Podfile ├── Podfile.lock ├── README.md ├── vlckitSwiftSampleTests ├── Info.plist └── vlckitSwiftSampleTests.swift └── vlckitSwiftSampleUITests ├── Info.plist └── vlckitSwiftSampleUITests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | xcuserdata/ 3 | -------------------------------------------------------------------------------- /vlckitSwiftSample-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import "MobileVLCKit/MobileVLCKit.h" -------------------------------------------------------------------------------- /vlckitSwiftSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vlckitSwiftSample/empty.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // empty.cpp 3 | // vlckitSwiftSample 4 | // 5 | // Created by Mark Knapp on 11/18/15. 6 | // Copyright © 2015 Mark Knapp. All rights reserved. 7 | // 8 | 9 | #include "empty.hpp" 10 | 11 | //Necessary in order to build with MobileVLCKit -------------------------------------------------------------------------------- /vlckitSwiftSample/empty.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // empty.hpp 3 | // vlckitSwiftSample 4 | // 5 | // Created by Mark Knapp on 11/18/15. 6 | // Copyright © 2015 Mark Knapp. All rights reserved. 7 | // 8 | 9 | #ifndef empty_hpp 10 | #define empty_hpp 11 | 12 | #include 13 | 14 | #endif /* empty_hpp */ 15 | -------------------------------------------------------------------------------- /vlckitSwiftSample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vlckitSwiftSample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vlckitSwiftSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, '9.1' 3 | # Uncomment this line if you're using Swift 4 | use_frameworks! 5 | 6 | target 'vlckitSwiftSample' do 7 | pod 'MobileVLCKit' 8 | end 9 | 10 | target 'vlckitSwiftSampleTests' do 11 | 12 | end 13 | 14 | target 'vlckitSwiftSampleUITests' do 15 | 16 | end 17 | 18 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - MobileVLCKit (3.1.0) 3 | 4 | DEPENDENCIES: 5 | - MobileVLCKit 6 | 7 | SPEC REPOS: 8 | https://github.com/cocoapods/specs.git: 9 | - MobileVLCKit 10 | 11 | SPEC CHECKSUMS: 12 | MobileVLCKit: 4e55792b03c99429c9f4716aa44e685f65b3d178 13 | 14 | PODFILE CHECKSUM: f93de41509a3c5111bf5b199da170fd0db3e471d 15 | 16 | COCOAPODS: 1.6.0.beta.2 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vlckitSwiftSample 2 | Sample MobileVLCKit project using Swift 4 3 | 4 | The pod files are not included in this repo. After cloning you need to run "pod install" to get the cocoapod files. Then you should be able to open the workspace and build. 5 | 6 | 7 | 8 | ####Known Issues 9 | * Video freezes when entering landscape in the simulator for plus models (I do not know about actual plus devices) 10 | -------------------------------------------------------------------------------- /vlckitSwiftSampleTests/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 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /vlckitSwiftSampleUITests/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 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /vlckitSwiftSampleTests/vlckitSwiftSampleTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // vlckitSwiftSampleTests.swift 3 | // vlckitSwiftSampleTests 4 | // 5 | // Created by Mark Knapp on 11/18/15. 6 | // Copyright © 2015 Mark Knapp. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import vlckitSwiftSample 11 | 12 | class vlckitSwiftSampleTests: XCTestCase { 13 | 14 | override func setUp() { 15 | super.setUp() 16 | // Put setup code here. This method is called before the invocation of each test method in the class. 17 | } 18 | 19 | override func tearDown() { 20 | // Put teardown code here. This method is called after the invocation of each test method in the class. 21 | super.tearDown() 22 | } 23 | 24 | func testExample() { 25 | // This is an example of a functional test case. 26 | // Use XCTAssert and related functions to verify your tests produce the correct results. 27 | } 28 | 29 | func testPerformanceExample() { 30 | // This is an example of a performance test case. 31 | self.measure { 32 | // Put the code you want to measure the time of here. 33 | } 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /vlckitSwiftSampleUITests/vlckitSwiftSampleUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // vlckitSwiftSampleUITests.swift 3 | // vlckitSwiftSampleUITests 4 | // 5 | // Created by Mark Knapp on 11/18/15. 6 | // Copyright © 2015 Mark Knapp. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | 11 | class vlckitSwiftSampleUITests: XCTestCase { 12 | 13 | override func setUp() { 14 | super.setUp() 15 | 16 | // Put setup code here. This method is called before the invocation of each test method in the class. 17 | 18 | // In UI tests it is usually best to stop immediately when a failure occurs. 19 | continueAfterFailure = false 20 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 21 | XCUIApplication().launch() 22 | 23 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 24 | } 25 | 26 | override func tearDown() { 27 | // Put teardown code here. This method is called after the invocation of each test method in the class. 28 | super.tearDown() 29 | } 30 | 31 | func testExample() { 32 | // Use recording to get started writing UI tests. 33 | // Use XCTAssert and related functions to verify your tests produce the correct results. 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /vlckitSwiftSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /vlckitSwiftSample/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 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /vlckitSwiftSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vlckitSwiftSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } -------------------------------------------------------------------------------- /vlckitSwiftSample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // vlckitSwiftSample 4 | // 5 | // Created by Mark Knapp on 11/18/15. 6 | // Copyright © 2015 Mark Knapp. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /vlckitSwiftSample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // vlckitSwiftSample 4 | // 5 | // Created by Mark Knapp on 11/18/15. 6 | // Copyright © 2015 Mark Knapp. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController, VLCMediaPlayerDelegate { 12 | 13 | var movieView: UIView! 14 | 15 | // Enable debugging 16 | //var mediaPlayer: VLCMediaPlayer = VLCMediaPlayer(options: ["-vvvv"]) 17 | 18 | var mediaPlayer: VLCMediaPlayer = VLCMediaPlayer() 19 | 20 | override func viewDidLoad() { 21 | super.viewDidLoad() 22 | 23 | //Add rotation observer 24 | NotificationCenter.default.addObserver( 25 | self, 26 | selector: #selector(ViewController.rotated), 27 | name: NSNotification.Name.UIDeviceOrientationDidChange, 28 | object: nil) 29 | 30 | //Setup movieView 31 | self.movieView = UIView() 32 | self.movieView.backgroundColor = UIColor.gray 33 | self.movieView.frame = UIScreen.screens[0].bounds 34 | 35 | //Add tap gesture to movieView for play/pause 36 | let gesture = UITapGestureRecognizer(target: self, action: #selector(ViewController.movieViewTapped(_:))) 37 | self.movieView.addGestureRecognizer(gesture) 38 | 39 | //Add movieView to view controller 40 | self.view.addSubview(self.movieView) 41 | } 42 | 43 | override func viewDidAppear(_ animated: Bool) { 44 | 45 | //Playing multicast UDP (you can multicast a video from VLC) 46 | //let url = NSURL(string: "udp://@225.0.0.1:51018") 47 | 48 | //Playing HTTP from internet 49 | //let url = NSURL(string: "http://streams.videolan.org/streams/mp4/Mr_MrsSmith-h264_aac.mp4") 50 | 51 | //Playing RTSP from internet 52 | let url = URL(string: "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov") 53 | 54 | if url == nil { 55 | print("Invalid URL") 56 | return 57 | } 58 | 59 | let media = VLCMedia(url: url!) 60 | 61 | // Set media options 62 | // https://wiki.videolan.org/VLC_command-line_help 63 | //media.addOptions([ 64 | // "network-caching": 300 65 | //]) 66 | 67 | mediaPlayer.media = media 68 | 69 | mediaPlayer.delegate = self 70 | mediaPlayer.drawable = self.movieView 71 | 72 | } 73 | 74 | override func didReceiveMemoryWarning() { 75 | super.didReceiveMemoryWarning() 76 | } 77 | 78 | @objc func rotated() { 79 | 80 | let orientation = UIDevice.current.orientation 81 | 82 | if (UIDeviceOrientationIsLandscape(orientation)) { 83 | print("Switched to landscape") 84 | } 85 | else if(UIDeviceOrientationIsPortrait(orientation)) { 86 | print("Switched to portrait") 87 | } 88 | 89 | //Always fill entire screen 90 | self.movieView.frame = self.view.frame 91 | 92 | } 93 | 94 | @objc func movieViewTapped(_ sender: UITapGestureRecognizer) { 95 | 96 | if mediaPlayer.isPlaying { 97 | mediaPlayer.pause() 98 | 99 | let remaining = mediaPlayer.remainingTime 100 | let time = mediaPlayer.time 101 | 102 | print("Paused at \(time?.stringValue ?? "nil") with \(remaining?.stringValue ?? "nil") time remaining") 103 | } 104 | else { 105 | mediaPlayer.play() 106 | print("Playing") 107 | } 108 | 109 | } 110 | 111 | 112 | } 113 | 114 | -------------------------------------------------------------------------------- /vlckitSwiftSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 4D00B0E71BFD569700D8BB3E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D00B0E61BFD569700D8BB3E /* AppDelegate.swift */; }; 11 | 4D00B0E91BFD569700D8BB3E /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D00B0E81BFD569700D8BB3E /* ViewController.swift */; }; 12 | 4D00B0EC1BFD569700D8BB3E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4D00B0EA1BFD569700D8BB3E /* Main.storyboard */; }; 13 | 4D00B0EE1BFD569700D8BB3E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4D00B0ED1BFD569700D8BB3E /* Assets.xcassets */; }; 14 | 4D00B0F11BFD569700D8BB3E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4D00B0EF1BFD569700D8BB3E /* LaunchScreen.storyboard */; }; 15 | 4D00B0FC1BFD569700D8BB3E /* vlckitSwiftSampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D00B0FB1BFD569700D8BB3E /* vlckitSwiftSampleTests.swift */; }; 16 | 4D00B1071BFD569700D8BB3E /* vlckitSwiftSampleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D00B1061BFD569700D8BB3E /* vlckitSwiftSampleUITests.swift */; }; 17 | 4D00B11A1BFD58EE00D8BB3E /* empty.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D00B1181BFD58EE00D8BB3E /* empty.cpp */; }; 18 | 4D1240911DF105A900AAB571 /* MobileVLCKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D1240901DF105A900AAB571 /* MobileVLCKit.framework */; }; 19 | 52867104E22DACE56E0F1337 /* Pods_vlckitSwiftSampleTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4415885FB4A334A8A7FB17B0 /* Pods_vlckitSwiftSampleTests.framework */; }; 20 | 881824CA21FA50E1002129F5 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 881824C921FA50E1002129F5 /* libc++.tbd */; }; 21 | AF6CC0759E932E6358D2060A /* Pods_vlckitSwiftSampleUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80F0A74697B9C4CD57373CC0 /* Pods_vlckitSwiftSampleUITests.framework */; }; 22 | E8055B9C9493D9694DB2DCDD /* Pods_vlckitSwiftSample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ABC1753B5089DF843713E00E /* Pods_vlckitSwiftSample.framework */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | 4D00B0F81BFD569700D8BB3E /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = 4D00B0DB1BFD569700D8BB3E /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = 4D00B0E21BFD569700D8BB3E; 31 | remoteInfo = vlckitSwiftSample; 32 | }; 33 | 4D00B1031BFD569700D8BB3E /* PBXContainerItemProxy */ = { 34 | isa = PBXContainerItemProxy; 35 | containerPortal = 4D00B0DB1BFD569700D8BB3E /* Project object */; 36 | proxyType = 1; 37 | remoteGlobalIDString = 4D00B0E21BFD569700D8BB3E; 38 | remoteInfo = vlckitSwiftSample; 39 | }; 40 | /* End PBXContainerItemProxy section */ 41 | 42 | /* Begin PBXFileReference section */ 43 | 0C5730BFD46A0FE30C7E193A /* Pods-vlckitSwiftSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlckitSwiftSample.release.xcconfig"; path = "Pods/Target Support Files/Pods-vlckitSwiftSample/Pods-vlckitSwiftSample.release.xcconfig"; sourceTree = ""; }; 44 | 2A93027C0135251BAA05100F /* Pods-vlckitSwiftSample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlckitSwiftSample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-vlckitSwiftSample/Pods-vlckitSwiftSample.debug.xcconfig"; sourceTree = ""; }; 45 | 4415885FB4A334A8A7FB17B0 /* Pods_vlckitSwiftSampleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_vlckitSwiftSampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 490C3A601C88DE96D0AAAA4D /* Pods-vlckitSwiftSampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlckitSwiftSampleTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-vlckitSwiftSampleTests/Pods-vlckitSwiftSampleTests.release.xcconfig"; sourceTree = ""; }; 47 | 4D00B0E31BFD569700D8BB3E /* vlckitSwiftSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = vlckitSwiftSample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | 4D00B0E61BFD569700D8BB3E /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 49 | 4D00B0E81BFD569700D8BB3E /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 50 | 4D00B0EB1BFD569700D8BB3E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 51 | 4D00B0ED1BFD569700D8BB3E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 52 | 4D00B0F01BFD569700D8BB3E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 53 | 4D00B0F21BFD569700D8BB3E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 54 | 4D00B0F71BFD569700D8BB3E /* vlckitSwiftSampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = vlckitSwiftSampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 4D00B0FB1BFD569700D8BB3E /* vlckitSwiftSampleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = vlckitSwiftSampleTests.swift; sourceTree = ""; }; 56 | 4D00B0FD1BFD569700D8BB3E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 57 | 4D00B1021BFD569700D8BB3E /* vlckitSwiftSampleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = vlckitSwiftSampleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | 4D00B1061BFD569700D8BB3E /* vlckitSwiftSampleUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = vlckitSwiftSampleUITests.swift; sourceTree = ""; }; 59 | 4D00B1081BFD569700D8BB3E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 60 | 4D00B1141BFD57B300D8BB3E /* vlckitSwiftSample-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "vlckitSwiftSample-Bridging-Header.h"; sourceTree = SOURCE_ROOT; }; 61 | 4D00B1181BFD58EE00D8BB3E /* empty.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = empty.cpp; sourceTree = ""; }; 62 | 4D00B1191BFD58EE00D8BB3E /* empty.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = empty.hpp; sourceTree = ""; }; 63 | 4D1240901DF105A900AAB571 /* MobileVLCKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileVLCKit.framework; path = "Pods/MobileVLCKit/MobileVLCKit-binary/MobileVLCKit.framework"; sourceTree = ""; }; 64 | 80F0A74697B9C4CD57373CC0 /* Pods_vlckitSwiftSampleUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_vlckitSwiftSampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 65 | 881824C921FA50E1002129F5 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; 66 | 97FA3E61884B8BB441C95167 /* Pods-vlckitSwiftSampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlckitSwiftSampleTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-vlckitSwiftSampleTests/Pods-vlckitSwiftSampleTests.debug.xcconfig"; sourceTree = ""; }; 67 | 9A054539DB9D955D431B1FAE /* Pods-vlckitSwiftSampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlckitSwiftSampleUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-vlckitSwiftSampleUITests/Pods-vlckitSwiftSampleUITests.release.xcconfig"; sourceTree = ""; }; 68 | ABC1753B5089DF843713E00E /* Pods_vlckitSwiftSample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_vlckitSwiftSample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | DF354A06C4298946FD13F8C2 /* Pods-vlckitSwiftSampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlckitSwiftSampleUITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-vlckitSwiftSampleUITests/Pods-vlckitSwiftSampleUITests.debug.xcconfig"; sourceTree = ""; }; 70 | /* End PBXFileReference section */ 71 | 72 | /* Begin PBXFrameworksBuildPhase section */ 73 | 4D00B0E01BFD569700D8BB3E /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 881824CA21FA50E1002129F5 /* libc++.tbd in Frameworks */, 78 | 4D1240911DF105A900AAB571 /* MobileVLCKit.framework in Frameworks */, 79 | E8055B9C9493D9694DB2DCDD /* Pods_vlckitSwiftSample.framework in Frameworks */, 80 | ); 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | 4D00B0F41BFD569700D8BB3E /* Frameworks */ = { 84 | isa = PBXFrameworksBuildPhase; 85 | buildActionMask = 2147483647; 86 | files = ( 87 | 52867104E22DACE56E0F1337 /* Pods_vlckitSwiftSampleTests.framework in Frameworks */, 88 | ); 89 | runOnlyForDeploymentPostprocessing = 0; 90 | }; 91 | 4D00B0FF1BFD569700D8BB3E /* Frameworks */ = { 92 | isa = PBXFrameworksBuildPhase; 93 | buildActionMask = 2147483647; 94 | files = ( 95 | AF6CC0759E932E6358D2060A /* Pods_vlckitSwiftSampleUITests.framework in Frameworks */, 96 | ); 97 | runOnlyForDeploymentPostprocessing = 0; 98 | }; 99 | /* End PBXFrameworksBuildPhase section */ 100 | 101 | /* Begin PBXGroup section */ 102 | 4D00B0DA1BFD569700D8BB3E = { 103 | isa = PBXGroup; 104 | children = ( 105 | 4D00B0E51BFD569700D8BB3E /* vlckitSwiftSample */, 106 | 4D00B0FA1BFD569700D8BB3E /* vlckitSwiftSampleTests */, 107 | 4D00B1051BFD569700D8BB3E /* vlckitSwiftSampleUITests */, 108 | 4D00B0E41BFD569700D8BB3E /* Products */, 109 | 7ADC8323CFABAFFF3ABD9B2E /* Pods */, 110 | F3A535F711E18C900A22ECE4 /* Frameworks */, 111 | ); 112 | sourceTree = ""; 113 | }; 114 | 4D00B0E41BFD569700D8BB3E /* Products */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | 4D00B0E31BFD569700D8BB3E /* vlckitSwiftSample.app */, 118 | 4D00B0F71BFD569700D8BB3E /* vlckitSwiftSampleTests.xctest */, 119 | 4D00B1021BFD569700D8BB3E /* vlckitSwiftSampleUITests.xctest */, 120 | ); 121 | name = Products; 122 | sourceTree = ""; 123 | }; 124 | 4D00B0E51BFD569700D8BB3E /* vlckitSwiftSample */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 4D00B0E61BFD569700D8BB3E /* AppDelegate.swift */, 128 | 4D00B0E81BFD569700D8BB3E /* ViewController.swift */, 129 | 4D00B0EA1BFD569700D8BB3E /* Main.storyboard */, 130 | 4D00B0ED1BFD569700D8BB3E /* Assets.xcassets */, 131 | 4D00B0EF1BFD569700D8BB3E /* LaunchScreen.storyboard */, 132 | 4D00B0F21BFD569700D8BB3E /* Info.plist */, 133 | 4D00B1141BFD57B300D8BB3E /* vlckitSwiftSample-Bridging-Header.h */, 134 | 4D00B1181BFD58EE00D8BB3E /* empty.cpp */, 135 | 4D00B1191BFD58EE00D8BB3E /* empty.hpp */, 136 | ); 137 | path = vlckitSwiftSample; 138 | sourceTree = ""; 139 | }; 140 | 4D00B0FA1BFD569700D8BB3E /* vlckitSwiftSampleTests */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | 4D00B0FB1BFD569700D8BB3E /* vlckitSwiftSampleTests.swift */, 144 | 4D00B0FD1BFD569700D8BB3E /* Info.plist */, 145 | ); 146 | path = vlckitSwiftSampleTests; 147 | sourceTree = ""; 148 | }; 149 | 4D00B1051BFD569700D8BB3E /* vlckitSwiftSampleUITests */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 4D00B1061BFD569700D8BB3E /* vlckitSwiftSampleUITests.swift */, 153 | 4D00B1081BFD569700D8BB3E /* Info.plist */, 154 | ); 155 | path = vlckitSwiftSampleUITests; 156 | sourceTree = ""; 157 | }; 158 | 7ADC8323CFABAFFF3ABD9B2E /* Pods */ = { 159 | isa = PBXGroup; 160 | children = ( 161 | 2A93027C0135251BAA05100F /* Pods-vlckitSwiftSample.debug.xcconfig */, 162 | 0C5730BFD46A0FE30C7E193A /* Pods-vlckitSwiftSample.release.xcconfig */, 163 | 97FA3E61884B8BB441C95167 /* Pods-vlckitSwiftSampleTests.debug.xcconfig */, 164 | 490C3A601C88DE96D0AAAA4D /* Pods-vlckitSwiftSampleTests.release.xcconfig */, 165 | DF354A06C4298946FD13F8C2 /* Pods-vlckitSwiftSampleUITests.debug.xcconfig */, 166 | 9A054539DB9D955D431B1FAE /* Pods-vlckitSwiftSampleUITests.release.xcconfig */, 167 | ); 168 | name = Pods; 169 | sourceTree = ""; 170 | }; 171 | F3A535F711E18C900A22ECE4 /* Frameworks */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | 881824C921FA50E1002129F5 /* libc++.tbd */, 175 | 4D1240901DF105A900AAB571 /* MobileVLCKit.framework */, 176 | ABC1753B5089DF843713E00E /* Pods_vlckitSwiftSample.framework */, 177 | 4415885FB4A334A8A7FB17B0 /* Pods_vlckitSwiftSampleTests.framework */, 178 | 80F0A74697B9C4CD57373CC0 /* Pods_vlckitSwiftSampleUITests.framework */, 179 | ); 180 | name = Frameworks; 181 | sourceTree = ""; 182 | }; 183 | /* End PBXGroup section */ 184 | 185 | /* Begin PBXNativeTarget section */ 186 | 4D00B0E21BFD569700D8BB3E /* vlckitSwiftSample */ = { 187 | isa = PBXNativeTarget; 188 | buildConfigurationList = 4D00B10B1BFD569700D8BB3E /* Build configuration list for PBXNativeTarget "vlckitSwiftSample" */; 189 | buildPhases = ( 190 | B9B301743F1A7C614E8F2346 /* [CP] Check Pods Manifest.lock */, 191 | 4D00B0DF1BFD569700D8BB3E /* Sources */, 192 | 4D00B0E01BFD569700D8BB3E /* Frameworks */, 193 | 4D00B0E11BFD569700D8BB3E /* Resources */, 194 | ); 195 | buildRules = ( 196 | ); 197 | dependencies = ( 198 | ); 199 | name = vlckitSwiftSample; 200 | productName = vlckitSwiftSample; 201 | productReference = 4D00B0E31BFD569700D8BB3E /* vlckitSwiftSample.app */; 202 | productType = "com.apple.product-type.application"; 203 | }; 204 | 4D00B0F61BFD569700D8BB3E /* vlckitSwiftSampleTests */ = { 205 | isa = PBXNativeTarget; 206 | buildConfigurationList = 4D00B10E1BFD569700D8BB3E /* Build configuration list for PBXNativeTarget "vlckitSwiftSampleTests" */; 207 | buildPhases = ( 208 | C9CB8431A1B450B8AF618146 /* [CP] Check Pods Manifest.lock */, 209 | 4D00B0F31BFD569700D8BB3E /* Sources */, 210 | 4D00B0F41BFD569700D8BB3E /* Frameworks */, 211 | 4D00B0F51BFD569700D8BB3E /* Resources */, 212 | ); 213 | buildRules = ( 214 | ); 215 | dependencies = ( 216 | 4D00B0F91BFD569700D8BB3E /* PBXTargetDependency */, 217 | ); 218 | name = vlckitSwiftSampleTests; 219 | productName = vlckitSwiftSampleTests; 220 | productReference = 4D00B0F71BFD569700D8BB3E /* vlckitSwiftSampleTests.xctest */; 221 | productType = "com.apple.product-type.bundle.unit-test"; 222 | }; 223 | 4D00B1011BFD569700D8BB3E /* vlckitSwiftSampleUITests */ = { 224 | isa = PBXNativeTarget; 225 | buildConfigurationList = 4D00B1111BFD569700D8BB3E /* Build configuration list for PBXNativeTarget "vlckitSwiftSampleUITests" */; 226 | buildPhases = ( 227 | A093F0CA0E12B73797AED8E5 /* [CP] Check Pods Manifest.lock */, 228 | 4D00B0FE1BFD569700D8BB3E /* Sources */, 229 | 4D00B0FF1BFD569700D8BB3E /* Frameworks */, 230 | 4D00B1001BFD569700D8BB3E /* Resources */, 231 | ); 232 | buildRules = ( 233 | ); 234 | dependencies = ( 235 | 4D00B1041BFD569700D8BB3E /* PBXTargetDependency */, 236 | ); 237 | name = vlckitSwiftSampleUITests; 238 | productName = vlckitSwiftSampleUITests; 239 | productReference = 4D00B1021BFD569700D8BB3E /* vlckitSwiftSampleUITests.xctest */; 240 | productType = "com.apple.product-type.bundle.ui-testing"; 241 | }; 242 | /* End PBXNativeTarget section */ 243 | 244 | /* Begin PBXProject section */ 245 | 4D00B0DB1BFD569700D8BB3E /* Project object */ = { 246 | isa = PBXProject; 247 | attributes = { 248 | LastSwiftUpdateCheck = 0710; 249 | LastUpgradeCheck = 0940; 250 | ORGANIZATIONNAME = "Mark Knapp"; 251 | TargetAttributes = { 252 | 4D00B0E21BFD569700D8BB3E = { 253 | CreatedOnToolsVersion = 7.1.1; 254 | DevelopmentTeam = 2NJTR8DC7G; 255 | LastSwiftMigration = 0940; 256 | }; 257 | 4D00B0F61BFD569700D8BB3E = { 258 | CreatedOnToolsVersion = 7.1.1; 259 | LastSwiftMigration = 0940; 260 | TestTargetID = 4D00B0E21BFD569700D8BB3E; 261 | }; 262 | 4D00B1011BFD569700D8BB3E = { 263 | CreatedOnToolsVersion = 7.1.1; 264 | LastSwiftMigration = 0940; 265 | TestTargetID = 4D00B0E21BFD569700D8BB3E; 266 | }; 267 | }; 268 | }; 269 | buildConfigurationList = 4D00B0DE1BFD569700D8BB3E /* Build configuration list for PBXProject "vlckitSwiftSample" */; 270 | compatibilityVersion = "Xcode 3.2"; 271 | developmentRegion = English; 272 | hasScannedForEncodings = 0; 273 | knownRegions = ( 274 | en, 275 | Base, 276 | ); 277 | mainGroup = 4D00B0DA1BFD569700D8BB3E; 278 | productRefGroup = 4D00B0E41BFD569700D8BB3E /* Products */; 279 | projectDirPath = ""; 280 | projectRoot = ""; 281 | targets = ( 282 | 4D00B0E21BFD569700D8BB3E /* vlckitSwiftSample */, 283 | 4D00B0F61BFD569700D8BB3E /* vlckitSwiftSampleTests */, 284 | 4D00B1011BFD569700D8BB3E /* vlckitSwiftSampleUITests */, 285 | ); 286 | }; 287 | /* End PBXProject section */ 288 | 289 | /* Begin PBXResourcesBuildPhase section */ 290 | 4D00B0E11BFD569700D8BB3E /* Resources */ = { 291 | isa = PBXResourcesBuildPhase; 292 | buildActionMask = 2147483647; 293 | files = ( 294 | 4D00B0F11BFD569700D8BB3E /* LaunchScreen.storyboard in Resources */, 295 | 4D00B0EE1BFD569700D8BB3E /* Assets.xcassets in Resources */, 296 | 4D00B0EC1BFD569700D8BB3E /* Main.storyboard in Resources */, 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | }; 300 | 4D00B0F51BFD569700D8BB3E /* Resources */ = { 301 | isa = PBXResourcesBuildPhase; 302 | buildActionMask = 2147483647; 303 | files = ( 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | }; 307 | 4D00B1001BFD569700D8BB3E /* Resources */ = { 308 | isa = PBXResourcesBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | ); 312 | runOnlyForDeploymentPostprocessing = 0; 313 | }; 314 | /* End PBXResourcesBuildPhase section */ 315 | 316 | /* Begin PBXShellScriptBuildPhase section */ 317 | A093F0CA0E12B73797AED8E5 /* [CP] Check Pods Manifest.lock */ = { 318 | isa = PBXShellScriptBuildPhase; 319 | buildActionMask = 2147483647; 320 | files = ( 321 | ); 322 | inputPaths = ( 323 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 324 | "${PODS_ROOT}/Manifest.lock", 325 | ); 326 | name = "[CP] Check Pods Manifest.lock"; 327 | outputPaths = ( 328 | "$(DERIVED_FILE_DIR)/Pods-vlckitSwiftSampleUITests-checkManifestLockResult.txt", 329 | ); 330 | runOnlyForDeploymentPostprocessing = 0; 331 | shellPath = /bin/sh; 332 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 333 | showEnvVarsInLog = 0; 334 | }; 335 | B9B301743F1A7C614E8F2346 /* [CP] Check Pods Manifest.lock */ = { 336 | isa = PBXShellScriptBuildPhase; 337 | buildActionMask = 2147483647; 338 | files = ( 339 | ); 340 | inputPaths = ( 341 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 342 | "${PODS_ROOT}/Manifest.lock", 343 | ); 344 | name = "[CP] Check Pods Manifest.lock"; 345 | outputPaths = ( 346 | "$(DERIVED_FILE_DIR)/Pods-vlckitSwiftSample-checkManifestLockResult.txt", 347 | ); 348 | runOnlyForDeploymentPostprocessing = 0; 349 | shellPath = /bin/sh; 350 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 351 | showEnvVarsInLog = 0; 352 | }; 353 | C9CB8431A1B450B8AF618146 /* [CP] Check Pods Manifest.lock */ = { 354 | isa = PBXShellScriptBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | ); 358 | inputPaths = ( 359 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 360 | "${PODS_ROOT}/Manifest.lock", 361 | ); 362 | name = "[CP] Check Pods Manifest.lock"; 363 | outputPaths = ( 364 | "$(DERIVED_FILE_DIR)/Pods-vlckitSwiftSampleTests-checkManifestLockResult.txt", 365 | ); 366 | runOnlyForDeploymentPostprocessing = 0; 367 | shellPath = /bin/sh; 368 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 369 | showEnvVarsInLog = 0; 370 | }; 371 | /* End PBXShellScriptBuildPhase section */ 372 | 373 | /* Begin PBXSourcesBuildPhase section */ 374 | 4D00B0DF1BFD569700D8BB3E /* Sources */ = { 375 | isa = PBXSourcesBuildPhase; 376 | buildActionMask = 2147483647; 377 | files = ( 378 | 4D00B0E91BFD569700D8BB3E /* ViewController.swift in Sources */, 379 | 4D00B0E71BFD569700D8BB3E /* AppDelegate.swift in Sources */, 380 | 4D00B11A1BFD58EE00D8BB3E /* empty.cpp in Sources */, 381 | ); 382 | runOnlyForDeploymentPostprocessing = 0; 383 | }; 384 | 4D00B0F31BFD569700D8BB3E /* Sources */ = { 385 | isa = PBXSourcesBuildPhase; 386 | buildActionMask = 2147483647; 387 | files = ( 388 | 4D00B0FC1BFD569700D8BB3E /* vlckitSwiftSampleTests.swift in Sources */, 389 | ); 390 | runOnlyForDeploymentPostprocessing = 0; 391 | }; 392 | 4D00B0FE1BFD569700D8BB3E /* Sources */ = { 393 | isa = PBXSourcesBuildPhase; 394 | buildActionMask = 2147483647; 395 | files = ( 396 | 4D00B1071BFD569700D8BB3E /* vlckitSwiftSampleUITests.swift in Sources */, 397 | ); 398 | runOnlyForDeploymentPostprocessing = 0; 399 | }; 400 | /* End PBXSourcesBuildPhase section */ 401 | 402 | /* Begin PBXTargetDependency section */ 403 | 4D00B0F91BFD569700D8BB3E /* PBXTargetDependency */ = { 404 | isa = PBXTargetDependency; 405 | target = 4D00B0E21BFD569700D8BB3E /* vlckitSwiftSample */; 406 | targetProxy = 4D00B0F81BFD569700D8BB3E /* PBXContainerItemProxy */; 407 | }; 408 | 4D00B1041BFD569700D8BB3E /* PBXTargetDependency */ = { 409 | isa = PBXTargetDependency; 410 | target = 4D00B0E21BFD569700D8BB3E /* vlckitSwiftSample */; 411 | targetProxy = 4D00B1031BFD569700D8BB3E /* PBXContainerItemProxy */; 412 | }; 413 | /* End PBXTargetDependency section */ 414 | 415 | /* Begin PBXVariantGroup section */ 416 | 4D00B0EA1BFD569700D8BB3E /* Main.storyboard */ = { 417 | isa = PBXVariantGroup; 418 | children = ( 419 | 4D00B0EB1BFD569700D8BB3E /* Base */, 420 | ); 421 | name = Main.storyboard; 422 | sourceTree = ""; 423 | }; 424 | 4D00B0EF1BFD569700D8BB3E /* LaunchScreen.storyboard */ = { 425 | isa = PBXVariantGroup; 426 | children = ( 427 | 4D00B0F01BFD569700D8BB3E /* Base */, 428 | ); 429 | name = LaunchScreen.storyboard; 430 | sourceTree = ""; 431 | }; 432 | /* End PBXVariantGroup section */ 433 | 434 | /* Begin XCBuildConfiguration section */ 435 | 4D00B1091BFD569700D8BB3E /* Debug */ = { 436 | isa = XCBuildConfiguration; 437 | buildSettings = { 438 | ALWAYS_SEARCH_USER_PATHS = NO; 439 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 440 | CLANG_CXX_LIBRARY = "compiler-default"; 441 | CLANG_ENABLE_MODULES = YES; 442 | CLANG_ENABLE_OBJC_ARC = YES; 443 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 444 | CLANG_WARN_BOOL_CONVERSION = YES; 445 | CLANG_WARN_COMMA = YES; 446 | CLANG_WARN_CONSTANT_CONVERSION = YES; 447 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 448 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 449 | CLANG_WARN_EMPTY_BODY = YES; 450 | CLANG_WARN_ENUM_CONVERSION = YES; 451 | CLANG_WARN_INFINITE_RECURSION = YES; 452 | CLANG_WARN_INT_CONVERSION = YES; 453 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 454 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 455 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 456 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 457 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 458 | CLANG_WARN_STRICT_PROTOTYPES = YES; 459 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 460 | CLANG_WARN_UNREACHABLE_CODE = YES; 461 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 462 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 463 | COPY_PHASE_STRIP = NO; 464 | DEBUG_INFORMATION_FORMAT = dwarf; 465 | ENABLE_STRICT_OBJC_MSGSEND = YES; 466 | ENABLE_TESTABILITY = YES; 467 | GCC_C_LANGUAGE_STANDARD = gnu99; 468 | GCC_DYNAMIC_NO_PIC = NO; 469 | GCC_NO_COMMON_BLOCKS = YES; 470 | GCC_OPTIMIZATION_LEVEL = 0; 471 | GCC_PREPROCESSOR_DEFINITIONS = ( 472 | "DEBUG=1", 473 | "$(inherited)", 474 | ); 475 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 476 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 477 | GCC_WARN_UNDECLARED_SELECTOR = YES; 478 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 479 | GCC_WARN_UNUSED_FUNCTION = YES; 480 | GCC_WARN_UNUSED_VARIABLE = YES; 481 | IPHONEOS_DEPLOYMENT_TARGET = 9.1; 482 | MTL_ENABLE_DEBUG_INFO = YES; 483 | ONLY_ACTIVE_ARCH = YES; 484 | SDKROOT = iphoneos; 485 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 486 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 487 | SWIFT_VERSION = 4.0; 488 | TARGETED_DEVICE_FAMILY = "1,2"; 489 | }; 490 | name = Debug; 491 | }; 492 | 4D00B10A1BFD569700D8BB3E /* Release */ = { 493 | isa = XCBuildConfiguration; 494 | buildSettings = { 495 | ALWAYS_SEARCH_USER_PATHS = NO; 496 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 497 | CLANG_CXX_LIBRARY = "compiler-default"; 498 | CLANG_ENABLE_MODULES = YES; 499 | CLANG_ENABLE_OBJC_ARC = YES; 500 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 501 | CLANG_WARN_BOOL_CONVERSION = YES; 502 | CLANG_WARN_COMMA = YES; 503 | CLANG_WARN_CONSTANT_CONVERSION = YES; 504 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 505 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 506 | CLANG_WARN_EMPTY_BODY = YES; 507 | CLANG_WARN_ENUM_CONVERSION = YES; 508 | CLANG_WARN_INFINITE_RECURSION = YES; 509 | CLANG_WARN_INT_CONVERSION = YES; 510 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 511 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 512 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 513 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 514 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 515 | CLANG_WARN_STRICT_PROTOTYPES = YES; 516 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 517 | CLANG_WARN_UNREACHABLE_CODE = YES; 518 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 519 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 520 | COPY_PHASE_STRIP = NO; 521 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 522 | ENABLE_NS_ASSERTIONS = NO; 523 | ENABLE_STRICT_OBJC_MSGSEND = YES; 524 | GCC_C_LANGUAGE_STANDARD = gnu99; 525 | GCC_NO_COMMON_BLOCKS = YES; 526 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 527 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 528 | GCC_WARN_UNDECLARED_SELECTOR = YES; 529 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 530 | GCC_WARN_UNUSED_FUNCTION = YES; 531 | GCC_WARN_UNUSED_VARIABLE = YES; 532 | IPHONEOS_DEPLOYMENT_TARGET = 9.1; 533 | MTL_ENABLE_DEBUG_INFO = NO; 534 | SDKROOT = iphoneos; 535 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 536 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 537 | SWIFT_VERSION = 4.0; 538 | TARGETED_DEVICE_FAMILY = "1,2"; 539 | VALIDATE_PRODUCT = YES; 540 | }; 541 | name = Release; 542 | }; 543 | 4D00B10C1BFD569700D8BB3E /* Debug */ = { 544 | isa = XCBuildConfiguration; 545 | baseConfigurationReference = 2A93027C0135251BAA05100F /* Pods-vlckitSwiftSample.debug.xcconfig */; 546 | buildSettings = { 547 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 548 | CLANG_CXX_LIBRARY = "compiler-default"; 549 | CLANG_ENABLE_MODULES = YES; 550 | DEVELOPMENT_TEAM = 2NJTR8DC7G; 551 | ENABLE_BITCODE = NO; 552 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 553 | INFOPLIST_FILE = vlckitSwiftSample/Info.plist; 554 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 555 | PRODUCT_BUNDLE_IDENTIFIER = com.mark.vlckitSwiftSample; 556 | PRODUCT_NAME = "$(TARGET_NAME)"; 557 | SWIFT_OBJC_BRIDGING_HEADER = "vlckitSwiftSample-Bridging-Header.h"; 558 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 559 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 560 | SWIFT_VERSION = 4.0; 561 | }; 562 | name = Debug; 563 | }; 564 | 4D00B10D1BFD569700D8BB3E /* Release */ = { 565 | isa = XCBuildConfiguration; 566 | baseConfigurationReference = 0C5730BFD46A0FE30C7E193A /* Pods-vlckitSwiftSample.release.xcconfig */; 567 | buildSettings = { 568 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 569 | CLANG_CXX_LIBRARY = "compiler-default"; 570 | CLANG_ENABLE_MODULES = YES; 571 | DEVELOPMENT_TEAM = 2NJTR8DC7G; 572 | ENABLE_BITCODE = NO; 573 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 574 | INFOPLIST_FILE = vlckitSwiftSample/Info.plist; 575 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 576 | PRODUCT_BUNDLE_IDENTIFIER = com.mark.vlckitSwiftSample; 577 | PRODUCT_NAME = "$(TARGET_NAME)"; 578 | SWIFT_OBJC_BRIDGING_HEADER = "vlckitSwiftSample-Bridging-Header.h"; 579 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 580 | SWIFT_VERSION = 4.0; 581 | }; 582 | name = Release; 583 | }; 584 | 4D00B10F1BFD569700D8BB3E /* Debug */ = { 585 | isa = XCBuildConfiguration; 586 | baseConfigurationReference = 97FA3E61884B8BB441C95167 /* Pods-vlckitSwiftSampleTests.debug.xcconfig */; 587 | buildSettings = { 588 | BUNDLE_LOADER = "$(TEST_HOST)"; 589 | CLANG_CXX_LIBRARY = "compiler-default"; 590 | INFOPLIST_FILE = vlckitSwiftSampleTests/Info.plist; 591 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 592 | PRODUCT_BUNDLE_IDENTIFIER = com.mark.vlckitSwiftSampleTests; 593 | PRODUCT_NAME = "$(TARGET_NAME)"; 594 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 595 | SWIFT_VERSION = 4.0; 596 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/vlckitSwiftSample.app/vlckitSwiftSample"; 597 | }; 598 | name = Debug; 599 | }; 600 | 4D00B1101BFD569700D8BB3E /* Release */ = { 601 | isa = XCBuildConfiguration; 602 | baseConfigurationReference = 490C3A601C88DE96D0AAAA4D /* Pods-vlckitSwiftSampleTests.release.xcconfig */; 603 | buildSettings = { 604 | BUNDLE_LOADER = "$(TEST_HOST)"; 605 | CLANG_CXX_LIBRARY = "compiler-default"; 606 | INFOPLIST_FILE = vlckitSwiftSampleTests/Info.plist; 607 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 608 | PRODUCT_BUNDLE_IDENTIFIER = com.mark.vlckitSwiftSampleTests; 609 | PRODUCT_NAME = "$(TARGET_NAME)"; 610 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 611 | SWIFT_VERSION = 4.0; 612 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/vlckitSwiftSample.app/vlckitSwiftSample"; 613 | }; 614 | name = Release; 615 | }; 616 | 4D00B1121BFD569700D8BB3E /* Debug */ = { 617 | isa = XCBuildConfiguration; 618 | baseConfigurationReference = DF354A06C4298946FD13F8C2 /* Pods-vlckitSwiftSampleUITests.debug.xcconfig */; 619 | buildSettings = { 620 | CLANG_CXX_LIBRARY = "compiler-default"; 621 | INFOPLIST_FILE = vlckitSwiftSampleUITests/Info.plist; 622 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 623 | PRODUCT_BUNDLE_IDENTIFIER = com.mark.vlckitSwiftSampleUITests; 624 | PRODUCT_NAME = "$(TARGET_NAME)"; 625 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 626 | SWIFT_VERSION = 4.0; 627 | TEST_TARGET_NAME = vlckitSwiftSample; 628 | USES_XCTRUNNER = YES; 629 | }; 630 | name = Debug; 631 | }; 632 | 4D00B1131BFD569700D8BB3E /* Release */ = { 633 | isa = XCBuildConfiguration; 634 | baseConfigurationReference = 9A054539DB9D955D431B1FAE /* Pods-vlckitSwiftSampleUITests.release.xcconfig */; 635 | buildSettings = { 636 | CLANG_CXX_LIBRARY = "compiler-default"; 637 | INFOPLIST_FILE = vlckitSwiftSampleUITests/Info.plist; 638 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 639 | PRODUCT_BUNDLE_IDENTIFIER = com.mark.vlckitSwiftSampleUITests; 640 | PRODUCT_NAME = "$(TARGET_NAME)"; 641 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 642 | SWIFT_VERSION = 4.0; 643 | TEST_TARGET_NAME = vlckitSwiftSample; 644 | USES_XCTRUNNER = YES; 645 | }; 646 | name = Release; 647 | }; 648 | /* End XCBuildConfiguration section */ 649 | 650 | /* Begin XCConfigurationList section */ 651 | 4D00B0DE1BFD569700D8BB3E /* Build configuration list for PBXProject "vlckitSwiftSample" */ = { 652 | isa = XCConfigurationList; 653 | buildConfigurations = ( 654 | 4D00B1091BFD569700D8BB3E /* Debug */, 655 | 4D00B10A1BFD569700D8BB3E /* Release */, 656 | ); 657 | defaultConfigurationIsVisible = 0; 658 | defaultConfigurationName = Release; 659 | }; 660 | 4D00B10B1BFD569700D8BB3E /* Build configuration list for PBXNativeTarget "vlckitSwiftSample" */ = { 661 | isa = XCConfigurationList; 662 | buildConfigurations = ( 663 | 4D00B10C1BFD569700D8BB3E /* Debug */, 664 | 4D00B10D1BFD569700D8BB3E /* Release */, 665 | ); 666 | defaultConfigurationIsVisible = 0; 667 | defaultConfigurationName = Release; 668 | }; 669 | 4D00B10E1BFD569700D8BB3E /* Build configuration list for PBXNativeTarget "vlckitSwiftSampleTests" */ = { 670 | isa = XCConfigurationList; 671 | buildConfigurations = ( 672 | 4D00B10F1BFD569700D8BB3E /* Debug */, 673 | 4D00B1101BFD569700D8BB3E /* Release */, 674 | ); 675 | defaultConfigurationIsVisible = 0; 676 | defaultConfigurationName = Release; 677 | }; 678 | 4D00B1111BFD569700D8BB3E /* Build configuration list for PBXNativeTarget "vlckitSwiftSampleUITests" */ = { 679 | isa = XCConfigurationList; 680 | buildConfigurations = ( 681 | 4D00B1121BFD569700D8BB3E /* Debug */, 682 | 4D00B1131BFD569700D8BB3E /* Release */, 683 | ); 684 | defaultConfigurationIsVisible = 0; 685 | defaultConfigurationName = Release; 686 | }; 687 | /* End XCConfigurationList section */ 688 | }; 689 | rootObject = 4D00B0DB1BFD569700D8BB3E /* Project object */; 690 | } 691 | --------------------------------------------------------------------------------