├── .gitignore ├── Project ├── PodsProject │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── ViewController.swift │ ├── Info.plist │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── AppDelegate.swift ├── PodsProject.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcuserdata │ │ │ └── enriquedelpozogomez.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcuserdata │ │ └── enriquedelpozogomez.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── project.pbxproj └── PodsProject.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Generated/ 2 | Project/Podfile.lock 3 | Project/Pods/ 4 | Project/build/ 5 | Project/Podfile 6 | -------------------------------------------------------------------------------- /Project/PodsProject/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Project/PodsProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Project/PodsProject.xcodeproj/project.xcworkspace/xcuserdata/enriquedelpozogomez.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikettas/Xamapod/HEAD/Project/PodsProject.xcodeproj/project.xcworkspace/xcuserdata/enriquedelpozogomez.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Project/PodsProject.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Project/PodsProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Project/PodsProject/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // PodsProject 4 | // 5 | // Created by Enrique del Pozo Gómez on 11/27/18. 6 | // Copyright © 2018 kikettas. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /Project/PodsProject.xcodeproj/xcuserdata/enriquedelpozogomez.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | PodsProject.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | # Xamapod 2 | 3 |

License

4 | Copyright 2018 Enrique del Pozo Gómez 5 | 6 | Licensed under the Apache License, Version 2.0 (the "License"); 7 | you may not use this file except in compliance with the License. 8 | You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, software 13 | distributed under the License is distributed on an "AS IS" BASIS, 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | See the License for the specific language governing permissions and 16 | limitations under the License. 17 | 18 | 19 | # SwiftClassify 20 | Helps to insert Objective-C runtime names into a ApiDefinition.cs Xamarin.iOS Binding based on Swift. 21 | 22 |

License

