├── QRCode-Example ├── .DS_Store ├── Assets.xcassets │ ├── Contents.json │ ├── .DS_Store │ └── AppIcon.appiconset │ │ └── Contents.json ├── VideoPreviewView.swift ├── Info.plist ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── AppDelegate.swift └── ViewController.swift ├── QRCode-Example.xcodeproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── project.pbxproj ├── QRCode-ExampleTests ├── Info.plist └── QRCode_ExampleTests.swift ├── .gitignore └── README.md /QRCode-Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansemannn/iOS11-QR-Code-Example/HEAD/QRCode-Example/.DS_Store -------------------------------------------------------------------------------- /QRCode-Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /QRCode-Example/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansemannn/iOS11-QR-Code-Example/HEAD/QRCode-Example/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /QRCode-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /QRCode-ExampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 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 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /QRCode-ExampleTests/QRCode_ExampleTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // QRCode_ExampleTests.swift 3 | // QRCode-ExampleTests 4 | // 5 | // Created by Hans Knöchel on 09.06.17. 6 | // Copyright © 2017 Hans Knoechel. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import QRCode_Example 11 | 12 | class QRCode_ExampleTests: 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 | -------------------------------------------------------------------------------- /QRCode-Example/VideoPreviewView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // VideoPreviewView.swift 3 | // QRCode-Example 4 | // 5 | // Created by Andrew Strader on 10/19/17. 6 | // Copyright © 2017 Hans Knoechel. All rights reserved. 7 | // 8 | 9 | import AVKit 10 | import UIKit 11 | 12 | class VideoPreviewView : UIView { 13 | 14 | var videoPreviewLayer: AVCaptureVideoPreviewLayer { 15 | return layer as! AVCaptureVideoPreviewLayer 16 | } 17 | 18 | var session: AVCaptureSession? { 19 | get { return videoPreviewLayer.session } 20 | set { videoPreviewLayer.session = newValue } 21 | } 22 | 23 | override class var layerClass: AnyClass { 24 | return AVCaptureVideoPreviewLayer.self 25 | } 26 | 27 | private var orientationMap: [UIDeviceOrientation : AVCaptureVideoOrientation] = [ 28 | .portrait : .portrait, 29 | .portraitUpsideDown : .portraitUpsideDown, 30 | .landscapeLeft : .landscapeRight, 31 | .landscapeRight : .landscapeLeft, 32 | ] 33 | 34 | func updateVideoOrientationForDeviceOrientation() { 35 | if let videoPreviewLayerConnection = videoPreviewLayer.connection { 36 | let deviceOrientation = UIDevice.current.orientation 37 | guard let newVideoOrientation = orientationMap[deviceOrientation], deviceOrientation.isPortrait || deviceOrientation.isLandscape else { 38 | return 39 | } 40 | videoPreviewLayerConnection.videoOrientation = newVideoOrientation 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xccheckout 23 | *.xcscmblueprint 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | *.ipa 28 | *.dSYM.zip 29 | *.dSYM 30 | 31 | ## Playgrounds 32 | timeline.xctimeline 33 | playground.xcworkspace 34 | 35 | # Swift Package Manager 36 | # 37 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 38 | # Packages/ 39 | # Package.pins 40 | .build/ 41 | 42 | # CocoaPods 43 | # 44 | # We recommend against adding the Pods directory to your .gitignore. However 45 | # you should judge for yourself, the pros and cons are mentioned at: 46 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 47 | # 48 | # Pods/ 49 | 50 | # Carthage 51 | # 52 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 53 | # Carthage/Checkouts 54 | 55 | Carthage/Build 56 | 57 | # fastlane 58 | # 59 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 60 | # screenshots whenever they are needed. 61 | # For more information about the recommended setup visit: 62 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 63 | 64 | fastlane/report.xml 65 | fastlane/Preview.html 66 | fastlane/screenshots 67 | fastlane/test_output 68 | -------------------------------------------------------------------------------- /QRCode-Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSCameraUsageDescription 6 | capture photos to scan for barcodes 7 | CFBundleDevelopmentRegion 8 | $(DEVELOPMENT_LANGUAGE) 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 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 | -------------------------------------------------------------------------------- /QRCode-Example/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 | -------------------------------------------------------------------------------- /QRCode-Example/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 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🔲 iOS11 QR-Code Example 2 | A quick example showing how to use the `Vision` system-framework in iOS 11 and Swift 4. 3 | 4 | ## Prerequisites 5 | * Xcode 9 and later 6 | 7 | ## Getting Started 8 | First, import the `Vision` framework. 9 | ```swift 10 | import Vision 11 | ``` 12 | Next, create a barcode-request that will call the completion-handler asynchronously when it detects a code: 13 | ```swift 14 | // Create a barcode detection-request 15 | let barcodeRequest = VNDetectBarcodesRequest(completionHandler: { request, error in 16 | 17 | guard let results = request.results else { return } 18 | 19 | // Loopm through the found results 20 | for result in results { 21 | 22 | // Cast the result to a barcode-observation 23 | if let barcode = result as? VNBarcodeObservation { 24 | 25 | // Print barcode-values 26 | print("Symbology: \(barcode.symbology.rawValue)") 27 | 28 | if let desc = barcode.barcodeDescriptor as? CIQRCodeDescriptor { 29 | let content = String(data: desc.errorCorrectedPayload, encoding: .utf8) 30 | 31 | // FIXME: This currently returns nil. I did not find any docs on how to encode the data properly so far. 32 | print("Payload: \(String(describing: content))") 33 | print("Error-Correction-Level: \(desc.errorCorrectionLevel)") 34 | print("Symbol-Version: \(desc.symbolVersion)") 35 | } 36 | } 37 | } 38 | }) 39 | ``` 40 | Finally, call the image-request-handler with the previously create barcode-request: 41 | ```swift 42 | // Create an image handler and use the CGImage your UIImage instance. 43 | guard let image = myImage.cgImage else { return } 44 | let handler = VNImageRequestHandler(cgImage: image, options: [:]) 45 | 46 | // Perform the barcode-request. This will call the completion-handler of the barcode-request. 47 | guard let _ = try? handler.perform([barcodeRequest]) else { 48 | return print("Could not perform barcode-request!") 49 | } 50 | ``` 51 | That's it! Run the app on the simulator / device and detect QR-codes. 52 | 53 | ## Author 54 | Hans Knöchel ([@hansemannnn](https://twitter.com/hansemannnn)) 55 | -------------------------------------------------------------------------------- /QRCode-Example/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // QRCode-Example 4 | // 5 | // Created by Hans Knöchel on 09.06.17. 6 | // Copyright © 2017 Hans Knoechel. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 17 | // Override point for customization after application launch. 18 | return true 19 | } 20 | 21 | func applicationWillResignActive(_ application: UIApplication) { 22 | // 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. 23 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 24 | } 25 | 26 | func applicationDidEnterBackground(_ application: UIApplication) { 27 | // 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. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | func applicationWillEnterForeground(_ application: UIApplication) { 32 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 33 | } 34 | 35 | func applicationDidBecomeActive(_ application: UIApplication) { 36 | // 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. 37 | } 38 | 39 | func applicationWillTerminate(_ application: UIApplication) { 40 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /QRCode-Example/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 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /QRCode-Example/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // QRCode-Example 4 | // 5 | // Created by Hans Knöchel on 09.06.17. 6 | // Copyright © 2017 Hans Knoechel. All rights reserved. 7 | // 8 | 9 | import AVKit 10 | import UIKit 11 | import Vision 12 | 13 | class ViewController: UIViewController { 14 | 15 | @IBOutlet var previewView: VideoPreviewView! 16 | 17 | @IBAction func selectPreview(_ sender: UITapGestureRecognizer) { 18 | snapPhoto() 19 | } 20 | 21 | var captureSession: AVCaptureSession! 22 | 23 | var capturePhotoOutput: AVCapturePhotoOutput! 24 | 25 | var isCaptureSessionConfigured = false 26 | 27 | private func configureCaptureSession() { 28 | 29 | guard let videoCaptureDevice = AVCaptureDevice.default(for: AVMediaType.video) else { 30 | print("Unable to find capture device") 31 | return 32 | } 33 | 34 | guard let videoInput = try? AVCaptureDeviceInput(device: videoCaptureDevice) else { 35 | print("Unable to obtain video input") 36 | return 37 | } 38 | 39 | capturePhotoOutput = AVCapturePhotoOutput() 40 | capturePhotoOutput.isHighResolutionCaptureEnabled = true 41 | capturePhotoOutput.isLivePhotoCaptureEnabled = capturePhotoOutput.isLivePhotoCaptureSupported 42 | 43 | guard captureSession.canAddInput(videoInput) else { 44 | print("Unable to add input") 45 | return 46 | } 47 | 48 | guard captureSession.canAddOutput(capturePhotoOutput) else { 49 | print("Unable to add output") 50 | return 51 | } 52 | 53 | captureSession.beginConfiguration() 54 | captureSession.sessionPreset = AVCaptureSession.Preset.photo 55 | captureSession.addInput(videoInput) 56 | captureSession.addOutput(capturePhotoOutput) 57 | captureSession.commitConfiguration() 58 | } 59 | 60 | private func snapPhoto() { 61 | guard let capturePhotoOutput = self.capturePhotoOutput else { return } 62 | guard let captureConnection = previewView.videoPreviewLayer.connection else { return } 63 | 64 | if let photoOutputConnection = capturePhotoOutput.connection(with: AVMediaType.video) { 65 | photoOutputConnection.videoOrientation = captureConnection.videoOrientation 66 | } 67 | 68 | let photoSettings = AVCapturePhotoSettings() 69 | photoSettings.isAutoStillImageStabilizationEnabled = true 70 | photoSettings.isHighResolutionPhotoEnabled = true 71 | photoSettings.flashMode = .auto 72 | 73 | capturePhotoOutput.capturePhoto(with: photoSettings, delegate: self) 74 | } 75 | 76 | private func scanImage(cgImage: CGImage) { 77 | let barcodeRequest = VNDetectBarcodesRequest(completionHandler: { request, error in 78 | self.reportResults(results: request.results) 79 | }) 80 | 81 | let handler = VNImageRequestHandler(cgImage: cgImage, options: [.properties : ""]) 82 | 83 | guard let _ = try? handler.perform([barcodeRequest]) else { 84 | return print("Could not perform barcode-request!") 85 | } 86 | } 87 | 88 | private func showFirstLaunchAlert() { 89 | let alertShown = UserDefaults.standard.bool(forKey: "alertShown") 90 | 91 | guard !alertShown else { 92 | return 93 | } 94 | 95 | let alert = UIAlertController(title: "Welcome to the iOS 11+ QRCode-example!", 96 | message: "Try it out by tapping on the camera-preview in order to take a new photo and check the logs afterwards.", 97 | preferredStyle: .alert) 98 | 99 | alert.addAction(UIAlertAction(title: "Got it!", style: .default, handler: { _ in 100 | UserDefaults.standard.set(true, forKey: "alertShown") 101 | })) 102 | 103 | DispatchQueue.main.async { 104 | self.present(alert, animated: true, completion: nil) 105 | } 106 | } 107 | 108 | private func reportResults(results: [Any]?) { 109 | // Loop through the found results 110 | print("Barcode observation") 111 | 112 | guard let results = results else { 113 | return print("No results found.") 114 | } 115 | 116 | print("Number of results found: \(results.count)") 117 | 118 | for result in results { 119 | 120 | // Cast the result to a barcode-observation 121 | if let barcode = result as? VNBarcodeObservation { 122 | 123 | if let payload = barcode.payloadStringValue { 124 | print("Payload: \(payload)") 125 | } 126 | 127 | // Print barcode-values 128 | print("Symbology: \(barcode.symbology.rawValue)") 129 | 130 | if let desc = barcode.barcodeDescriptor as? CIQRCodeDescriptor { 131 | let content = String(data: desc.errorCorrectedPayload, encoding: .utf8) 132 | 133 | // FIXME: This currently returns nil. I did not find any docs on how to encode the data properly so far. 134 | print("Payload: \(String(describing: content))") 135 | print("Error-Correction-Level: \(desc.errorCorrectionLevel)") 136 | print("Symbol-Version: \(desc.symbolVersion)") 137 | } 138 | } 139 | } 140 | } 141 | } 142 | 143 | // MARK: UIViewControllerDelegate 144 | 145 | extension ViewController { 146 | 147 | override func viewDidLoad() { 148 | super.viewDidLoad() 149 | 150 | captureSession = AVCaptureSession() 151 | previewView.session = captureSession 152 | } 153 | 154 | override func viewWillAppear(_ animated: Bool) { 155 | super.viewWillAppear(animated) 156 | 157 | if isCaptureSessionConfigured { 158 | if !captureSession.isRunning { 159 | captureSession.startRunning() 160 | } 161 | } else { 162 | configureCaptureSession() 163 | isCaptureSessionConfigured = true 164 | captureSession.startRunning() 165 | previewView.updateVideoOrientationForDeviceOrientation() 166 | } 167 | 168 | showFirstLaunchAlert() 169 | } 170 | 171 | override func viewWillDisappear(_ animated: Bool) { 172 | super.viewWillDisappear(animated) 173 | 174 | if captureSession.isRunning { 175 | captureSession.stopRunning() 176 | } 177 | } 178 | } 179 | 180 | // MARK: AVCapturePhotoCaptureDelegate 181 | 182 | extension ViewController : AVCapturePhotoCaptureDelegate { 183 | 184 | func photoOutput(_ output: AVCapturePhotoOutput, didFinishProcessingPhoto photo: AVCapturePhoto, error: Error?) { 185 | print("Finished processing photo") 186 | 187 | guard let cgImageRef = photo.cgImageRepresentation() else { 188 | return print("Could not get image representation") 189 | } 190 | 191 | let cgImage = cgImageRef.takeUnretainedValue() 192 | 193 | print("Scanning image") 194 | scanImage(cgImage: cgImage) 195 | } 196 | } 197 | -------------------------------------------------------------------------------- /QRCode-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 48; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 093ED9EA1F9916820013937C /* VideoPreviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 093ED9E91F9916820013937C /* VideoPreviewView.swift */; }; 11 | DB0D9F221EEAED7C00F7D533 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0D9F211EEAED7C00F7D533 /* AppDelegate.swift */; }; 12 | DB0D9F241EEAED7C00F7D533 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0D9F231EEAED7C00F7D533 /* ViewController.swift */; }; 13 | DB0D9F271EEAED7D00F7D533 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DB0D9F251EEAED7D00F7D533 /* Main.storyboard */; }; 14 | DB0D9F291EEAED7D00F7D533 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DB0D9F281EEAED7D00F7D533 /* Assets.xcassets */; }; 15 | DB0D9F2C1EEAED7D00F7D533 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DB0D9F2A1EEAED7D00F7D533 /* LaunchScreen.storyboard */; }; 16 | DB0D9F371EEAED7D00F7D533 /* QRCode_ExampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0D9F361EEAED7D00F7D533 /* QRCode_ExampleTests.swift */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXContainerItemProxy section */ 20 | DB0D9F331EEAED7D00F7D533 /* PBXContainerItemProxy */ = { 21 | isa = PBXContainerItemProxy; 22 | containerPortal = DB0D9F161EEAED7C00F7D533 /* Project object */; 23 | proxyType = 1; 24 | remoteGlobalIDString = DB0D9F1D1EEAED7C00F7D533; 25 | remoteInfo = "QRCode-Example"; 26 | }; 27 | /* End PBXContainerItemProxy section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | 093ED9E91F9916820013937C /* VideoPreviewView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoPreviewView.swift; sourceTree = ""; }; 31 | DB0D9F1E1EEAED7C00F7D533 /* QRCode-Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "QRCode-Example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 32 | DB0D9F211EEAED7C00F7D533 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 33 | DB0D9F231EEAED7C00F7D533 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 34 | DB0D9F261EEAED7D00F7D533 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 35 | DB0D9F281EEAED7D00F7D533 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 36 | DB0D9F2B1EEAED7D00F7D533 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 37 | DB0D9F2D1EEAED7D00F7D533 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 38 | DB0D9F321EEAED7D00F7D533 /* QRCode-ExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "QRCode-ExampleTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | DB0D9F361EEAED7D00F7D533 /* QRCode_ExampleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCode_ExampleTests.swift; sourceTree = ""; }; 40 | DB0D9F381EEAED7D00F7D533 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 41 | /* End PBXFileReference section */ 42 | 43 | /* Begin PBXFrameworksBuildPhase section */ 44 | DB0D9F1B1EEAED7C00F7D533 /* Frameworks */ = { 45 | isa = PBXFrameworksBuildPhase; 46 | buildActionMask = 2147483647; 47 | files = ( 48 | ); 49 | runOnlyForDeploymentPostprocessing = 0; 50 | }; 51 | DB0D9F2F1EEAED7D00F7D533 /* Frameworks */ = { 52 | isa = PBXFrameworksBuildPhase; 53 | buildActionMask = 2147483647; 54 | files = ( 55 | ); 56 | runOnlyForDeploymentPostprocessing = 0; 57 | }; 58 | /* End PBXFrameworksBuildPhase section */ 59 | 60 | /* Begin PBXGroup section */ 61 | DB0D9F151EEAED7C00F7D533 = { 62 | isa = PBXGroup; 63 | children = ( 64 | DB0D9F201EEAED7C00F7D533 /* QRCode-Example */, 65 | DB0D9F351EEAED7D00F7D533 /* QRCode-ExampleTests */, 66 | DB0D9F1F1EEAED7C00F7D533 /* Products */, 67 | ); 68 | sourceTree = ""; 69 | }; 70 | DB0D9F1F1EEAED7C00F7D533 /* Products */ = { 71 | isa = PBXGroup; 72 | children = ( 73 | DB0D9F1E1EEAED7C00F7D533 /* QRCode-Example.app */, 74 | DB0D9F321EEAED7D00F7D533 /* QRCode-ExampleTests.xctest */, 75 | ); 76 | name = Products; 77 | sourceTree = ""; 78 | }; 79 | DB0D9F201EEAED7C00F7D533 /* QRCode-Example */ = { 80 | isa = PBXGroup; 81 | children = ( 82 | DB0D9F211EEAED7C00F7D533 /* AppDelegate.swift */, 83 | DB0D9F231EEAED7C00F7D533 /* ViewController.swift */, 84 | 093ED9E91F9916820013937C /* VideoPreviewView.swift */, 85 | DB0D9F251EEAED7D00F7D533 /* Main.storyboard */, 86 | DB0D9F281EEAED7D00F7D533 /* Assets.xcassets */, 87 | DB0D9F2A1EEAED7D00F7D533 /* LaunchScreen.storyboard */, 88 | DB0D9F2D1EEAED7D00F7D533 /* Info.plist */, 89 | ); 90 | path = "QRCode-Example"; 91 | sourceTree = ""; 92 | }; 93 | DB0D9F351EEAED7D00F7D533 /* QRCode-ExampleTests */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | DB0D9F361EEAED7D00F7D533 /* QRCode_ExampleTests.swift */, 97 | DB0D9F381EEAED7D00F7D533 /* Info.plist */, 98 | ); 99 | path = "QRCode-ExampleTests"; 100 | sourceTree = ""; 101 | }; 102 | /* End PBXGroup section */ 103 | 104 | /* Begin PBXNativeTarget section */ 105 | DB0D9F1D1EEAED7C00F7D533 /* QRCode-Example */ = { 106 | isa = PBXNativeTarget; 107 | buildConfigurationList = DB0D9F3B1EEAED7D00F7D533 /* Build configuration list for PBXNativeTarget "QRCode-Example" */; 108 | buildPhases = ( 109 | DB0D9F1A1EEAED7C00F7D533 /* Sources */, 110 | DB0D9F1B1EEAED7C00F7D533 /* Frameworks */, 111 | DB0D9F1C1EEAED7C00F7D533 /* Resources */, 112 | ); 113 | buildRules = ( 114 | ); 115 | dependencies = ( 116 | ); 117 | name = "QRCode-Example"; 118 | productName = "QRCode-Example"; 119 | productReference = DB0D9F1E1EEAED7C00F7D533 /* QRCode-Example.app */; 120 | productType = "com.apple.product-type.application"; 121 | }; 122 | DB0D9F311EEAED7D00F7D533 /* QRCode-ExampleTests */ = { 123 | isa = PBXNativeTarget; 124 | buildConfigurationList = DB0D9F3E1EEAED7D00F7D533 /* Build configuration list for PBXNativeTarget "QRCode-ExampleTests" */; 125 | buildPhases = ( 126 | DB0D9F2E1EEAED7D00F7D533 /* Sources */, 127 | DB0D9F2F1EEAED7D00F7D533 /* Frameworks */, 128 | DB0D9F301EEAED7D00F7D533 /* Resources */, 129 | ); 130 | buildRules = ( 131 | ); 132 | dependencies = ( 133 | DB0D9F341EEAED7D00F7D533 /* PBXTargetDependency */, 134 | ); 135 | name = "QRCode-ExampleTests"; 136 | productName = "QRCode-ExampleTests"; 137 | productReference = DB0D9F321EEAED7D00F7D533 /* QRCode-ExampleTests.xctest */; 138 | productType = "com.apple.product-type.bundle.unit-test"; 139 | }; 140 | /* End PBXNativeTarget section */ 141 | 142 | /* Begin PBXProject section */ 143 | DB0D9F161EEAED7C00F7D533 /* Project object */ = { 144 | isa = PBXProject; 145 | attributes = { 146 | LastSwiftUpdateCheck = 0900; 147 | LastUpgradeCheck = 0900; 148 | ORGANIZATIONNAME = "Hans Knoechel"; 149 | TargetAttributes = { 150 | DB0D9F1D1EEAED7C00F7D533 = { 151 | CreatedOnToolsVersion = 9.0; 152 | }; 153 | DB0D9F311EEAED7D00F7D533 = { 154 | CreatedOnToolsVersion = 9.0; 155 | TestTargetID = DB0D9F1D1EEAED7C00F7D533; 156 | }; 157 | }; 158 | }; 159 | buildConfigurationList = DB0D9F191EEAED7C00F7D533 /* Build configuration list for PBXProject "QRCode-Example" */; 160 | compatibilityVersion = "Xcode 8.0"; 161 | developmentRegion = en; 162 | hasScannedForEncodings = 0; 163 | knownRegions = ( 164 | en, 165 | Base, 166 | ); 167 | mainGroup = DB0D9F151EEAED7C00F7D533; 168 | productRefGroup = DB0D9F1F1EEAED7C00F7D533 /* Products */; 169 | projectDirPath = ""; 170 | projectRoot = ""; 171 | targets = ( 172 | DB0D9F1D1EEAED7C00F7D533 /* QRCode-Example */, 173 | DB0D9F311EEAED7D00F7D533 /* QRCode-ExampleTests */, 174 | ); 175 | }; 176 | /* End PBXProject section */ 177 | 178 | /* Begin PBXResourcesBuildPhase section */ 179 | DB0D9F1C1EEAED7C00F7D533 /* Resources */ = { 180 | isa = PBXResourcesBuildPhase; 181 | buildActionMask = 2147483647; 182 | files = ( 183 | DB0D9F2C1EEAED7D00F7D533 /* LaunchScreen.storyboard in Resources */, 184 | DB0D9F291EEAED7D00F7D533 /* Assets.xcassets in Resources */, 185 | DB0D9F271EEAED7D00F7D533 /* Main.storyboard in Resources */, 186 | ); 187 | runOnlyForDeploymentPostprocessing = 0; 188 | }; 189 | DB0D9F301EEAED7D00F7D533 /* Resources */ = { 190 | isa = PBXResourcesBuildPhase; 191 | buildActionMask = 2147483647; 192 | files = ( 193 | ); 194 | runOnlyForDeploymentPostprocessing = 0; 195 | }; 196 | /* End PBXResourcesBuildPhase section */ 197 | 198 | /* Begin PBXSourcesBuildPhase section */ 199 | DB0D9F1A1EEAED7C00F7D533 /* Sources */ = { 200 | isa = PBXSourcesBuildPhase; 201 | buildActionMask = 2147483647; 202 | files = ( 203 | 093ED9EA1F9916820013937C /* VideoPreviewView.swift in Sources */, 204 | DB0D9F241EEAED7C00F7D533 /* ViewController.swift in Sources */, 205 | DB0D9F221EEAED7C00F7D533 /* AppDelegate.swift in Sources */, 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | }; 209 | DB0D9F2E1EEAED7D00F7D533 /* Sources */ = { 210 | isa = PBXSourcesBuildPhase; 211 | buildActionMask = 2147483647; 212 | files = ( 213 | DB0D9F371EEAED7D00F7D533 /* QRCode_ExampleTests.swift in Sources */, 214 | ); 215 | runOnlyForDeploymentPostprocessing = 0; 216 | }; 217 | /* End PBXSourcesBuildPhase section */ 218 | 219 | /* Begin PBXTargetDependency section */ 220 | DB0D9F341EEAED7D00F7D533 /* PBXTargetDependency */ = { 221 | isa = PBXTargetDependency; 222 | target = DB0D9F1D1EEAED7C00F7D533 /* QRCode-Example */; 223 | targetProxy = DB0D9F331EEAED7D00F7D533 /* PBXContainerItemProxy */; 224 | }; 225 | /* End PBXTargetDependency section */ 226 | 227 | /* Begin PBXVariantGroup section */ 228 | DB0D9F251EEAED7D00F7D533 /* Main.storyboard */ = { 229 | isa = PBXVariantGroup; 230 | children = ( 231 | DB0D9F261EEAED7D00F7D533 /* Base */, 232 | ); 233 | name = Main.storyboard; 234 | sourceTree = ""; 235 | }; 236 | DB0D9F2A1EEAED7D00F7D533 /* LaunchScreen.storyboard */ = { 237 | isa = PBXVariantGroup; 238 | children = ( 239 | DB0D9F2B1EEAED7D00F7D533 /* Base */, 240 | ); 241 | name = LaunchScreen.storyboard; 242 | sourceTree = ""; 243 | }; 244 | /* End PBXVariantGroup section */ 245 | 246 | /* Begin XCBuildConfiguration section */ 247 | DB0D9F391EEAED7D00F7D533 /* Debug */ = { 248 | isa = XCBuildConfiguration; 249 | buildSettings = { 250 | ALWAYS_SEARCH_USER_PATHS = NO; 251 | CLANG_ANALYZER_NONNULL = YES; 252 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 253 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 254 | CLANG_CXX_LIBRARY = "libc++"; 255 | CLANG_ENABLE_MODULES = YES; 256 | CLANG_ENABLE_OBJC_ARC = YES; 257 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 258 | CLANG_WARN_BOOL_CONVERSION = YES; 259 | CLANG_WARN_COMMA = YES; 260 | CLANG_WARN_CONSTANT_CONVERSION = YES; 261 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 262 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 263 | CLANG_WARN_EMPTY_BODY = YES; 264 | CLANG_WARN_ENUM_CONVERSION = YES; 265 | CLANG_WARN_INFINITE_RECURSION = YES; 266 | CLANG_WARN_INT_CONVERSION = YES; 267 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 268 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 269 | CLANG_WARN_STRICT_PROTOTYPES = YES; 270 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 271 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 272 | CLANG_WARN_UNREACHABLE_CODE = YES; 273 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 274 | CODE_SIGN_IDENTITY = "iPhone Developer"; 275 | COPY_PHASE_STRIP = NO; 276 | DEBUG_INFORMATION_FORMAT = dwarf; 277 | DEVELOPMENT_TEAM = DVN7WHGQ36; 278 | ENABLE_STRICT_OBJC_MSGSEND = YES; 279 | ENABLE_TESTABILITY = YES; 280 | GCC_C_LANGUAGE_STANDARD = gnu11; 281 | GCC_DYNAMIC_NO_PIC = NO; 282 | GCC_NO_COMMON_BLOCKS = YES; 283 | GCC_OPTIMIZATION_LEVEL = 0; 284 | GCC_PREPROCESSOR_DEFINITIONS = ( 285 | "DEBUG=1", 286 | "$(inherited)", 287 | ); 288 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 289 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 290 | GCC_WARN_UNDECLARED_SELECTOR = YES; 291 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 292 | GCC_WARN_UNUSED_FUNCTION = YES; 293 | GCC_WARN_UNUSED_VARIABLE = YES; 294 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 295 | MTL_ENABLE_DEBUG_INFO = YES; 296 | ONLY_ACTIVE_ARCH = YES; 297 | SDKROOT = iphoneos; 298 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 299 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 300 | }; 301 | name = Debug; 302 | }; 303 | DB0D9F3A1EEAED7D00F7D533 /* Release */ = { 304 | isa = XCBuildConfiguration; 305 | buildSettings = { 306 | ALWAYS_SEARCH_USER_PATHS = NO; 307 | CLANG_ANALYZER_NONNULL = YES; 308 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 309 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 310 | CLANG_CXX_LIBRARY = "libc++"; 311 | CLANG_ENABLE_MODULES = YES; 312 | CLANG_ENABLE_OBJC_ARC = YES; 313 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 314 | CLANG_WARN_BOOL_CONVERSION = YES; 315 | CLANG_WARN_COMMA = YES; 316 | CLANG_WARN_CONSTANT_CONVERSION = YES; 317 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 318 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 319 | CLANG_WARN_EMPTY_BODY = YES; 320 | CLANG_WARN_ENUM_CONVERSION = YES; 321 | CLANG_WARN_INFINITE_RECURSION = YES; 322 | CLANG_WARN_INT_CONVERSION = YES; 323 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 324 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 325 | CLANG_WARN_STRICT_PROTOTYPES = YES; 326 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 327 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 328 | CLANG_WARN_UNREACHABLE_CODE = YES; 329 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 330 | CODE_SIGN_IDENTITY = "iPhone Developer"; 331 | COPY_PHASE_STRIP = NO; 332 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 333 | DEVELOPMENT_TEAM = DVN7WHGQ36; 334 | ENABLE_NS_ASSERTIONS = NO; 335 | ENABLE_STRICT_OBJC_MSGSEND = YES; 336 | GCC_C_LANGUAGE_STANDARD = gnu11; 337 | GCC_NO_COMMON_BLOCKS = YES; 338 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 339 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 340 | GCC_WARN_UNDECLARED_SELECTOR = YES; 341 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 342 | GCC_WARN_UNUSED_FUNCTION = YES; 343 | GCC_WARN_UNUSED_VARIABLE = YES; 344 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 345 | MTL_ENABLE_DEBUG_INFO = NO; 346 | SDKROOT = iphoneos; 347 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 348 | VALIDATE_PRODUCT = YES; 349 | }; 350 | name = Release; 351 | }; 352 | DB0D9F3C1EEAED7D00F7D533 /* Debug */ = { 353 | isa = XCBuildConfiguration; 354 | buildSettings = { 355 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 356 | DEVELOPMENT_TEAM = ""; 357 | INFOPLIST_FILE = "QRCode-Example/Info.plist"; 358 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 359 | PRODUCT_BUNDLE_IDENTIFIER = "de.hsos.QRCode-Example"; 360 | PRODUCT_NAME = "$(TARGET_NAME)"; 361 | SWIFT_VERSION = 4.0; 362 | TARGETED_DEVICE_FAMILY = "1,2"; 363 | }; 364 | name = Debug; 365 | }; 366 | DB0D9F3D1EEAED7D00F7D533 /* Release */ = { 367 | isa = XCBuildConfiguration; 368 | buildSettings = { 369 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 370 | DEVELOPMENT_TEAM = ""; 371 | INFOPLIST_FILE = "QRCode-Example/Info.plist"; 372 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 373 | PRODUCT_BUNDLE_IDENTIFIER = "de.hsos.QRCode-Example"; 374 | PRODUCT_NAME = "$(TARGET_NAME)"; 375 | SWIFT_VERSION = 4.0; 376 | TARGETED_DEVICE_FAMILY = "1,2"; 377 | }; 378 | name = Release; 379 | }; 380 | DB0D9F3F1EEAED7D00F7D533 /* Debug */ = { 381 | isa = XCBuildConfiguration; 382 | buildSettings = { 383 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 384 | BUNDLE_LOADER = "$(TEST_HOST)"; 385 | DEVELOPMENT_TEAM = ""; 386 | INFOPLIST_FILE = "QRCode-ExampleTests/Info.plist"; 387 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 388 | PRODUCT_BUNDLE_IDENTIFIER = "de.hsos.QRCode-ExampleTests"; 389 | PRODUCT_NAME = "$(TARGET_NAME)"; 390 | SWIFT_VERSION = 4.0; 391 | TARGETED_DEVICE_FAMILY = "1,2"; 392 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QRCode-Example.app/QRCode-Example"; 393 | }; 394 | name = Debug; 395 | }; 396 | DB0D9F401EEAED7D00F7D533 /* Release */ = { 397 | isa = XCBuildConfiguration; 398 | buildSettings = { 399 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 400 | BUNDLE_LOADER = "$(TEST_HOST)"; 401 | DEVELOPMENT_TEAM = ""; 402 | INFOPLIST_FILE = "QRCode-ExampleTests/Info.plist"; 403 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 404 | PRODUCT_BUNDLE_IDENTIFIER = "de.hsos.QRCode-ExampleTests"; 405 | PRODUCT_NAME = "$(TARGET_NAME)"; 406 | SWIFT_VERSION = 4.0; 407 | TARGETED_DEVICE_FAMILY = "1,2"; 408 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QRCode-Example.app/QRCode-Example"; 409 | }; 410 | name = Release; 411 | }; 412 | /* End XCBuildConfiguration section */ 413 | 414 | /* Begin XCConfigurationList section */ 415 | DB0D9F191EEAED7C00F7D533 /* Build configuration list for PBXProject "QRCode-Example" */ = { 416 | isa = XCConfigurationList; 417 | buildConfigurations = ( 418 | DB0D9F391EEAED7D00F7D533 /* Debug */, 419 | DB0D9F3A1EEAED7D00F7D533 /* Release */, 420 | ); 421 | defaultConfigurationIsVisible = 0; 422 | defaultConfigurationName = Release; 423 | }; 424 | DB0D9F3B1EEAED7D00F7D533 /* Build configuration list for PBXNativeTarget "QRCode-Example" */ = { 425 | isa = XCConfigurationList; 426 | buildConfigurations = ( 427 | DB0D9F3C1EEAED7D00F7D533 /* Debug */, 428 | DB0D9F3D1EEAED7D00F7D533 /* Release */, 429 | ); 430 | defaultConfigurationIsVisible = 0; 431 | defaultConfigurationName = Release; 432 | }; 433 | DB0D9F3E1EEAED7D00F7D533 /* Build configuration list for PBXNativeTarget "QRCode-ExampleTests" */ = { 434 | isa = XCConfigurationList; 435 | buildConfigurations = ( 436 | DB0D9F3F1EEAED7D00F7D533 /* Debug */, 437 | DB0D9F401EEAED7D00F7D533 /* Release */, 438 | ); 439 | defaultConfigurationIsVisible = 0; 440 | defaultConfigurationName = Release; 441 | }; 442 | /* End XCConfigurationList section */ 443 | }; 444 | rootObject = DB0D9F161EEAED7C00F7D533 /* Project object */; 445 | } 446 | --------------------------------------------------------------------------------