23 | Copyright 2016 Lucas Teixeira 24 | 25 | Licensed under the Apache License, Version 2.0 (the "License"); 26 | you may not use this file except in compliance with the License. 27 | You may obtain a copy of the License at 28 | 29 | http://www.apache.org/licenses/LICENSE-2.0 30 | 31 | Unless required by applicable law or agreed to in writing, software 32 | distributed under the License is distributed on an "AS IS" BASIS, 33 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 34 | See the License for the specific language governing permissions and 35 | limitations under the License. 36 | -------------------------------------------------------------------------------- /Project/PodsProject/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 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Project/PodsProject/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 | -------------------------------------------------------------------------------- /Project/PodsProject/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 | -------------------------------------------------------------------------------- /Project/PodsProject/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 | } -------------------------------------------------------------------------------- /Project/PodsProject/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // PodsProject 4 | // 5 | // Created by Enrique del Pozo Gómez on 11/27/18. 6 | // Copyright © 2018 kikettas. 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: [UIApplication.LaunchOptionsKey: 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 invalidate graphics rendering callbacks. 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 active 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Xamapod 2 | A tool to generate all the binding files needed in a **Xamarin** binding library 3 | from a **Cocoapods** library. The generated binding files are both the **fat libraries** and 4 | **definitions files** (_ApiDefinitions.cs_ and _Structs.cs/StructAndEnums.cs_) used later by the Binding library. 5 | 6 | ## 🔗 Works with 7 | 8 | - **Swift** libraries ✅ 9 | - **ObjectiveC** libraries ✅ 10 | - Pods with dependencies ✅ 11 | - Pods from external sources ✅ 12 | 13 | 14 | ## 📋 Requirements 15 | 16 | - Xcode Command Line tools (can be downloaded in Xcode or from [here](https://developer.apple.com/downloads/index.action)) 17 | - [Cocoapods](https://guides.cocoapods.org/using/getting-started.html) 18 | - [ObjectiveSharpie](https://dl.xamarin.com/objective-sharpie/ObjectiveSharpie.pkg) 19 | - [Mono](https://www.mono-project.com/docs/getting-started/install/mac/) 20 | 21 | ## 🛠 Installation 22 | 23 | Simply clone this repository. 24 | 25 | ## 🚀 Building a binding library from a pod 26 | 27 | To start using the tool, go to the repo folder and run this command: 28 | 29 | ```sh 30 | sh build -p YOUR_POD_NAME 31 | ``` 32 | 33 | Optionally, you can specify both **`-s`** (**subspecs**, separated by commas) and **`-l`** (**links to external sources**, separated by commas) option. 34 | 35 | > Since **Swift** libraries are not officialy supported by Xamarin, the process of 36 | bulding these binding files for Swift Pods is slightly different. First, you have 37 | to mark all the _classes/structs/enums_ that you want to expose 38 | to the binding library with the **`@objc`** attribute. After doing so, you can start using the tool. 39 | 40 | ### ObjectiveC pod 41 | 42 | Once it finishes, you will get this output: 43 | 44 | ```sh 45 | ▸ Installing Pods... ✅ 46 | ▸ Building libraries... ✅ 47 | ▸ Creating fat libraries... ✅ 48 | ▸ Creating binding files... ✅ 49 | 50 | SUCCESSFULLY COMPLETED 🚀 51 | ``` 52 | 53 | ### Swift pod 54 | 55 | The output is similar but during the build, besides creating the binding files, these are normalized (thanks to [SwiftClassify](https://github.com/Flash3001/SwiftClassify)) 56 | by using the correct names. Finally all the Swift libraries required by the binding library are listed. 57 | 58 | 59 | ```sh 60 | ▸ Installing Pods... ✅ 61 | ▸ Building libraries... ✅ 62 | ▸ Creating fat libraries... ✅ 63 | ▸ Creating binding files... ✅ 64 | ▸ Normalizing binding files... ✅ 65 | 66 | ▸ Add these Swift libraries to your Xamarin App with NuGet: 67 | 68 | AVFoundation 69 | Core 70 | CoreAudio 71 | CoreFoundation 72 | CoreGraphics 73 | CoreImage 74 | CoreLocation 75 | CoreMedia 76 | Darwin 77 | Dispatch 78 | Foundation 79 | Metal 80 | ObjectiveC 81 | Photos 82 | QuartzCore 83 | UIKit 84 | os 85 | simd 86 | 87 | SUCCESSFULLY COMPLETED 🚀 88 | ``` 89 | 90 | When the building process finishes, all the generated binding files are available in the **Generated** folder. 91 | -------------------------------------------------------------------------------- /Project/PodsProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1F93998421AD5DCF0093A8E2 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F93998321AD5DCF0093A8E2 /* AppDelegate.swift */; }; 11 | 1F93998621AD5DCF0093A8E2 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F93998521AD5DCF0093A8E2 /* ViewController.swift */; }; 12 | 1F93998921AD5DCF0093A8E2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1F93998721AD5DCF0093A8E2 /* Main.storyboard */; }; 13 | 1F93998B21AD5DD10093A8E2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1F93998A21AD5DD10093A8E2 /* Assets.xcassets */; }; 14 | 1F93998E21AD5DD10093A8E2 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1F93998C21AD5DD10093A8E2 /* LaunchScreen.storyboard */; }; 15 | F65C87252ED12EB2C78492F4 /* Pods_PodsProject.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2650AF2409538D2032C963B /* Pods_PodsProject.framework */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 1F93998021AD5DCF0093A8E2 /* PodsProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PodsProject.app; sourceTree = BUILT_PRODUCTS_DIR; }; 20 | 1F93998321AD5DCF0093A8E2 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 21 | 1F93998521AD5DCF0093A8E2 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 22 | 1F93998821AD5DCF0093A8E2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 23 | 1F93998A21AD5DD10093A8E2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 24 | 1F93998D21AD5DD10093A8E2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 25 | 1F93998F21AD5DD10093A8E2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 26 | 3E6558830639BE360CC8766F /* Pods-PodsProject.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PodsProject.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PodsProject/Pods-PodsProject.debug.xcconfig"; sourceTree = ""; }; 27 | 8B82F99014414BE11AD21C71 /* Pods-PodsProject.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PodsProject.release.xcconfig"; path = "Pods/Target Support Files/Pods-PodsProject/Pods-PodsProject.release.xcconfig"; sourceTree = ""; }; 28 | D2650AF2409538D2032C963B /* Pods_PodsProject.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PodsProject.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 29 | /* End PBXFileReference section */ 30 | 31 | /* Begin PBXFrameworksBuildPhase section */ 32 | 1F93997D21AD5DCF0093A8E2 /* Frameworks */ = { 33 | isa = PBXFrameworksBuildPhase; 34 | buildActionMask = 2147483647; 35 | files = ( 36 | F65C87252ED12EB2C78492F4 /* Pods_PodsProject.framework in Frameworks */, 37 | ); 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | /* End PBXFrameworksBuildPhase section */ 41 | 42 | /* Begin PBXGroup section */ 43 | 14A68E2EDD40A4981B4E55AA /* Frameworks */ = { 44 | isa = PBXGroup; 45 | children = ( 46 | D2650AF2409538D2032C963B /* Pods_PodsProject.framework */, 47 | ); 48 | name = Frameworks; 49 | sourceTree = ""; 50 | }; 51 | 1F93997721AD5DCF0093A8E2 = { 52 | isa = PBXGroup; 53 | children = ( 54 | 1F93998221AD5DCF0093A8E2 /* PodsProject */, 55 | 1F93998121AD5DCF0093A8E2 /* Products */, 56 | 764B600CA5C96B8288BD14DD /* Pods */, 57 | 14A68E2EDD40A4981B4E55AA /* Frameworks */, 58 | ); 59 | sourceTree = ""; 60 | }; 61 | 1F93998121AD5DCF0093A8E2 /* Products */ = { 62 | isa = PBXGroup; 63 | children = ( 64 | 1F93998021AD5DCF0093A8E2 /* PodsProject.app */, 65 | ); 66 | name = Products; 67 | sourceTree = ""; 68 | }; 69 | 1F93998221AD5DCF0093A8E2 /* PodsProject */ = { 70 | isa = PBXGroup; 71 | children = ( 72 | 1F93998321AD5DCF0093A8E2 /* AppDelegate.swift */, 73 | 1F93998521AD5DCF0093A8E2 /* ViewController.swift */, 74 | 1F93998721AD5DCF0093A8E2 /* Main.storyboard */, 75 | 1F93998A21AD5DD10093A8E2 /* Assets.xcassets */, 76 | 1F93998C21AD5DD10093A8E2 /* LaunchScreen.storyboard */, 77 | 1F93998F21AD5DD10093A8E2 /* Info.plist */, 78 | ); 79 | path = PodsProject; 80 | sourceTree = ""; 81 | }; 82 | 764B600CA5C96B8288BD14DD /* Pods */ = { 83 | isa = PBXGroup; 84 | children = ( 85 | 3E6558830639BE360CC8766F /* Pods-PodsProject.debug.xcconfig */, 86 | 8B82F99014414BE11AD21C71 /* Pods-PodsProject.release.xcconfig */, 87 | ); 88 | name = Pods; 89 | sourceTree = ""; 90 | }; 91 | /* End PBXGroup section */ 92 | 93 | /* Begin PBXNativeTarget section */ 94 | 1F93997F21AD5DCF0093A8E2 /* PodsProject */ = { 95 | isa = PBXNativeTarget; 96 | buildConfigurationList = 1F93999221AD5DD10093A8E2 /* Build configuration list for PBXNativeTarget "PodsProject" */; 97 | buildPhases = ( 98 | 1B4B7E0AC5566638DFA77271 /* [CP] Check Pods Manifest.lock */, 99 | 1F93997C21AD5DCF0093A8E2 /* Sources */, 100 | 1F93997D21AD5DCF0093A8E2 /* Frameworks */, 101 | 1F93997E21AD5DCF0093A8E2 /* Resources */, 102 | A61A32E313F1EFC0A15F6183 /* [CP] Embed Pods Frameworks */, 103 | ); 104 | buildRules = ( 105 | ); 106 | dependencies = ( 107 | ); 108 | name = PodsProject; 109 | productName = PodsProject; 110 | productReference = 1F93998021AD5DCF0093A8E2 /* PodsProject.app */; 111 | productType = "com.apple.product-type.application"; 112 | }; 113 | /* End PBXNativeTarget section */ 114 | 115 | /* Begin PBXProject section */ 116 | 1F93997821AD5DCF0093A8E2 /* Project object */ = { 117 | isa = PBXProject; 118 | attributes = { 119 | LastSwiftUpdateCheck = 1010; 120 | LastUpgradeCheck = 1010; 121 | ORGANIZATIONNAME = kikettas; 122 | TargetAttributes = { 123 | 1F93997F21AD5DCF0093A8E2 = { 124 | CreatedOnToolsVersion = 10.1; 125 | }; 126 | }; 127 | }; 128 | buildConfigurationList = 1F93997B21AD5DCF0093A8E2 /* Build configuration list for PBXProject "PodsProject" */; 129 | compatibilityVersion = "Xcode 9.3"; 130 | developmentRegion = en; 131 | hasScannedForEncodings = 0; 132 | knownRegions = ( 133 | en, 134 | Base, 135 | ); 136 | mainGroup = 1F93997721AD5DCF0093A8E2; 137 | productRefGroup = 1F93998121AD5DCF0093A8E2 /* Products */; 138 | projectDirPath = ""; 139 | projectRoot = ""; 140 | targets = ( 141 | 1F93997F21AD5DCF0093A8E2 /* PodsProject */, 142 | ); 143 | }; 144 | /* End PBXProject section */ 145 | 146 | /* Begin PBXResourcesBuildPhase section */ 147 | 1F93997E21AD5DCF0093A8E2 /* Resources */ = { 148 | isa = PBXResourcesBuildPhase; 149 | buildActionMask = 2147483647; 150 | files = ( 151 | 1F93998E21AD5DD10093A8E2 /* LaunchScreen.storyboard in Resources */, 152 | 1F93998B21AD5DD10093A8E2 /* Assets.xcassets in Resources */, 153 | 1F93998921AD5DCF0093A8E2 /* Main.storyboard in Resources */, 154 | ); 155 | runOnlyForDeploymentPostprocessing = 0; 156 | }; 157 | /* End PBXResourcesBuildPhase section */ 158 | 159 | /* Begin PBXShellScriptBuildPhase section */ 160 | 1B4B7E0AC5566638DFA77271 /* [CP] Check Pods Manifest.lock */ = { 161 | isa = PBXShellScriptBuildPhase; 162 | buildActionMask = 2147483647; 163 | files = ( 164 | ); 165 | inputPaths = ( 166 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 167 | "${PODS_ROOT}/Manifest.lock", 168 | ); 169 | name = "[CP] Check Pods Manifest.lock"; 170 | outputPaths = ( 171 | "$(DERIVED_FILE_DIR)/Pods-PodsProject-checkManifestLockResult.txt", 172 | ); 173 | runOnlyForDeploymentPostprocessing = 0; 174 | shellPath = /bin/sh; 175 | 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"; 176 | showEnvVarsInLog = 0; 177 | }; 178 | A61A32E313F1EFC0A15F6183 /* [CP] Embed Pods Frameworks */ = { 179 | isa = PBXShellScriptBuildPhase; 180 | buildActionMask = 2147483647; 181 | files = ( 182 | ); 183 | inputPaths = ( 184 | "${PODS_ROOT}/Target Support Files/Pods-PodsProject/Pods-PodsProject-frameworks.sh", 185 | "${BUILT_PRODUCTS_DIR}/Bolts/Bolts.framework", 186 | "${BUILT_PRODUCTS_DIR}/Gini-iOS-SDK/Gini_iOS_SDK.framework", 187 | "${BUILT_PRODUCTS_DIR}/GiniVision/GiniVision.framework", 188 | ); 189 | name = "[CP] Embed Pods Frameworks"; 190 | outputPaths = ( 191 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Bolts.framework", 192 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Gini_iOS_SDK.framework", 193 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GiniVision.framework", 194 | ); 195 | runOnlyForDeploymentPostprocessing = 0; 196 | shellPath = /bin/sh; 197 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PodsProject/Pods-PodsProject-frameworks.sh\"\n"; 198 | showEnvVarsInLog = 0; 199 | }; 200 | /* End PBXShellScriptBuildPhase section */ 201 | 202 | /* Begin PBXSourcesBuildPhase section */ 203 | 1F93997C21AD5DCF0093A8E2 /* Sources */ = { 204 | isa = PBXSourcesBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | 1F93998621AD5DCF0093A8E2 /* ViewController.swift in Sources */, 208 | 1F93998421AD5DCF0093A8E2 /* AppDelegate.swift in Sources */, 209 | ); 210 | runOnlyForDeploymentPostprocessing = 0; 211 | }; 212 | /* End PBXSourcesBuildPhase section */ 213 | 214 | /* Begin PBXVariantGroup section */ 215 | 1F93998721AD5DCF0093A8E2 /* Main.storyboard */ = { 216 | isa = PBXVariantGroup; 217 | children = ( 218 | 1F93998821AD5DCF0093A8E2 /* Base */, 219 | ); 220 | name = Main.storyboard; 221 | sourceTree = ""; 222 | }; 223 | 1F93998C21AD5DD10093A8E2 /* LaunchScreen.storyboard */ = { 224 | isa = PBXVariantGroup; 225 | children = ( 226 | 1F93998D21AD5DD10093A8E2 /* Base */, 227 | ); 228 | name = LaunchScreen.storyboard; 229 | sourceTree = ""; 230 | }; 231 | /* End PBXVariantGroup section */ 232 | 233 | /* Begin XCBuildConfiguration section */ 234 | 1F93999021AD5DD10093A8E2 /* Debug */ = { 235 | isa = XCBuildConfiguration; 236 | buildSettings = { 237 | ALWAYS_SEARCH_USER_PATHS = NO; 238 | CLANG_ANALYZER_NONNULL = YES; 239 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 240 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 241 | CLANG_CXX_LIBRARY = "libc++"; 242 | CLANG_ENABLE_MODULES = YES; 243 | CLANG_ENABLE_OBJC_ARC = YES; 244 | CLANG_ENABLE_OBJC_WEAK = YES; 245 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 246 | CLANG_WARN_BOOL_CONVERSION = YES; 247 | CLANG_WARN_COMMA = YES; 248 | CLANG_WARN_CONSTANT_CONVERSION = YES; 249 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 250 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 251 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 252 | CLANG_WARN_EMPTY_BODY = YES; 253 | CLANG_WARN_ENUM_CONVERSION = YES; 254 | CLANG_WARN_INFINITE_RECURSION = YES; 255 | CLANG_WARN_INT_CONVERSION = YES; 256 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 257 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 258 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 259 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 260 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 261 | CLANG_WARN_STRICT_PROTOTYPES = YES; 262 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 263 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 264 | CLANG_WARN_UNREACHABLE_CODE = YES; 265 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 266 | CODE_SIGN_IDENTITY = "iPhone Developer"; 267 | COPY_PHASE_STRIP = NO; 268 | DEBUG_INFORMATION_FORMAT = dwarf; 269 | ENABLE_STRICT_OBJC_MSGSEND = YES; 270 | ENABLE_TESTABILITY = YES; 271 | GCC_C_LANGUAGE_STANDARD = gnu11; 272 | GCC_DYNAMIC_NO_PIC = NO; 273 | GCC_NO_COMMON_BLOCKS = YES; 274 | GCC_OPTIMIZATION_LEVEL = 0; 275 | GCC_PREPROCESSOR_DEFINITIONS = ( 276 | "DEBUG=1", 277 | "$(inherited)", 278 | ); 279 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 280 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 281 | GCC_WARN_UNDECLARED_SELECTOR = YES; 282 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 283 | GCC_WARN_UNUSED_FUNCTION = YES; 284 | GCC_WARN_UNUSED_VARIABLE = YES; 285 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 286 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 287 | MTL_FAST_MATH = YES; 288 | ONLY_ACTIVE_ARCH = YES; 289 | SDKROOT = iphoneos; 290 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 291 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 292 | }; 293 | name = Debug; 294 | }; 295 | 1F93999121AD5DD10093A8E2 /* Release */ = { 296 | isa = XCBuildConfiguration; 297 | buildSettings = { 298 | ALWAYS_SEARCH_USER_PATHS = NO; 299 | CLANG_ANALYZER_NONNULL = YES; 300 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 301 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 302 | CLANG_CXX_LIBRARY = "libc++"; 303 | CLANG_ENABLE_MODULES = YES; 304 | CLANG_ENABLE_OBJC_ARC = YES; 305 | CLANG_ENABLE_OBJC_WEAK = YES; 306 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 307 | CLANG_WARN_BOOL_CONVERSION = YES; 308 | CLANG_WARN_COMMA = YES; 309 | CLANG_WARN_CONSTANT_CONVERSION = YES; 310 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 311 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 312 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 313 | CLANG_WARN_EMPTY_BODY = YES; 314 | CLANG_WARN_ENUM_CONVERSION = YES; 315 | CLANG_WARN_INFINITE_RECURSION = YES; 316 | CLANG_WARN_INT_CONVERSION = YES; 317 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 318 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 319 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 320 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 321 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 322 | CLANG_WARN_STRICT_PROTOTYPES = YES; 323 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 324 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 325 | CLANG_WARN_UNREACHABLE_CODE = YES; 326 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 327 | CODE_SIGN_IDENTITY = "iPhone Developer"; 328 | COPY_PHASE_STRIP = NO; 329 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 330 | ENABLE_NS_ASSERTIONS = NO; 331 | ENABLE_STRICT_OBJC_MSGSEND = YES; 332 | GCC_C_LANGUAGE_STANDARD = gnu11; 333 | GCC_NO_COMMON_BLOCKS = YES; 334 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 335 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 336 | GCC_WARN_UNDECLARED_SELECTOR = YES; 337 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 338 | GCC_WARN_UNUSED_FUNCTION = YES; 339 | GCC_WARN_UNUSED_VARIABLE = YES; 340 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 341 | MTL_ENABLE_DEBUG_INFO = NO; 342 | MTL_FAST_MATH = YES; 343 | SDKROOT = iphoneos; 344 | SWIFT_COMPILATION_MODE = wholemodule; 345 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 346 | VALIDATE_PRODUCT = YES; 347 | }; 348 | name = Release; 349 | }; 350 | 1F93999321AD5DD10093A8E2 /* Debug */ = { 351 | isa = XCBuildConfiguration; 352 | baseConfigurationReference = 3E6558830639BE360CC8766F /* Pods-PodsProject.debug.xcconfig */; 353 | buildSettings = { 354 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 355 | CODE_SIGN_STYLE = Automatic; 356 | INFOPLIST_FILE = PodsProject/Info.plist; 357 | LD_RUNPATH_SEARCH_PATHS = ( 358 | "$(inherited)", 359 | "@executable_path/Frameworks", 360 | ); 361 | PRODUCT_BUNDLE_IDENTIFIER = kikettas.PodsProject; 362 | PRODUCT_NAME = "$(TARGET_NAME)"; 363 | SWIFT_VERSION = 4.2; 364 | TARGETED_DEVICE_FAMILY = "1,2"; 365 | }; 366 | name = Debug; 367 | }; 368 | 1F93999421AD5DD10093A8E2 /* Release */ = { 369 | isa = XCBuildConfiguration; 370 | baseConfigurationReference = 8B82F99014414BE11AD21C71 /* Pods-PodsProject.release.xcconfig */; 371 | buildSettings = { 372 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 373 | CODE_SIGN_STYLE = Automatic; 374 | INFOPLIST_FILE = PodsProject/Info.plist; 375 | LD_RUNPATH_SEARCH_PATHS = ( 376 | "$(inherited)", 377 | "@executable_path/Frameworks", 378 | ); 379 | PRODUCT_BUNDLE_IDENTIFIER = kikettas.PodsProject; 380 | PRODUCT_NAME = "$(TARGET_NAME)"; 381 | SWIFT_VERSION = 4.2; 382 | TARGETED_DEVICE_FAMILY = "1,2"; 383 | }; 384 | name = Release; 385 | }; 386 | /* End XCBuildConfiguration section */ 387 | 388 | /* Begin XCConfigurationList section */ 389 | 1F93997B21AD5DCF0093A8E2 /* Build configuration list for PBXProject "PodsProject" */ = { 390 | isa = XCConfigurationList; 391 | buildConfigurations = ( 392 | 1F93999021AD5DD10093A8E2 /* Debug */, 393 | 1F93999121AD5DD10093A8E2 /* Release */, 394 | ); 395 | defaultConfigurationIsVisible = 0; 396 | defaultConfigurationName = Release; 397 | }; 398 | 1F93999221AD5DD10093A8E2 /* Build configuration list for PBXNativeTarget "PodsProject" */ = { 399 | isa = XCConfigurationList; 400 | buildConfigurations = ( 401 | 1F93999321AD5DD10093A8E2 /* Debug */, 402 | 1F93999421AD5DD10093A8E2 /* Release */, 403 | ); 404 | defaultConfigurationIsVisible = 0; 405 | defaultConfigurationName = Release; 406 | }; 407 | /* End XCConfigurationList section */ 408 | }; 409 | rootObject = 1F93997821AD5DCF0093A8E2 /* Project object */; 410 | } 411 | --------------------------------------------------------------------------------