├── .gitignore ├── Examples ├── KeyCommandsExamples.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── KeyCommandsExamples.xcworkspace │ └── contents.xcworkspacedata ├── KeyCommandsIOSExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── KeyCommandsTvOSExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── KeyCommands.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── KeyCommands-iOS │ │ ├── Info.plist │ │ ├── KeyCommands-iOS-dummy.m │ │ ├── KeyCommands-iOS-prefix.pch │ │ ├── KeyCommands-iOS-umbrella.h │ │ ├── KeyCommands-iOS.modulemap │ │ └── KeyCommands-iOS.xcconfig │ │ ├── KeyCommands-tvOS │ │ ├── Info.plist │ │ ├── KeyCommands-tvOS-dummy.m │ │ ├── KeyCommands-tvOS-prefix.pch │ │ ├── KeyCommands-tvOS-umbrella.h │ │ ├── KeyCommands-tvOS.modulemap │ │ └── KeyCommands-tvOS.xcconfig │ │ ├── Pods-KeyCommandsIOSExample │ │ ├── Info.plist │ │ ├── Pods-KeyCommandsIOSExample-acknowledgements.markdown │ │ ├── Pods-KeyCommandsIOSExample-acknowledgements.plist │ │ ├── Pods-KeyCommandsIOSExample-dummy.m │ │ ├── Pods-KeyCommandsIOSExample-frameworks.sh │ │ ├── Pods-KeyCommandsIOSExample-resources.sh │ │ ├── Pods-KeyCommandsIOSExample-umbrella.h │ │ ├── Pods-KeyCommandsIOSExample.debug.xcconfig │ │ ├── Pods-KeyCommandsIOSExample.modulemap │ │ └── Pods-KeyCommandsIOSExample.release.xcconfig │ │ └── Pods-KeyCommandsTvOSExample │ │ ├── Info.plist │ │ ├── Pods-KeyCommandsTvOSExample-acknowledgements.markdown │ │ ├── Pods-KeyCommandsTvOSExample-acknowledgements.plist │ │ ├── Pods-KeyCommandsTvOSExample-dummy.m │ │ ├── Pods-KeyCommandsTvOSExample-frameworks.sh │ │ ├── Pods-KeyCommandsTvOSExample-resources.sh │ │ ├── Pods-KeyCommandsTvOSExample-umbrella.h │ │ ├── Pods-KeyCommandsTvOSExample.debug.xcconfig │ │ ├── Pods-KeyCommandsTvOSExample.modulemap │ │ └── Pods-KeyCommandsTvOSExample.release.xcconfig └── Shared │ └── UIAlertController.swift ├── KeyCommands.podspec.json ├── KeyCommands ├── Framework │ ├── Info.plist │ └── KeyCommands.h ├── KeyCommands-iOS │ ├── Info.plist │ └── KeyCommands-iOS.h ├── KeyCommands-tvOS │ ├── Info.plist │ └── KeyCommands-tvOS.h ├── KeyCommands.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── KeyCommands │ ├── Framework │ │ ├── Info.plist │ │ ├── KeyCommands-umbrella.h │ │ └── KeyCommands.h │ ├── KeyCommands.private.modulemap │ └── KeyCommands.swift └── KeyCommandsPrivate │ └── module.modulemap ├── LICENCE.md ├── README.md └── Resources ├── animation_iOS.gif └── animation_tvOS.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/xcode,swift 3 | 4 | ### Xcode ### 5 | # Xcode 6 | # 7 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 8 | 9 | ## Build generated 10 | build/ 11 | DerivedData/ 12 | 13 | ## Various settings 14 | *.pbxuser 15 | !default.pbxuser 16 | *.mode1v3 17 | !default.mode1v3 18 | *.mode2v3 19 | !default.mode2v3 20 | *.perspectivev3 21 | !default.perspectivev3 22 | xcuserdata/ 23 | 24 | ## Other 25 | *.moved-aside 26 | *.xccheckout 27 | *.xcscmblueprint 28 | 29 | 30 | ### Swift ### 31 | # Xcode 32 | # 33 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 34 | 35 | ## Build generated 36 | build/ 37 | DerivedData/ 38 | 39 | ## Various settings 40 | *.pbxuser 41 | !default.pbxuser 42 | *.mode1v3 43 | !default.mode1v3 44 | *.mode2v3 45 | !default.mode2v3 46 | *.perspectivev3 47 | !default.perspectivev3 48 | xcuserdata/ 49 | 50 | ## Other 51 | *.moved-aside 52 | *.xcuserstate 53 | 54 | ## Obj-C/Swift specific 55 | *.hmap 56 | *.ipa 57 | *.dSYM.zip 58 | *.dSYM 59 | 60 | ## Playgrounds 61 | timeline.xctimeline 62 | playground.xcworkspace 63 | 64 | # Swift Package Manager 65 | # 66 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 67 | # Packages/ 68 | .build/ 69 | 70 | # CocoaPods 71 | # 72 | # We recommend against adding the Pods directory to your .gitignore. However 73 | # you should judge for yourself, the pros and cons are mentioned at: 74 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 75 | # 76 | # Pods/ 77 | 78 | # Carthage 79 | # 80 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 81 | # Carthage/Checkouts 82 | 83 | Carthage/Build 84 | 85 | # fastlane 86 | # 87 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 88 | # screenshots whenever they are needed. 89 | # For more information about the recommended setup visit: 90 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 91 | 92 | fastlane/report.xml 93 | fastlane/Preview.html 94 | fastlane/screenshots 95 | fastlane/test_output -------------------------------------------------------------------------------- /Examples/KeyCommandsExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0641FAC71D79E85C005563E9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0641FABF1D79E85C005563E9 /* AppDelegate.swift */; }; 11 | 0641FAC81D79E85C005563E9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0641FAC01D79E85C005563E9 /* Assets.xcassets */; }; 12 | 0641FAC91D79E85C005563E9 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0641FAC11D79E85C005563E9 /* LaunchScreen.storyboard */; }; 13 | 0641FACA1D79E85C005563E9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0641FAC31D79E85C005563E9 /* Main.storyboard */; }; 14 | 0641FACC1D79E85C005563E9 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0641FAC61D79E85C005563E9 /* ViewController.swift */; }; 15 | 0641FB141D79EC3E005563E9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0641FB0E1D79EC3E005563E9 /* AppDelegate.swift */; }; 16 | 0641FB151D79EC3E005563E9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0641FB0F1D79EC3E005563E9 /* Assets.xcassets */; }; 17 | 0641FB161D79EC3E005563E9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0641FB101D79EC3E005563E9 /* Main.storyboard */; }; 18 | 0641FB181D79EC3E005563E9 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0641FB131D79EC3E005563E9 /* ViewController.swift */; }; 19 | 06E9A0831D79EF6100B6FC45 /* UIAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E9A0821D79EF6100B6FC45 /* UIAlertController.swift */; }; 20 | 06E9A0841D79EF6100B6FC45 /* UIAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E9A0821D79EF6100B6FC45 /* UIAlertController.swift */; }; 21 | 0F2703035DBBCE40CC91DC84 /* Pods_KeyCommandsTvOSExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C0B850B103487CBB0E8A31C /* Pods_KeyCommandsTvOSExample.framework */; }; 22 | C370790B2DF6F19A7F75C8C5 /* Pods_KeyCommandsIOSExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D34E9DCF4F19CB47937E8813 /* Pods_KeyCommandsIOSExample.framework */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXCopyFilesBuildPhase section */ 26 | 0641FAF91D79EA24005563E9 /* Embed Watch Content */ = { 27 | isa = PBXCopyFilesBuildPhase; 28 | buildActionMask = 2147483647; 29 | dstPath = "$(CONTENTS_FOLDER_PATH)/Watch"; 30 | dstSubfolderSpec = 16; 31 | files = ( 32 | ); 33 | name = "Embed Watch Content"; 34 | runOnlyForDeploymentPostprocessing = 0; 35 | }; 36 | /* End PBXCopyFilesBuildPhase section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 0641FA991D79E6B7005563E9 /* KeyCommandsIOSExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KeyCommandsIOSExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 0641FABF1D79E85C005563E9 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 41 | 0641FAC01D79E85C005563E9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 42 | 0641FAC21D79E85C005563E9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 43 | 0641FAC41D79E85C005563E9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 44 | 0641FAC51D79E85C005563E9 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | 0641FAC61D79E85C005563E9 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 46 | 0641FAFE1D79EBF0005563E9 /* KeyCommandsTvOSExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KeyCommandsTvOSExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | 0641FB0E1D79EC3E005563E9 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 48 | 0641FB0F1D79EC3E005563E9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 49 | 0641FB111D79EC3E005563E9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 50 | 0641FB121D79EC3E005563E9 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 51 | 0641FB131D79EC3E005563E9 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 52 | 06E9A0821D79EF6100B6FC45 /* UIAlertController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIAlertController.swift; sourceTree = ""; }; 53 | 083057CCAA03E5A00EF18B75 /* Pods-KeyCommandsIOSExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KeyCommandsIOSExample.release.xcconfig"; path = "Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample.release.xcconfig"; sourceTree = ""; }; 54 | 1301CD759E344D3A3EDDDBE1 /* Pods_KeyCommandsWatchOSExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KeyCommandsWatchOSExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 1AE8DC5FC738EA341BB283CF /* Pods-KeyCommandsTvOSExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KeyCommandsTvOSExample.release.xcconfig"; path = "Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample.release.xcconfig"; sourceTree = ""; }; 56 | 3521069753892C3010BAB589 /* Pods-KeyCommandsTvOSExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KeyCommandsTvOSExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample.debug.xcconfig"; sourceTree = ""; }; 57 | 6B157C1B315AD455EE0FF075 /* Pods_KeyCommandsWatchOSExample_Extension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KeyCommandsWatchOSExample_Extension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | 6C0B850B103487CBB0E8A31C /* Pods_KeyCommandsTvOSExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KeyCommandsTvOSExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 97E469C1BAB129074CC56788 /* Pods-KeyCommandsIOSExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KeyCommandsIOSExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample.debug.xcconfig"; sourceTree = ""; }; 60 | D34E9DCF4F19CB47937E8813 /* Pods_KeyCommandsIOSExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KeyCommandsIOSExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | FDC9A60475D64CFE422C80D8 /* Pods_KeyCommandsExamples.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KeyCommandsExamples.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | /* End PBXFileReference section */ 63 | 64 | /* Begin PBXFrameworksBuildPhase section */ 65 | 0641FA961D79E6B7005563E9 /* Frameworks */ = { 66 | isa = PBXFrameworksBuildPhase; 67 | buildActionMask = 2147483647; 68 | files = ( 69 | C370790B2DF6F19A7F75C8C5 /* Pods_KeyCommandsIOSExample.framework in Frameworks */, 70 | ); 71 | runOnlyForDeploymentPostprocessing = 0; 72 | }; 73 | 0641FAFB1D79EBF0005563E9 /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 0F2703035DBBCE40CC91DC84 /* Pods_KeyCommandsTvOSExample.framework in Frameworks */, 78 | ); 79 | runOnlyForDeploymentPostprocessing = 0; 80 | }; 81 | /* End PBXFrameworksBuildPhase section */ 82 | 83 | /* Begin PBXGroup section */ 84 | 0641FA901D79E6B7005563E9 = { 85 | isa = PBXGroup; 86 | children = ( 87 | 0641FAAE1D79E777005563E9 /* Examples */, 88 | 0641FA9A1D79E6B7005563E9 /* Products */, 89 | 9FC74970CA2F93B33EE83B47 /* Pods */, 90 | 5396E333DE29C9C8ADA2D19F /* Frameworks */, 91 | ); 92 | sourceTree = ""; 93 | }; 94 | 0641FA9A1D79E6B7005563E9 /* Products */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 0641FA991D79E6B7005563E9 /* KeyCommandsIOSExample.app */, 98 | 0641FAFE1D79EBF0005563E9 /* KeyCommandsTvOSExample.app */, 99 | ); 100 | name = Products; 101 | sourceTree = ""; 102 | }; 103 | 0641FAAE1D79E777005563E9 /* Examples */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | 0641FB0D1D79EC3E005563E9 /* KeyCommandsTvOSExample */, 107 | 0641FABE1D79E85C005563E9 /* KeyCommandsIOSExample */, 108 | 06E9A0811D79EF2100B6FC45 /* Shared */, 109 | ); 110 | name = Examples; 111 | sourceTree = ""; 112 | }; 113 | 0641FABE1D79E85C005563E9 /* KeyCommandsIOSExample */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 0641FABF1D79E85C005563E9 /* AppDelegate.swift */, 117 | 0641FAC01D79E85C005563E9 /* Assets.xcassets */, 118 | 0641FAC11D79E85C005563E9 /* LaunchScreen.storyboard */, 119 | 0641FAC31D79E85C005563E9 /* Main.storyboard */, 120 | 0641FAC51D79E85C005563E9 /* Info.plist */, 121 | 0641FAC61D79E85C005563E9 /* ViewController.swift */, 122 | ); 123 | path = KeyCommandsIOSExample; 124 | sourceTree = ""; 125 | }; 126 | 0641FB0D1D79EC3E005563E9 /* KeyCommandsTvOSExample */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 0641FB0E1D79EC3E005563E9 /* AppDelegate.swift */, 130 | 0641FB0F1D79EC3E005563E9 /* Assets.xcassets */, 131 | 0641FB101D79EC3E005563E9 /* Main.storyboard */, 132 | 0641FB121D79EC3E005563E9 /* Info.plist */, 133 | 0641FB131D79EC3E005563E9 /* ViewController.swift */, 134 | ); 135 | path = KeyCommandsTvOSExample; 136 | sourceTree = ""; 137 | }; 138 | 06E9A0811D79EF2100B6FC45 /* Shared */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | 06E9A0821D79EF6100B6FC45 /* UIAlertController.swift */, 142 | ); 143 | path = Shared; 144 | sourceTree = ""; 145 | }; 146 | 5396E333DE29C9C8ADA2D19F /* Frameworks */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | FDC9A60475D64CFE422C80D8 /* Pods_KeyCommandsExamples.framework */, 150 | D34E9DCF4F19CB47937E8813 /* Pods_KeyCommandsIOSExample.framework */, 151 | 1301CD759E344D3A3EDDDBE1 /* Pods_KeyCommandsWatchOSExample.framework */, 152 | 6B157C1B315AD455EE0FF075 /* Pods_KeyCommandsWatchOSExample_Extension.framework */, 153 | 6C0B850B103487CBB0E8A31C /* Pods_KeyCommandsTvOSExample.framework */, 154 | ); 155 | name = Frameworks; 156 | sourceTree = ""; 157 | }; 158 | 9FC74970CA2F93B33EE83B47 /* Pods */ = { 159 | isa = PBXGroup; 160 | children = ( 161 | 97E469C1BAB129074CC56788 /* Pods-KeyCommandsIOSExample.debug.xcconfig */, 162 | 083057CCAA03E5A00EF18B75 /* Pods-KeyCommandsIOSExample.release.xcconfig */, 163 | 3521069753892C3010BAB589 /* Pods-KeyCommandsTvOSExample.debug.xcconfig */, 164 | 1AE8DC5FC738EA341BB283CF /* Pods-KeyCommandsTvOSExample.release.xcconfig */, 165 | ); 166 | name = Pods; 167 | sourceTree = ""; 168 | }; 169 | /* End PBXGroup section */ 170 | 171 | /* Begin PBXNativeTarget section */ 172 | 0641FA981D79E6B7005563E9 /* KeyCommandsIOSExample */ = { 173 | isa = PBXNativeTarget; 174 | buildConfigurationList = 0641FAAB1D79E6B7005563E9 /* Build configuration list for PBXNativeTarget "KeyCommandsIOSExample" */; 175 | buildPhases = ( 176 | ACF88F0A57D6F76F924CF1F0 /* [CP] Check Pods Manifest.lock */, 177 | 0641FA951D79E6B7005563E9 /* Sources */, 178 | 0641FA961D79E6B7005563E9 /* Frameworks */, 179 | 0641FA971D79E6B7005563E9 /* Resources */, 180 | 5E51F1DF9B6A5FE00886C494 /* [CP] Embed Pods Frameworks */, 181 | AFD4D901DEC04D75F11E8AE1 /* [CP] Copy Pods Resources */, 182 | 0641FAF91D79EA24005563E9 /* Embed Watch Content */, 183 | ); 184 | buildRules = ( 185 | ); 186 | dependencies = ( 187 | ); 188 | name = KeyCommandsIOSExample; 189 | productName = KeyCommandsExamples; 190 | productReference = 0641FA991D79E6B7005563E9 /* KeyCommandsIOSExample.app */; 191 | productType = "com.apple.product-type.application"; 192 | }; 193 | 0641FAFD1D79EBF0005563E9 /* KeyCommandsTvOSExample */ = { 194 | isa = PBXNativeTarget; 195 | buildConfigurationList = 0641FB0A1D79EBF0005563E9 /* Build configuration list for PBXNativeTarget "KeyCommandsTvOSExample" */; 196 | buildPhases = ( 197 | EA909E918F62D9BB6A2E1055 /* [CP] Check Pods Manifest.lock */, 198 | 0641FAFA1D79EBF0005563E9 /* Sources */, 199 | 0641FAFB1D79EBF0005563E9 /* Frameworks */, 200 | 0641FAFC1D79EBF0005563E9 /* Resources */, 201 | E9661B1BC23B061F698F7FE5 /* [CP] Embed Pods Frameworks */, 202 | EEE28F29445E504200DDA6F1 /* [CP] Copy Pods Resources */, 203 | ); 204 | buildRules = ( 205 | ); 206 | dependencies = ( 207 | ); 208 | name = KeyCommandsTvOSExample; 209 | productName = KeyCommandsTvOSExample; 210 | productReference = 0641FAFE1D79EBF0005563E9 /* KeyCommandsTvOSExample.app */; 211 | productType = "com.apple.product-type.application"; 212 | }; 213 | /* End PBXNativeTarget section */ 214 | 215 | /* Begin PBXProject section */ 216 | 0641FA911D79E6B7005563E9 /* Project object */ = { 217 | isa = PBXProject; 218 | attributes = { 219 | LastSwiftUpdateCheck = 0730; 220 | LastUpgradeCheck = 0800; 221 | ORGANIZATIONNAME = "Rafał Augustyniak"; 222 | TargetAttributes = { 223 | 0641FA981D79E6B7005563E9 = { 224 | CreatedOnToolsVersion = 7.3.1; 225 | LastSwiftMigration = 0800; 226 | }; 227 | 0641FAFD1D79EBF0005563E9 = { 228 | CreatedOnToolsVersion = 7.3.1; 229 | LastSwiftMigration = 0800; 230 | }; 231 | }; 232 | }; 233 | buildConfigurationList = 0641FA941D79E6B7005563E9 /* Build configuration list for PBXProject "KeyCommandsExamples" */; 234 | compatibilityVersion = "Xcode 3.2"; 235 | developmentRegion = English; 236 | hasScannedForEncodings = 0; 237 | knownRegions = ( 238 | en, 239 | Base, 240 | ); 241 | mainGroup = 0641FA901D79E6B7005563E9; 242 | productRefGroup = 0641FA9A1D79E6B7005563E9 /* Products */; 243 | projectDirPath = ""; 244 | projectRoot = ""; 245 | targets = ( 246 | 0641FA981D79E6B7005563E9 /* KeyCommandsIOSExample */, 247 | 0641FAFD1D79EBF0005563E9 /* KeyCommandsTvOSExample */, 248 | ); 249 | }; 250 | /* End PBXProject section */ 251 | 252 | /* Begin PBXResourcesBuildPhase section */ 253 | 0641FA971D79E6B7005563E9 /* Resources */ = { 254 | isa = PBXResourcesBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 0641FACA1D79E85C005563E9 /* Main.storyboard in Resources */, 258 | 0641FAC81D79E85C005563E9 /* Assets.xcassets in Resources */, 259 | 0641FAC91D79E85C005563E9 /* LaunchScreen.storyboard in Resources */, 260 | ); 261 | runOnlyForDeploymentPostprocessing = 0; 262 | }; 263 | 0641FAFC1D79EBF0005563E9 /* Resources */ = { 264 | isa = PBXResourcesBuildPhase; 265 | buildActionMask = 2147483647; 266 | files = ( 267 | 0641FB151D79EC3E005563E9 /* Assets.xcassets in Resources */, 268 | 0641FB161D79EC3E005563E9 /* Main.storyboard in Resources */, 269 | ); 270 | runOnlyForDeploymentPostprocessing = 0; 271 | }; 272 | /* End PBXResourcesBuildPhase section */ 273 | 274 | /* Begin PBXShellScriptBuildPhase section */ 275 | 5E51F1DF9B6A5FE00886C494 /* [CP] Embed Pods Frameworks */ = { 276 | isa = PBXShellScriptBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | ); 280 | inputPaths = ( 281 | ); 282 | name = "[CP] Embed Pods Frameworks"; 283 | outputPaths = ( 284 | ); 285 | runOnlyForDeploymentPostprocessing = 0; 286 | shellPath = /bin/sh; 287 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-frameworks.sh\"\n"; 288 | showEnvVarsInLog = 0; 289 | }; 290 | ACF88F0A57D6F76F924CF1F0 /* [CP] Check Pods Manifest.lock */ = { 291 | isa = PBXShellScriptBuildPhase; 292 | buildActionMask = 2147483647; 293 | files = ( 294 | ); 295 | inputPaths = ( 296 | ); 297 | name = "[CP] Check Pods Manifest.lock"; 298 | outputPaths = ( 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | shellPath = /bin/sh; 302 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 303 | showEnvVarsInLog = 0; 304 | }; 305 | AFD4D901DEC04D75F11E8AE1 /* [CP] Copy Pods Resources */ = { 306 | isa = PBXShellScriptBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | ); 310 | inputPaths = ( 311 | ); 312 | name = "[CP] Copy Pods Resources"; 313 | outputPaths = ( 314 | ); 315 | runOnlyForDeploymentPostprocessing = 0; 316 | shellPath = /bin/sh; 317 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-resources.sh\"\n"; 318 | showEnvVarsInLog = 0; 319 | }; 320 | E9661B1BC23B061F698F7FE5 /* [CP] Embed Pods Frameworks */ = { 321 | isa = PBXShellScriptBuildPhase; 322 | buildActionMask = 2147483647; 323 | files = ( 324 | ); 325 | inputPaths = ( 326 | ); 327 | name = "[CP] Embed Pods Frameworks"; 328 | outputPaths = ( 329 | ); 330 | runOnlyForDeploymentPostprocessing = 0; 331 | shellPath = /bin/sh; 332 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-frameworks.sh\"\n"; 333 | showEnvVarsInLog = 0; 334 | }; 335 | EA909E918F62D9BB6A2E1055 /* [CP] Check Pods Manifest.lock */ = { 336 | isa = PBXShellScriptBuildPhase; 337 | buildActionMask = 2147483647; 338 | files = ( 339 | ); 340 | inputPaths = ( 341 | ); 342 | name = "[CP] Check Pods Manifest.lock"; 343 | outputPaths = ( 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | shellPath = /bin/sh; 347 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 348 | showEnvVarsInLog = 0; 349 | }; 350 | EEE28F29445E504200DDA6F1 /* [CP] Copy Pods Resources */ = { 351 | isa = PBXShellScriptBuildPhase; 352 | buildActionMask = 2147483647; 353 | files = ( 354 | ); 355 | inputPaths = ( 356 | ); 357 | name = "[CP] Copy Pods Resources"; 358 | outputPaths = ( 359 | ); 360 | runOnlyForDeploymentPostprocessing = 0; 361 | shellPath = /bin/sh; 362 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-resources.sh\"\n"; 363 | showEnvVarsInLog = 0; 364 | }; 365 | /* End PBXShellScriptBuildPhase section */ 366 | 367 | /* Begin PBXSourcesBuildPhase section */ 368 | 0641FA951D79E6B7005563E9 /* Sources */ = { 369 | isa = PBXSourcesBuildPhase; 370 | buildActionMask = 2147483647; 371 | files = ( 372 | 06E9A0831D79EF6100B6FC45 /* UIAlertController.swift in Sources */, 373 | 0641FACC1D79E85C005563E9 /* ViewController.swift in Sources */, 374 | 0641FAC71D79E85C005563E9 /* AppDelegate.swift in Sources */, 375 | ); 376 | runOnlyForDeploymentPostprocessing = 0; 377 | }; 378 | 0641FAFA1D79EBF0005563E9 /* Sources */ = { 379 | isa = PBXSourcesBuildPhase; 380 | buildActionMask = 2147483647; 381 | files = ( 382 | 06E9A0841D79EF6100B6FC45 /* UIAlertController.swift in Sources */, 383 | 0641FB181D79EC3E005563E9 /* ViewController.swift in Sources */, 384 | 0641FB141D79EC3E005563E9 /* AppDelegate.swift in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | /* End PBXSourcesBuildPhase section */ 389 | 390 | /* Begin PBXVariantGroup section */ 391 | 0641FAC11D79E85C005563E9 /* LaunchScreen.storyboard */ = { 392 | isa = PBXVariantGroup; 393 | children = ( 394 | 0641FAC21D79E85C005563E9 /* Base */, 395 | ); 396 | name = LaunchScreen.storyboard; 397 | sourceTree = ""; 398 | }; 399 | 0641FAC31D79E85C005563E9 /* Main.storyboard */ = { 400 | isa = PBXVariantGroup; 401 | children = ( 402 | 0641FAC41D79E85C005563E9 /* Base */, 403 | ); 404 | name = Main.storyboard; 405 | sourceTree = ""; 406 | }; 407 | 0641FB101D79EC3E005563E9 /* Main.storyboard */ = { 408 | isa = PBXVariantGroup; 409 | children = ( 410 | 0641FB111D79EC3E005563E9 /* Base */, 411 | ); 412 | name = Main.storyboard; 413 | sourceTree = ""; 414 | }; 415 | /* End PBXVariantGroup section */ 416 | 417 | /* Begin XCBuildConfiguration section */ 418 | 0641FAA91D79E6B7005563E9 /* Debug */ = { 419 | isa = XCBuildConfiguration; 420 | buildSettings = { 421 | ALWAYS_SEARCH_USER_PATHS = NO; 422 | CLANG_ANALYZER_NONNULL = YES; 423 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 424 | CLANG_CXX_LIBRARY = "libc++"; 425 | CLANG_ENABLE_MODULES = YES; 426 | CLANG_ENABLE_OBJC_ARC = YES; 427 | CLANG_WARN_BOOL_CONVERSION = YES; 428 | CLANG_WARN_CONSTANT_CONVERSION = YES; 429 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 430 | CLANG_WARN_EMPTY_BODY = YES; 431 | CLANG_WARN_ENUM_CONVERSION = YES; 432 | CLANG_WARN_INFINITE_RECURSION = YES; 433 | CLANG_WARN_INT_CONVERSION = YES; 434 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 435 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 436 | CLANG_WARN_UNREACHABLE_CODE = YES; 437 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 438 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 439 | COPY_PHASE_STRIP = NO; 440 | DEBUG_INFORMATION_FORMAT = dwarf; 441 | ENABLE_STRICT_OBJC_MSGSEND = YES; 442 | ENABLE_TESTABILITY = YES; 443 | GCC_C_LANGUAGE_STANDARD = gnu99; 444 | GCC_DYNAMIC_NO_PIC = NO; 445 | GCC_NO_COMMON_BLOCKS = YES; 446 | GCC_OPTIMIZATION_LEVEL = 0; 447 | GCC_PREPROCESSOR_DEFINITIONS = ( 448 | "DEBUG=1", 449 | "$(inherited)", 450 | ); 451 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 452 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 453 | GCC_WARN_UNDECLARED_SELECTOR = YES; 454 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 455 | GCC_WARN_UNUSED_FUNCTION = YES; 456 | GCC_WARN_UNUSED_VARIABLE = YES; 457 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 458 | MTL_ENABLE_DEBUG_INFO = YES; 459 | ONLY_ACTIVE_ARCH = YES; 460 | SDKROOT = iphoneos; 461 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 462 | TARGETED_DEVICE_FAMILY = "1,2"; 463 | }; 464 | name = Debug; 465 | }; 466 | 0641FAAA1D79E6B7005563E9 /* Release */ = { 467 | isa = XCBuildConfiguration; 468 | buildSettings = { 469 | ALWAYS_SEARCH_USER_PATHS = NO; 470 | CLANG_ANALYZER_NONNULL = YES; 471 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 472 | CLANG_CXX_LIBRARY = "libc++"; 473 | CLANG_ENABLE_MODULES = YES; 474 | CLANG_ENABLE_OBJC_ARC = YES; 475 | CLANG_WARN_BOOL_CONVERSION = YES; 476 | CLANG_WARN_CONSTANT_CONVERSION = YES; 477 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 478 | CLANG_WARN_EMPTY_BODY = YES; 479 | CLANG_WARN_ENUM_CONVERSION = YES; 480 | CLANG_WARN_INFINITE_RECURSION = YES; 481 | CLANG_WARN_INT_CONVERSION = YES; 482 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 483 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 484 | CLANG_WARN_UNREACHABLE_CODE = YES; 485 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 486 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 487 | COPY_PHASE_STRIP = NO; 488 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 489 | ENABLE_NS_ASSERTIONS = NO; 490 | ENABLE_STRICT_OBJC_MSGSEND = YES; 491 | GCC_C_LANGUAGE_STANDARD = gnu99; 492 | GCC_NO_COMMON_BLOCKS = YES; 493 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 494 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 495 | GCC_WARN_UNDECLARED_SELECTOR = YES; 496 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 497 | GCC_WARN_UNUSED_FUNCTION = YES; 498 | GCC_WARN_UNUSED_VARIABLE = YES; 499 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 500 | MTL_ENABLE_DEBUG_INFO = NO; 501 | SDKROOT = iphoneos; 502 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 503 | TARGETED_DEVICE_FAMILY = "1,2"; 504 | VALIDATE_PRODUCT = YES; 505 | }; 506 | name = Release; 507 | }; 508 | 0641FAAC1D79E6B7005563E9 /* Debug */ = { 509 | isa = XCBuildConfiguration; 510 | baseConfigurationReference = 97E469C1BAB129074CC56788 /* Pods-KeyCommandsIOSExample.debug.xcconfig */; 511 | buildSettings = { 512 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 513 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 514 | INFOPLIST_FILE = KeyCommandsIOSExample/Info.plist; 515 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 516 | PRODUCT_BUNDLE_IDENTIFIER = com.augustyniak.KeyCommandsExamples; 517 | PRODUCT_NAME = "$(TARGET_NAME)"; 518 | SWIFT_VERSION = 3.0; 519 | }; 520 | name = Debug; 521 | }; 522 | 0641FAAD1D79E6B7005563E9 /* Release */ = { 523 | isa = XCBuildConfiguration; 524 | baseConfigurationReference = 083057CCAA03E5A00EF18B75 /* Pods-KeyCommandsIOSExample.release.xcconfig */; 525 | buildSettings = { 526 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 527 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 528 | INFOPLIST_FILE = KeyCommandsIOSExample/Info.plist; 529 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 530 | PRODUCT_BUNDLE_IDENTIFIER = com.augustyniak.KeyCommandsExamples; 531 | PRODUCT_NAME = "$(TARGET_NAME)"; 532 | SWIFT_VERSION = 3.0; 533 | }; 534 | name = Release; 535 | }; 536 | 0641FB0B1D79EBF0005563E9 /* Debug */ = { 537 | isa = XCBuildConfiguration; 538 | baseConfigurationReference = 3521069753892C3010BAB589 /* Pods-KeyCommandsTvOSExample.debug.xcconfig */; 539 | buildSettings = { 540 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 541 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 542 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 543 | INFOPLIST_FILE = KeyCommandsTvOSExample/Info.plist; 544 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 545 | PRODUCT_BUNDLE_IDENTIFIER = com.augustyniak.KeyCommandsTvOSExample; 546 | PRODUCT_NAME = "$(TARGET_NAME)"; 547 | SDKROOT = appletvos; 548 | SWIFT_VERSION = 3.0; 549 | TARGETED_DEVICE_FAMILY = 3; 550 | TVOS_DEPLOYMENT_TARGET = 9.2; 551 | }; 552 | name = Debug; 553 | }; 554 | 0641FB0C1D79EBF0005563E9 /* Release */ = { 555 | isa = XCBuildConfiguration; 556 | baseConfigurationReference = 1AE8DC5FC738EA341BB283CF /* Pods-KeyCommandsTvOSExample.release.xcconfig */; 557 | buildSettings = { 558 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 559 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 560 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 561 | INFOPLIST_FILE = KeyCommandsTvOSExample/Info.plist; 562 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 563 | PRODUCT_BUNDLE_IDENTIFIER = com.augustyniak.KeyCommandsTvOSExample; 564 | PRODUCT_NAME = "$(TARGET_NAME)"; 565 | SDKROOT = appletvos; 566 | SWIFT_VERSION = 3.0; 567 | TARGETED_DEVICE_FAMILY = 3; 568 | TVOS_DEPLOYMENT_TARGET = 9.2; 569 | }; 570 | name = Release; 571 | }; 572 | /* End XCBuildConfiguration section */ 573 | 574 | /* Begin XCConfigurationList section */ 575 | 0641FA941D79E6B7005563E9 /* Build configuration list for PBXProject "KeyCommandsExamples" */ = { 576 | isa = XCConfigurationList; 577 | buildConfigurations = ( 578 | 0641FAA91D79E6B7005563E9 /* Debug */, 579 | 0641FAAA1D79E6B7005563E9 /* Release */, 580 | ); 581 | defaultConfigurationIsVisible = 0; 582 | defaultConfigurationName = Release; 583 | }; 584 | 0641FAAB1D79E6B7005563E9 /* Build configuration list for PBXNativeTarget "KeyCommandsIOSExample" */ = { 585 | isa = XCConfigurationList; 586 | buildConfigurations = ( 587 | 0641FAAC1D79E6B7005563E9 /* Debug */, 588 | 0641FAAD1D79E6B7005563E9 /* Release */, 589 | ); 590 | defaultConfigurationIsVisible = 0; 591 | defaultConfigurationName = Release; 592 | }; 593 | 0641FB0A1D79EBF0005563E9 /* Build configuration list for PBXNativeTarget "KeyCommandsTvOSExample" */ = { 594 | isa = XCConfigurationList; 595 | buildConfigurations = ( 596 | 0641FB0B1D79EBF0005563E9 /* Debug */, 597 | 0641FB0C1D79EBF0005563E9 /* Release */, 598 | ); 599 | defaultConfigurationIsVisible = 0; 600 | defaultConfigurationName = Release; 601 | }; 602 | /* End XCConfigurationList section */ 603 | }; 604 | rootObject = 0641FA911D79E6B7005563E9 /* Project object */; 605 | } 606 | -------------------------------------------------------------------------------- /Examples/KeyCommandsExamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/KeyCommandsExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Examples/KeyCommandsIOSExample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // KeyCommandsExamples 4 | // 5 | // Created by Rafal Augustyniak on 02/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. 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 | -------------------------------------------------------------------------------- /Examples/KeyCommandsIOSExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "83.5x83.5", 66 | "scale" : "2x" 67 | } 68 | ], 69 | "info" : { 70 | "version" : 1, 71 | "author" : "xcode" 72 | } 73 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsIOSExample/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 | -------------------------------------------------------------------------------- /Examples/KeyCommandsIOSExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Examples/KeyCommandsIOSExample/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 | -------------------------------------------------------------------------------- /Examples/KeyCommandsIOSExample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // KeyCommandsExamples 4 | // 5 | // Created by Rafal Augustyniak on 02/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import KeyCommands 11 | 12 | class ViewController: UIViewController { 13 | 14 | override func viewDidLoad() { 15 | super.viewDidLoad() 16 | 17 | KeyCommands.register(input: "r", modifierFlags: .command) { 18 | if self.presentedViewController == nil { 19 | UIAlertController.presentKeyPressedAlertInAlertViewController(inViewController: self, message: "⌘+R") 20 | } 21 | } 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // KeyCommandsTvOSExample 4 | // 5 | // Created by Rafal Augustyniak on 02/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. 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 | -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "layers" : [ 3 | { 4 | "filename" : "Front.imagestacklayer" 5 | }, 6 | { 7 | "filename" : "Middle.imagestacklayer" 8 | }, 9 | { 10 | "filename" : "Back.imagestacklayer" 11 | } 12 | ], 13 | "info" : { 14 | "version" : 1, 15 | "author" : "xcode" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "layers" : [ 3 | { 4 | "filename" : "Front.imagestacklayer" 5 | }, 6 | { 7 | "filename" : "Middle.imagestacklayer" 8 | }, 9 | { 10 | "filename" : "Back.imagestacklayer" 11 | } 12 | ], 13 | "info" : { 14 | "version" : 1, 15 | "author" : "xcode" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "assets" : [ 3 | { 4 | "size" : "1280x768", 5 | "idiom" : "tv", 6 | "filename" : "App Icon - Large.imagestack", 7 | "role" : "primary-app-icon" 8 | }, 9 | { 10 | "size" : "400x240", 11 | "idiom" : "tv", 12 | "filename" : "App Icon - Small.imagestack", 13 | "role" : "primary-app-icon" 14 | }, 15 | { 16 | "size" : "1920x720", 17 | "idiom" : "tv", 18 | "filename" : "Top Shelf Image.imageset", 19 | "role" : "top-shelf-image" 20 | } 21 | ], 22 | "info" : { 23 | "version" : 1, 24 | "author" : "xcode" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "landscape", 5 | "idiom" : "tv", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "9.0", 8 | "scale" : "1x" 9 | } 10 | ], 11 | "info" : { 12 | "version" : 1, 13 | "author" : "xcode" 14 | } 15 | } -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/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 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | arm64 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Examples/KeyCommandsTvOSExample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // KeyCommandsTvOSExample 4 | // 5 | // Created by Rafal Augustyniak on 02/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import KeyCommands 11 | 12 | class ViewController: UIViewController { 13 | 14 | override func viewDidLoad() { 15 | super.viewDidLoad() 16 | 17 | KeyCommands.register(input: "r", modifierFlags: .command) { 18 | if self.presentedViewController == nil { 19 | UIAlertController.presentKeyPressedAlertInAlertViewController(inViewController: self, message: "⌘+R") 20 | } 21 | } 22 | } 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /Examples/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'KeyCommandsIOSExample' do 5 | use_frameworks! 6 | 7 | pod 'KeyCommands', :path => './../KeyCommands.podspec.json' 8 | end 9 | 10 | target 'KeyCommandsTvOSExample' do 11 | use_frameworks! 12 | 13 | pod 'KeyCommands', :path => './../KeyCommands.podspec.json' 14 | end 15 | 16 | post_install do |installer| 17 | installer.pods_project.targets.each do |target| 18 | target.build_configurations.each do |config| 19 | config.build_settings['SWIFT_VERSION'] = '3.0' 20 | end 21 | end 22 | end 23 | -------------------------------------------------------------------------------- /Examples/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KeyCommands (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - KeyCommands (from `./../KeyCommands.podspec.json`) 6 | 7 | EXTERNAL SOURCES: 8 | KeyCommands: 9 | :path: ./../KeyCommands.podspec.json 10 | 11 | SPEC CHECKSUMS: 12 | KeyCommands: 3c47ae65995abe7bb5f3b81cc27bbe211a90e3ad 13 | 14 | PODFILE CHECKSUM: 47ce74fb6dd28a57d0afe107c18e8e20410c960b 15 | 16 | COCOAPODS: 1.0.1 17 | -------------------------------------------------------------------------------- /Examples/Pods/Local Podspecs/KeyCommands.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KeyCommands", 3 | "version": "1.0.0", 4 | "summary": "RATreeView provide you a great support to display the tree structures on iOS.", 5 | "homepage": "https://github.com/Augustyniak/KeyCommands", 6 | "screenshots": "https://raw.github.com/Augustyniak/KeyCommands/master/Screens/animation.gif", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENCE.md" 10 | }, 11 | "authors": { 12 | "Rafal Augustyniak": "rafalaugustyniak@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/Augustyniak/KeyCommands.git", 16 | "tag": "v1.0.0" 17 | }, 18 | "platforms": { 19 | "ios": "9.0", 20 | "tvos": "9.0" 21 | }, 22 | "source_files": "KeyCommands/**/*.{swift}", 23 | "public_header_files": "KeyCommands/KeyCommands/KeyCommands.h", 24 | "requires_arc": true 25 | } 26 | -------------------------------------------------------------------------------- /Examples/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KeyCommands (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - KeyCommands (from `./../KeyCommands.podspec.json`) 6 | 7 | EXTERNAL SOURCES: 8 | KeyCommands: 9 | :path: ./../KeyCommands.podspec.json 10 | 11 | SPEC CHECKSUMS: 12 | KeyCommands: 3c47ae65995abe7bb5f3b81cc27bbe211a90e3ad 13 | 14 | PODFILE CHECKSUM: 47ce74fb6dd28a57d0afe107c18e8e20410c960b 15 | 16 | COCOAPODS: 1.0.1 17 | -------------------------------------------------------------------------------- /Examples/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0A2BB7B91EE548D2566EE2883098CD1C /* KeyCommands-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E930748A5A949AFC68420DB0ACB90947 /* KeyCommands-iOS-dummy.m */; }; 11 | 2CCA59B686E4A50BB78D2C3E55D2EB03 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 870C602EDDC4CB6D519310BC9C946A54 /* Foundation.framework */; }; 12 | 59CECAFA8A493C25702068832261B22E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 870C602EDDC4CB6D519310BC9C946A54 /* Foundation.framework */; }; 13 | 6603343B3BABF9F86684782C20FCC220 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1704D3301AB26219B2489F5CBCFEAF53 /* Foundation.framework */; }; 14 | 873D4C01AB152BBB3BAB5E138A75592B /* Pods-KeyCommandsIOSExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DE919A6FFD21AA2A4B76867CDECE4DF /* Pods-KeyCommandsIOSExample-dummy.m */; }; 15 | 9373AACB5576806E96ABC6C3B115B86D /* Pods-KeyCommandsTvOSExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A25BD4B9AF5BF6FF5403ED634FEE5E0E /* Pods-KeyCommandsTvOSExample-dummy.m */; }; 16 | 98D26594F94E742F58DFCEA537FFE62E /* KeyCommands-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEEDE99EE2376F58176D8FA8DA45389 /* KeyCommands-tvOS-dummy.m */; }; 17 | ACD37CF7BDB2E67D87E79C83DE638BFA /* KeyCommands-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 805A9C3F92005FEC0EA421A3EBABBFBA /* KeyCommands-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | D47BC4114428727DF1365E4B97E06B06 /* Pods-KeyCommandsIOSExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D800CC2CE065F2114AC7426B17C6669 /* Pods-KeyCommandsIOSExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | DD7E7C15C835A9A3D82AE825FBBAEB1C /* KeyCommands.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89E75A344AD3B2D5F6E1913B05F517AA /* KeyCommands.swift */; }; 20 | E67AE1459E99B61E11D2F85C85622118 /* KeyCommands.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89E75A344AD3B2D5F6E1913B05F517AA /* KeyCommands.swift */; }; 21 | EEEBF72460E209678C10C6D0CCD70695 /* KeyCommands-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 752D840596254935F7351207F82525F9 /* KeyCommands-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | F3B80530D4D44A74230D24243DB2D6AD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1704D3301AB26219B2489F5CBCFEAF53 /* Foundation.framework */; }; 23 | F67EB2372F809462CCB07FBAA3ABBB22 /* Pods-KeyCommandsTvOSExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BFC2E3990C5491BCDCC92601E1ED588 /* Pods-KeyCommandsTvOSExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXContainerItemProxy section */ 27 | 5366EED119F2A236DA03E2EA89911A6E /* PBXContainerItemProxy */ = { 28 | isa = PBXContainerItemProxy; 29 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 30 | proxyType = 1; 31 | remoteGlobalIDString = 1372D44135C617498667BFC1B3812822; 32 | remoteInfo = "KeyCommands-iOS"; 33 | }; 34 | C6E17FD9BE025A391519CDE6D0669A11 /* PBXContainerItemProxy */ = { 35 | isa = PBXContainerItemProxy; 36 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 37 | proxyType = 1; 38 | remoteGlobalIDString = FA6625EF0B38A70A05B05D42C014F596; 39 | remoteInfo = "KeyCommands-tvOS"; 40 | }; 41 | /* End PBXContainerItemProxy section */ 42 | 43 | /* Begin PBXFileReference section */ 44 | 038243FF4DFF8A71A4456C460C61F7B4 /* Pods-KeyCommandsIOSExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KeyCommandsIOSExample-resources.sh"; sourceTree = ""; }; 45 | 070B808C8E411717F7DB1D73F697C7B0 /* Pods-KeyCommandsIOSExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KeyCommandsIOSExample.debug.xcconfig"; sourceTree = ""; }; 46 | 1291E59F507B08271E88A9B0333D2408 /* Pods-KeyCommandsIOSExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-KeyCommandsIOSExample-acknowledgements.markdown"; sourceTree = ""; }; 47 | 1704D3301AB26219B2489F5CBCFEAF53 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 48 | 1C743C4521C91FC109DBC6F89C89ABE0 /* Pods-KeyCommandsTvOSExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KeyCommandsTvOSExample.debug.xcconfig"; sourceTree = ""; }; 49 | 1C95CEB94F48816B886A92129F3BA1A0 /* Pods-KeyCommandsIOSExample-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KeyCommandsIOSExample-frameworks.sh"; sourceTree = ""; }; 50 | 1FEEDE99EE2376F58176D8FA8DA45389 /* KeyCommands-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "KeyCommands-tvOS-dummy.m"; path = "../KeyCommands-tvOS/KeyCommands-tvOS-dummy.m"; sourceTree = ""; }; 51 | 2292DE35D611D89D3B36AB04F6858880 /* KeyCommands-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; name = "KeyCommands-tvOS.modulemap"; path = "../KeyCommands-tvOS/KeyCommands-tvOS.modulemap"; sourceTree = ""; }; 52 | 26EB973AC22FB0FDB6B52C0449F073A1 /* Pods-KeyCommandsTvOSExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-KeyCommandsTvOSExample.modulemap"; sourceTree = ""; }; 53 | 2923AEEB00267D52F5919F0667933AC6 /* Pods-KeyCommandsTvOSExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-KeyCommandsTvOSExample-acknowledgements.markdown"; sourceTree = ""; }; 54 | 35CF48FC0E0456EC521EB8979D869A3C /* KeyCommands-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "KeyCommands-tvOS-prefix.pch"; path = "../KeyCommands-tvOS/KeyCommands-tvOS-prefix.pch"; sourceTree = ""; }; 55 | 4BFC2E3990C5491BCDCC92601E1ED588 /* Pods-KeyCommandsTvOSExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-KeyCommandsTvOSExample-umbrella.h"; sourceTree = ""; }; 56 | 57B22493F7EF52C39C72EF2F0491F48B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 57 | 5F1422D36EC1D877563ED1D5539840B5 /* Pods-KeyCommandsTvOSExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KeyCommandsTvOSExample-resources.sh"; sourceTree = ""; }; 58 | 720E7CF75E253BBFDF515E95EBA1CD8F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 59 | 752D840596254935F7351207F82525F9 /* KeyCommands-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-iOS-umbrella.h"; sourceTree = ""; }; 60 | 7698E65769AFB2DC842210173FFA9B71 /* KeyCommands-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "KeyCommands-iOS.modulemap"; sourceTree = ""; }; 61 | 805A9C3F92005FEC0EA421A3EBABBFBA /* KeyCommands-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "KeyCommands-tvOS-umbrella.h"; path = "../KeyCommands-tvOS/KeyCommands-tvOS-umbrella.h"; sourceTree = ""; }; 62 | 83989AF8EF930D937101CD806318A176 /* Pods-KeyCommandsIOSExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-KeyCommandsIOSExample.modulemap"; sourceTree = ""; }; 63 | 85FD754BAACC1CFF0F32742AC85E3F18 /* Pods_KeyCommandsIOSExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KeyCommandsIOSExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 64 | 870C602EDDC4CB6D519310BC9C946A54 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS9.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 65 | 88439499A832EE85C6BDE9AA8A780C6E /* Pods_KeyCommandsTvOSExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KeyCommandsTvOSExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | 89E75A344AD3B2D5F6E1913B05F517AA /* KeyCommands.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = KeyCommands.swift; sourceTree = ""; }; 67 | 8D800CC2CE065F2114AC7426B17C6669 /* Pods-KeyCommandsIOSExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-KeyCommandsIOSExample-umbrella.h"; sourceTree = ""; }; 68 | 8DE919A6FFD21AA2A4B76867CDECE4DF /* Pods-KeyCommandsIOSExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-KeyCommandsIOSExample-dummy.m"; sourceTree = ""; }; 69 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 70 | 945D8EFCBA3E011588EA0B53E03359FD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../KeyCommands-tvOS/Info.plist"; sourceTree = ""; }; 71 | 96260CE53B8AB365F48BEEE55C88A4E3 /* KeyCommands-tvOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "KeyCommands-tvOS.xcconfig"; path = "../KeyCommands-tvOS/KeyCommands-tvOS.xcconfig"; sourceTree = ""; }; 72 | 9C85A62DEAC709666E7D7DA351D71E87 /* Pods-KeyCommandsTvOSExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KeyCommandsTvOSExample.release.xcconfig"; sourceTree = ""; }; 73 | A25BD4B9AF5BF6FF5403ED634FEE5E0E /* Pods-KeyCommandsTvOSExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-KeyCommandsTvOSExample-dummy.m"; sourceTree = ""; }; 74 | A7863A3AD04296BFF12DDF0BFB113C2F /* Pods-KeyCommandsIOSExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KeyCommandsIOSExample.release.xcconfig"; sourceTree = ""; }; 75 | B0E6949B661A10D5298A076795029206 /* KeyCommands.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeyCommands.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 76 | B84135503C7A984504E75B9C99F01B8C /* KeyCommands.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeyCommands.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 77 | C8B034C344F80D33808DD14FA1FDF417 /* Pods-KeyCommandsTvOSExample-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KeyCommandsTvOSExample-frameworks.sh"; sourceTree = ""; }; 78 | E930748A5A949AFC68420DB0ACB90947 /* KeyCommands-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-iOS-dummy.m"; sourceTree = ""; }; 79 | EA63EA5F357445815F8A1E984C6BD825 /* KeyCommands-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-iOS-prefix.pch"; sourceTree = ""; }; 80 | F6A57BB4EBF3F498E006A1BA0B7E0451 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 81 | F973240D208BACA99F547CAB85300865 /* KeyCommands-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "KeyCommands-iOS.xcconfig"; sourceTree = ""; }; 82 | FEAA673A85138110A04964846D9D44C7 /* Pods-KeyCommandsIOSExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KeyCommandsIOSExample-acknowledgements.plist"; sourceTree = ""; }; 83 | FEE5B530494004FEC13BB4826D960AFE /* Pods-KeyCommandsTvOSExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KeyCommandsTvOSExample-acknowledgements.plist"; sourceTree = ""; }; 84 | /* End PBXFileReference section */ 85 | 86 | /* Begin PBXFrameworksBuildPhase section */ 87 | 1B76B2D24BD1096BF3390B41D1691394 /* Frameworks */ = { 88 | isa = PBXFrameworksBuildPhase; 89 | buildActionMask = 2147483647; 90 | files = ( 91 | 59CECAFA8A493C25702068832261B22E /* Foundation.framework in Frameworks */, 92 | ); 93 | runOnlyForDeploymentPostprocessing = 0; 94 | }; 95 | 3CD29CED440959F0CE57BE88016C9097 /* Frameworks */ = { 96 | isa = PBXFrameworksBuildPhase; 97 | buildActionMask = 2147483647; 98 | files = ( 99 | 2CCA59B686E4A50BB78D2C3E55D2EB03 /* Foundation.framework in Frameworks */, 100 | ); 101 | runOnlyForDeploymentPostprocessing = 0; 102 | }; 103 | 9FA7853AE5924A41EAD67E3AB3F822D6 /* Frameworks */ = { 104 | isa = PBXFrameworksBuildPhase; 105 | buildActionMask = 2147483647; 106 | files = ( 107 | 6603343B3BABF9F86684782C20FCC220 /* Foundation.framework in Frameworks */, 108 | ); 109 | runOnlyForDeploymentPostprocessing = 0; 110 | }; 111 | FD3B73D5F1361D3C330C494FCB69B630 /* Frameworks */ = { 112 | isa = PBXFrameworksBuildPhase; 113 | buildActionMask = 2147483647; 114 | files = ( 115 | F3B80530D4D44A74230D24243DB2D6AD /* Foundation.framework in Frameworks */, 116 | ); 117 | runOnlyForDeploymentPostprocessing = 0; 118 | }; 119 | /* End PBXFrameworksBuildPhase section */ 120 | 121 | /* Begin PBXGroup section */ 122 | 0798EC578615838B6ADA36808C9E3494 /* Support Files */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | 945D8EFCBA3E011588EA0B53E03359FD /* Info.plist */, 126 | F6A57BB4EBF3F498E006A1BA0B7E0451 /* Info.plist */, 127 | 7698E65769AFB2DC842210173FFA9B71 /* KeyCommands-iOS.modulemap */, 128 | F973240D208BACA99F547CAB85300865 /* KeyCommands-iOS.xcconfig */, 129 | E930748A5A949AFC68420DB0ACB90947 /* KeyCommands-iOS-dummy.m */, 130 | EA63EA5F357445815F8A1E984C6BD825 /* KeyCommands-iOS-prefix.pch */, 131 | 752D840596254935F7351207F82525F9 /* KeyCommands-iOS-umbrella.h */, 132 | 2292DE35D611D89D3B36AB04F6858880 /* KeyCommands-tvOS.modulemap */, 133 | 96260CE53B8AB365F48BEEE55C88A4E3 /* KeyCommands-tvOS.xcconfig */, 134 | 1FEEDE99EE2376F58176D8FA8DA45389 /* KeyCommands-tvOS-dummy.m */, 135 | 35CF48FC0E0456EC521EB8979D869A3C /* KeyCommands-tvOS-prefix.pch */, 136 | 805A9C3F92005FEC0EA421A3EBABBFBA /* KeyCommands-tvOS-umbrella.h */, 137 | ); 138 | name = "Support Files"; 139 | path = "Examples/Pods/Target Support Files/KeyCommands-iOS"; 140 | sourceTree = ""; 141 | }; 142 | 21B1CA08F61E484EAD31CE735CC67A89 /* KeyCommands */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | 89E75A344AD3B2D5F6E1913B05F517AA /* KeyCommands.swift */, 146 | ); 147 | path = KeyCommands; 148 | sourceTree = ""; 149 | }; 150 | 31EED7AEC5B52104BE873A57160CD2E2 /* KeyCommands */ = { 151 | isa = PBXGroup; 152 | children = ( 153 | C477ECEBFD7C32BE76C1C28C37DB2839 /* KeyCommands */, 154 | 0798EC578615838B6ADA36808C9E3494 /* Support Files */, 155 | ); 156 | name = KeyCommands; 157 | path = ../..; 158 | sourceTree = ""; 159 | }; 160 | 4DE981651EBDA0C26C3BF79F9E9B88B1 /* Products */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | B84135503C7A984504E75B9C99F01B8C /* KeyCommands.framework */, 164 | B0E6949B661A10D5298A076795029206 /* KeyCommands.framework */, 165 | 85FD754BAACC1CFF0F32742AC85E3F18 /* Pods_KeyCommandsIOSExample.framework */, 166 | 88439499A832EE85C6BDE9AA8A780C6E /* Pods_KeyCommandsTvOSExample.framework */, 167 | ); 168 | name = Products; 169 | sourceTree = ""; 170 | }; 171 | 4DEEA4F58B49A7BE5FF752198A0665EA /* Development Pods */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | 31EED7AEC5B52104BE873A57160CD2E2 /* KeyCommands */, 175 | ); 176 | name = "Development Pods"; 177 | sourceTree = ""; 178 | }; 179 | 5A5E9DD4398B09558652C49A7108732B /* Pods-KeyCommandsIOSExample */ = { 180 | isa = PBXGroup; 181 | children = ( 182 | 720E7CF75E253BBFDF515E95EBA1CD8F /* Info.plist */, 183 | 83989AF8EF930D937101CD806318A176 /* Pods-KeyCommandsIOSExample.modulemap */, 184 | 1291E59F507B08271E88A9B0333D2408 /* Pods-KeyCommandsIOSExample-acknowledgements.markdown */, 185 | FEAA673A85138110A04964846D9D44C7 /* Pods-KeyCommandsIOSExample-acknowledgements.plist */, 186 | 8DE919A6FFD21AA2A4B76867CDECE4DF /* Pods-KeyCommandsIOSExample-dummy.m */, 187 | 1C95CEB94F48816B886A92129F3BA1A0 /* Pods-KeyCommandsIOSExample-frameworks.sh */, 188 | 038243FF4DFF8A71A4456C460C61F7B4 /* Pods-KeyCommandsIOSExample-resources.sh */, 189 | 8D800CC2CE065F2114AC7426B17C6669 /* Pods-KeyCommandsIOSExample-umbrella.h */, 190 | 070B808C8E411717F7DB1D73F697C7B0 /* Pods-KeyCommandsIOSExample.debug.xcconfig */, 191 | A7863A3AD04296BFF12DDF0BFB113C2F /* Pods-KeyCommandsIOSExample.release.xcconfig */, 192 | ); 193 | name = "Pods-KeyCommandsIOSExample"; 194 | path = "Target Support Files/Pods-KeyCommandsIOSExample"; 195 | sourceTree = ""; 196 | }; 197 | 63D2C5BFBCC95AF47E023ADB2476B73A /* Pods-KeyCommandsTvOSExample */ = { 198 | isa = PBXGroup; 199 | children = ( 200 | 57B22493F7EF52C39C72EF2F0491F48B /* Info.plist */, 201 | 26EB973AC22FB0FDB6B52C0449F073A1 /* Pods-KeyCommandsTvOSExample.modulemap */, 202 | 2923AEEB00267D52F5919F0667933AC6 /* Pods-KeyCommandsTvOSExample-acknowledgements.markdown */, 203 | FEE5B530494004FEC13BB4826D960AFE /* Pods-KeyCommandsTvOSExample-acknowledgements.plist */, 204 | A25BD4B9AF5BF6FF5403ED634FEE5E0E /* Pods-KeyCommandsTvOSExample-dummy.m */, 205 | C8B034C344F80D33808DD14FA1FDF417 /* Pods-KeyCommandsTvOSExample-frameworks.sh */, 206 | 5F1422D36EC1D877563ED1D5539840B5 /* Pods-KeyCommandsTvOSExample-resources.sh */, 207 | 4BFC2E3990C5491BCDCC92601E1ED588 /* Pods-KeyCommandsTvOSExample-umbrella.h */, 208 | 1C743C4521C91FC109DBC6F89C89ABE0 /* Pods-KeyCommandsTvOSExample.debug.xcconfig */, 209 | 9C85A62DEAC709666E7D7DA351D71E87 /* Pods-KeyCommandsTvOSExample.release.xcconfig */, 210 | ); 211 | name = "Pods-KeyCommandsTvOSExample"; 212 | path = "Target Support Files/Pods-KeyCommandsTvOSExample"; 213 | sourceTree = ""; 214 | }; 215 | 6788458F3A34722A119F20FAD05952AB /* iOS */ = { 216 | isa = PBXGroup; 217 | children = ( 218 | 1704D3301AB26219B2489F5CBCFEAF53 /* Foundation.framework */, 219 | ); 220 | name = iOS; 221 | sourceTree = ""; 222 | }; 223 | 7DB346D0F39D3F0E887471402A8071AB = { 224 | isa = PBXGroup; 225 | children = ( 226 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 227 | 4DEEA4F58B49A7BE5FF752198A0665EA /* Development Pods */, 228 | A42F72DC1D780481325DD00969B19BB6 /* Frameworks */, 229 | 4DE981651EBDA0C26C3BF79F9E9B88B1 /* Products */, 230 | B4C0E5E1E6EFB0615C8FE0429FFB2769 /* Targets Support Files */, 231 | ); 232 | sourceTree = ""; 233 | }; 234 | 7E19246DA5FF3D4FB35065B9E340260E /* tvOS */ = { 235 | isa = PBXGroup; 236 | children = ( 237 | 870C602EDDC4CB6D519310BC9C946A54 /* Foundation.framework */, 238 | ); 239 | name = tvOS; 240 | sourceTree = ""; 241 | }; 242 | A42F72DC1D780481325DD00969B19BB6 /* Frameworks */ = { 243 | isa = PBXGroup; 244 | children = ( 245 | 6788458F3A34722A119F20FAD05952AB /* iOS */, 246 | 7E19246DA5FF3D4FB35065B9E340260E /* tvOS */, 247 | ); 248 | name = Frameworks; 249 | sourceTree = ""; 250 | }; 251 | B4C0E5E1E6EFB0615C8FE0429FFB2769 /* Targets Support Files */ = { 252 | isa = PBXGroup; 253 | children = ( 254 | 5A5E9DD4398B09558652C49A7108732B /* Pods-KeyCommandsIOSExample */, 255 | 63D2C5BFBCC95AF47E023ADB2476B73A /* Pods-KeyCommandsTvOSExample */, 256 | ); 257 | name = "Targets Support Files"; 258 | sourceTree = ""; 259 | }; 260 | C477ECEBFD7C32BE76C1C28C37DB2839 /* KeyCommands */ = { 261 | isa = PBXGroup; 262 | children = ( 263 | 21B1CA08F61E484EAD31CE735CC67A89 /* KeyCommands */, 264 | ); 265 | path = KeyCommands; 266 | sourceTree = ""; 267 | }; 268 | /* End PBXGroup section */ 269 | 270 | /* Begin PBXHeadersBuildPhase section */ 271 | 0F0B91062F71EEE423DAAD836C1F7FA9 /* Headers */ = { 272 | isa = PBXHeadersBuildPhase; 273 | buildActionMask = 2147483647; 274 | files = ( 275 | F67EB2372F809462CCB07FBAA3ABBB22 /* Pods-KeyCommandsTvOSExample-umbrella.h in Headers */, 276 | ); 277 | runOnlyForDeploymentPostprocessing = 0; 278 | }; 279 | 29CE0AB4FCD117E671BF47ED96595155 /* Headers */ = { 280 | isa = PBXHeadersBuildPhase; 281 | buildActionMask = 2147483647; 282 | files = ( 283 | D47BC4114428727DF1365E4B97E06B06 /* Pods-KeyCommandsIOSExample-umbrella.h in Headers */, 284 | ); 285 | runOnlyForDeploymentPostprocessing = 0; 286 | }; 287 | 494E3F02C3850C78B582CADC5D2604C1 /* Headers */ = { 288 | isa = PBXHeadersBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ACD37CF7BDB2E67D87E79C83DE638BFA /* KeyCommands-tvOS-umbrella.h in Headers */, 292 | ); 293 | runOnlyForDeploymentPostprocessing = 0; 294 | }; 295 | C1468C9D21AD45D25934167035F0A750 /* Headers */ = { 296 | isa = PBXHeadersBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | EEEBF72460E209678C10C6D0CCD70695 /* KeyCommands-iOS-umbrella.h in Headers */, 300 | ); 301 | runOnlyForDeploymentPostprocessing = 0; 302 | }; 303 | /* End PBXHeadersBuildPhase section */ 304 | 305 | /* Begin PBXNativeTarget section */ 306 | 1372D44135C617498667BFC1B3812822 /* KeyCommands-iOS */ = { 307 | isa = PBXNativeTarget; 308 | buildConfigurationList = ACC81E2286A42B1F59421A8FB17DEF9A /* Build configuration list for PBXNativeTarget "KeyCommands-iOS" */; 309 | buildPhases = ( 310 | 5693C74C74C0CE33F42B6F1E6FB2552C /* Sources */, 311 | FD3B73D5F1361D3C330C494FCB69B630 /* Frameworks */, 312 | C1468C9D21AD45D25934167035F0A750 /* Headers */, 313 | ); 314 | buildRules = ( 315 | ); 316 | dependencies = ( 317 | ); 318 | name = "KeyCommands-iOS"; 319 | productName = "KeyCommands-iOS"; 320 | productReference = B84135503C7A984504E75B9C99F01B8C /* KeyCommands.framework */; 321 | productType = "com.apple.product-type.framework"; 322 | }; 323 | 4DEA9207C3C91703404B07D5C1B7D0F7 /* Pods-KeyCommandsTvOSExample */ = { 324 | isa = PBXNativeTarget; 325 | buildConfigurationList = D7DCBD36A7726399D97D8B02B69B632A /* Build configuration list for PBXNativeTarget "Pods-KeyCommandsTvOSExample" */; 326 | buildPhases = ( 327 | 6850E13C8BE8C10081795597795F5579 /* Sources */, 328 | 1B76B2D24BD1096BF3390B41D1691394 /* Frameworks */, 329 | 0F0B91062F71EEE423DAAD836C1F7FA9 /* Headers */, 330 | ); 331 | buildRules = ( 332 | ); 333 | dependencies = ( 334 | 5F95939D2AD0A7D2A51F86793B668907 /* PBXTargetDependency */, 335 | ); 336 | name = "Pods-KeyCommandsTvOSExample"; 337 | productName = "Pods-KeyCommandsTvOSExample"; 338 | productReference = 88439499A832EE85C6BDE9AA8A780C6E /* Pods_KeyCommandsTvOSExample.framework */; 339 | productType = "com.apple.product-type.framework"; 340 | }; 341 | EBBF062FB6BB636B174D5AA6694B82AE /* Pods-KeyCommandsIOSExample */ = { 342 | isa = PBXNativeTarget; 343 | buildConfigurationList = FEE001B8A43DDF99056477433F6D9AEF /* Build configuration list for PBXNativeTarget "Pods-KeyCommandsIOSExample" */; 344 | buildPhases = ( 345 | 5220D30D300707FD25AA0A15B6CD7254 /* Sources */, 346 | 9FA7853AE5924A41EAD67E3AB3F822D6 /* Frameworks */, 347 | 29CE0AB4FCD117E671BF47ED96595155 /* Headers */, 348 | ); 349 | buildRules = ( 350 | ); 351 | dependencies = ( 352 | E34DC73C997E336DC6FECBA39CEE64C9 /* PBXTargetDependency */, 353 | ); 354 | name = "Pods-KeyCommandsIOSExample"; 355 | productName = "Pods-KeyCommandsIOSExample"; 356 | productReference = 85FD754BAACC1CFF0F32742AC85E3F18 /* Pods_KeyCommandsIOSExample.framework */; 357 | productType = "com.apple.product-type.framework"; 358 | }; 359 | FA6625EF0B38A70A05B05D42C014F596 /* KeyCommands-tvOS */ = { 360 | isa = PBXNativeTarget; 361 | buildConfigurationList = 2DEEE8BE942DC786860274531008F028 /* Build configuration list for PBXNativeTarget "KeyCommands-tvOS" */; 362 | buildPhases = ( 363 | AE8B99BD1543232FC07B747C65DB320A /* Sources */, 364 | 3CD29CED440959F0CE57BE88016C9097 /* Frameworks */, 365 | 494E3F02C3850C78B582CADC5D2604C1 /* Headers */, 366 | ); 367 | buildRules = ( 368 | ); 369 | dependencies = ( 370 | ); 371 | name = "KeyCommands-tvOS"; 372 | productName = "KeyCommands-tvOS"; 373 | productReference = B0E6949B661A10D5298A076795029206 /* KeyCommands.framework */; 374 | productType = "com.apple.product-type.framework"; 375 | }; 376 | /* End PBXNativeTarget section */ 377 | 378 | /* Begin PBXProject section */ 379 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 380 | isa = PBXProject; 381 | attributes = { 382 | LastSwiftUpdateCheck = 0730; 383 | LastUpgradeCheck = 0700; 384 | }; 385 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 386 | compatibilityVersion = "Xcode 3.2"; 387 | developmentRegion = English; 388 | hasScannedForEncodings = 0; 389 | knownRegions = ( 390 | en, 391 | ); 392 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 393 | productRefGroup = 4DE981651EBDA0C26C3BF79F9E9B88B1 /* Products */; 394 | projectDirPath = ""; 395 | projectRoot = ""; 396 | targets = ( 397 | 1372D44135C617498667BFC1B3812822 /* KeyCommands-iOS */, 398 | FA6625EF0B38A70A05B05D42C014F596 /* KeyCommands-tvOS */, 399 | EBBF062FB6BB636B174D5AA6694B82AE /* Pods-KeyCommandsIOSExample */, 400 | 4DEA9207C3C91703404B07D5C1B7D0F7 /* Pods-KeyCommandsTvOSExample */, 401 | ); 402 | }; 403 | /* End PBXProject section */ 404 | 405 | /* Begin PBXSourcesBuildPhase section */ 406 | 5220D30D300707FD25AA0A15B6CD7254 /* Sources */ = { 407 | isa = PBXSourcesBuildPhase; 408 | buildActionMask = 2147483647; 409 | files = ( 410 | 873D4C01AB152BBB3BAB5E138A75592B /* Pods-KeyCommandsIOSExample-dummy.m in Sources */, 411 | ); 412 | runOnlyForDeploymentPostprocessing = 0; 413 | }; 414 | 5693C74C74C0CE33F42B6F1E6FB2552C /* Sources */ = { 415 | isa = PBXSourcesBuildPhase; 416 | buildActionMask = 2147483647; 417 | files = ( 418 | 0A2BB7B91EE548D2566EE2883098CD1C /* KeyCommands-iOS-dummy.m in Sources */, 419 | DD7E7C15C835A9A3D82AE825FBBAEB1C /* KeyCommands.swift in Sources */, 420 | ); 421 | runOnlyForDeploymentPostprocessing = 0; 422 | }; 423 | 6850E13C8BE8C10081795597795F5579 /* Sources */ = { 424 | isa = PBXSourcesBuildPhase; 425 | buildActionMask = 2147483647; 426 | files = ( 427 | 9373AACB5576806E96ABC6C3B115B86D /* Pods-KeyCommandsTvOSExample-dummy.m in Sources */, 428 | ); 429 | runOnlyForDeploymentPostprocessing = 0; 430 | }; 431 | AE8B99BD1543232FC07B747C65DB320A /* Sources */ = { 432 | isa = PBXSourcesBuildPhase; 433 | buildActionMask = 2147483647; 434 | files = ( 435 | 98D26594F94E742F58DFCEA537FFE62E /* KeyCommands-tvOS-dummy.m in Sources */, 436 | E67AE1459E99B61E11D2F85C85622118 /* KeyCommands.swift in Sources */, 437 | ); 438 | runOnlyForDeploymentPostprocessing = 0; 439 | }; 440 | /* End PBXSourcesBuildPhase section */ 441 | 442 | /* Begin PBXTargetDependency section */ 443 | 5F95939D2AD0A7D2A51F86793B668907 /* PBXTargetDependency */ = { 444 | isa = PBXTargetDependency; 445 | name = "KeyCommands-tvOS"; 446 | target = FA6625EF0B38A70A05B05D42C014F596 /* KeyCommands-tvOS */; 447 | targetProxy = C6E17FD9BE025A391519CDE6D0669A11 /* PBXContainerItemProxy */; 448 | }; 449 | E34DC73C997E336DC6FECBA39CEE64C9 /* PBXTargetDependency */ = { 450 | isa = PBXTargetDependency; 451 | name = "KeyCommands-iOS"; 452 | target = 1372D44135C617498667BFC1B3812822 /* KeyCommands-iOS */; 453 | targetProxy = 5366EED119F2A236DA03E2EA89911A6E /* PBXContainerItemProxy */; 454 | }; 455 | /* End PBXTargetDependency section */ 456 | 457 | /* Begin XCBuildConfiguration section */ 458 | 032D92E5DA3910D674A3248912072E1F /* Debug */ = { 459 | isa = XCBuildConfiguration; 460 | baseConfigurationReference = 96260CE53B8AB365F48BEEE55C88A4E3 /* KeyCommands-tvOS.xcconfig */; 461 | buildSettings = { 462 | CURRENT_PROJECT_VERSION = 1; 463 | DEBUG_INFORMATION_FORMAT = dwarf; 464 | DEFINES_MODULE = YES; 465 | DYLIB_COMPATIBILITY_VERSION = 1; 466 | DYLIB_CURRENT_VERSION = 1; 467 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 468 | ENABLE_STRICT_OBJC_MSGSEND = YES; 469 | GCC_NO_COMMON_BLOCKS = YES; 470 | GCC_PREFIX_HEADER = "Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS-prefix.pch"; 471 | INFOPLIST_FILE = "Target Support Files/KeyCommands-tvOS/Info.plist"; 472 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 473 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 474 | MODULEMAP_FILE = "Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS.modulemap"; 475 | MTL_ENABLE_DEBUG_INFO = YES; 476 | PRODUCT_NAME = KeyCommands; 477 | SDKROOT = appletvos; 478 | SKIP_INSTALL = YES; 479 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 480 | SWIFT_VERSION = 3.0; 481 | TARGETED_DEVICE_FAMILY = 3; 482 | TVOS_DEPLOYMENT_TARGET = 9.0; 483 | VERSIONING_SYSTEM = "apple-generic"; 484 | VERSION_INFO_PREFIX = ""; 485 | }; 486 | name = Debug; 487 | }; 488 | 0BAD1445A298919B918561734E9236C4 /* Release */ = { 489 | isa = XCBuildConfiguration; 490 | baseConfigurationReference = F973240D208BACA99F547CAB85300865 /* KeyCommands-iOS.xcconfig */; 491 | buildSettings = { 492 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 493 | CURRENT_PROJECT_VERSION = 1; 494 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 495 | DEFINES_MODULE = YES; 496 | DYLIB_COMPATIBILITY_VERSION = 1; 497 | DYLIB_CURRENT_VERSION = 1; 498 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 499 | ENABLE_STRICT_OBJC_MSGSEND = YES; 500 | GCC_NO_COMMON_BLOCKS = YES; 501 | GCC_PREFIX_HEADER = "Target Support Files/KeyCommands-iOS/KeyCommands-iOS-prefix.pch"; 502 | INFOPLIST_FILE = "Target Support Files/KeyCommands-iOS/Info.plist"; 503 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 504 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 505 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 506 | MODULEMAP_FILE = "Target Support Files/KeyCommands-iOS/KeyCommands-iOS.modulemap"; 507 | MTL_ENABLE_DEBUG_INFO = NO; 508 | PRODUCT_NAME = KeyCommands; 509 | SDKROOT = iphoneos; 510 | SKIP_INSTALL = YES; 511 | SWIFT_VERSION = 3.0; 512 | TARGETED_DEVICE_FAMILY = "1,2"; 513 | VERSIONING_SYSTEM = "apple-generic"; 514 | VERSION_INFO_PREFIX = ""; 515 | }; 516 | name = Release; 517 | }; 518 | 10416C86680E67333AD09DD887BFA2DC /* Debug */ = { 519 | isa = XCBuildConfiguration; 520 | baseConfigurationReference = F973240D208BACA99F547CAB85300865 /* KeyCommands-iOS.xcconfig */; 521 | buildSettings = { 522 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 523 | CURRENT_PROJECT_VERSION = 1; 524 | DEBUG_INFORMATION_FORMAT = dwarf; 525 | DEFINES_MODULE = YES; 526 | DYLIB_COMPATIBILITY_VERSION = 1; 527 | DYLIB_CURRENT_VERSION = 1; 528 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 529 | ENABLE_STRICT_OBJC_MSGSEND = YES; 530 | GCC_NO_COMMON_BLOCKS = YES; 531 | GCC_PREFIX_HEADER = "Target Support Files/KeyCommands-iOS/KeyCommands-iOS-prefix.pch"; 532 | INFOPLIST_FILE = "Target Support Files/KeyCommands-iOS/Info.plist"; 533 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 534 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 535 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 536 | MODULEMAP_FILE = "Target Support Files/KeyCommands-iOS/KeyCommands-iOS.modulemap"; 537 | MTL_ENABLE_DEBUG_INFO = YES; 538 | PRODUCT_NAME = KeyCommands; 539 | SDKROOT = iphoneos; 540 | SKIP_INSTALL = YES; 541 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 542 | SWIFT_VERSION = 3.0; 543 | TARGETED_DEVICE_FAMILY = "1,2"; 544 | VERSIONING_SYSTEM = "apple-generic"; 545 | VERSION_INFO_PREFIX = ""; 546 | }; 547 | name = Debug; 548 | }; 549 | 15898A5D1BF9B0CDCC3169A062479994 /* Debug */ = { 550 | isa = XCBuildConfiguration; 551 | baseConfigurationReference = 1C743C4521C91FC109DBC6F89C89ABE0 /* Pods-KeyCommandsTvOSExample.debug.xcconfig */; 552 | buildSettings = { 553 | CURRENT_PROJECT_VERSION = 1; 554 | DEBUG_INFORMATION_FORMAT = dwarf; 555 | DEFINES_MODULE = YES; 556 | DYLIB_COMPATIBILITY_VERSION = 1; 557 | DYLIB_CURRENT_VERSION = 1; 558 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 559 | ENABLE_STRICT_OBJC_MSGSEND = YES; 560 | GCC_NO_COMMON_BLOCKS = YES; 561 | INFOPLIST_FILE = "Target Support Files/Pods-KeyCommandsTvOSExample/Info.plist"; 562 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 563 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 564 | MACH_O_TYPE = staticlib; 565 | MODULEMAP_FILE = "Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample.modulemap"; 566 | MTL_ENABLE_DEBUG_INFO = YES; 567 | OTHER_LDFLAGS = ""; 568 | OTHER_LIBTOOLFLAGS = ""; 569 | PODS_ROOT = "$(SRCROOT)"; 570 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 571 | PRODUCT_NAME = Pods_KeyCommandsTvOSExample; 572 | SDKROOT = appletvos; 573 | SKIP_INSTALL = YES; 574 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 575 | SWIFT_VERSION = 3.0; 576 | TARGETED_DEVICE_FAMILY = 3; 577 | TVOS_DEPLOYMENT_TARGET = 9.2; 578 | VERSIONING_SYSTEM = "apple-generic"; 579 | VERSION_INFO_PREFIX = ""; 580 | }; 581 | name = Debug; 582 | }; 583 | 6E869224254B856AD2B3D8C09153E1F3 /* Release */ = { 584 | isa = XCBuildConfiguration; 585 | baseConfigurationReference = A7863A3AD04296BFF12DDF0BFB113C2F /* Pods-KeyCommandsIOSExample.release.xcconfig */; 586 | buildSettings = { 587 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 588 | CURRENT_PROJECT_VERSION = 1; 589 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 590 | DEFINES_MODULE = YES; 591 | DYLIB_COMPATIBILITY_VERSION = 1; 592 | DYLIB_CURRENT_VERSION = 1; 593 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 594 | ENABLE_STRICT_OBJC_MSGSEND = YES; 595 | GCC_NO_COMMON_BLOCKS = YES; 596 | INFOPLIST_FILE = "Target Support Files/Pods-KeyCommandsIOSExample/Info.plist"; 597 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 598 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 599 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 600 | MACH_O_TYPE = staticlib; 601 | MODULEMAP_FILE = "Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample.modulemap"; 602 | MTL_ENABLE_DEBUG_INFO = NO; 603 | OTHER_LDFLAGS = ""; 604 | OTHER_LIBTOOLFLAGS = ""; 605 | PODS_ROOT = "$(SRCROOT)"; 606 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 607 | PRODUCT_NAME = Pods_KeyCommandsIOSExample; 608 | SDKROOT = iphoneos; 609 | SKIP_INSTALL = YES; 610 | SWIFT_VERSION = 3.0; 611 | TARGETED_DEVICE_FAMILY = "1,2"; 612 | VERSIONING_SYSTEM = "apple-generic"; 613 | VERSION_INFO_PREFIX = ""; 614 | }; 615 | name = Release; 616 | }; 617 | 8CEC71101235BC7186142F1655D2D3D0 /* Debug */ = { 618 | isa = XCBuildConfiguration; 619 | buildSettings = { 620 | ALWAYS_SEARCH_USER_PATHS = NO; 621 | CLANG_ANALYZER_NONNULL = YES; 622 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 623 | CLANG_CXX_LIBRARY = "libc++"; 624 | CLANG_ENABLE_MODULES = YES; 625 | CLANG_ENABLE_OBJC_ARC = YES; 626 | CLANG_WARN_BOOL_CONVERSION = YES; 627 | CLANG_WARN_CONSTANT_CONVERSION = YES; 628 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 629 | CLANG_WARN_EMPTY_BODY = YES; 630 | CLANG_WARN_ENUM_CONVERSION = YES; 631 | CLANG_WARN_INT_CONVERSION = YES; 632 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 633 | CLANG_WARN_UNREACHABLE_CODE = YES; 634 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 635 | COPY_PHASE_STRIP = NO; 636 | ENABLE_TESTABILITY = YES; 637 | GCC_C_LANGUAGE_STANDARD = gnu99; 638 | GCC_DYNAMIC_NO_PIC = NO; 639 | GCC_OPTIMIZATION_LEVEL = 0; 640 | GCC_PREPROCESSOR_DEFINITIONS = ( 641 | "POD_CONFIGURATION_DEBUG=1", 642 | "DEBUG=1", 643 | "$(inherited)", 644 | ); 645 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 646 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 647 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 648 | GCC_WARN_UNDECLARED_SELECTOR = YES; 649 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 650 | GCC_WARN_UNUSED_FUNCTION = YES; 651 | GCC_WARN_UNUSED_VARIABLE = YES; 652 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 653 | ONLY_ACTIVE_ARCH = YES; 654 | STRIP_INSTALLED_PRODUCT = NO; 655 | SYMROOT = "${SRCROOT}/../build"; 656 | TVOS_DEPLOYMENT_TARGET = 9.2; 657 | }; 658 | name = Debug; 659 | }; 660 | 919F395F72B0BE7DE585B88E1E97A3D3 /* Release */ = { 661 | isa = XCBuildConfiguration; 662 | buildSettings = { 663 | ALWAYS_SEARCH_USER_PATHS = NO; 664 | CLANG_ANALYZER_NONNULL = YES; 665 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 666 | CLANG_CXX_LIBRARY = "libc++"; 667 | CLANG_ENABLE_MODULES = YES; 668 | CLANG_ENABLE_OBJC_ARC = YES; 669 | CLANG_WARN_BOOL_CONVERSION = YES; 670 | CLANG_WARN_CONSTANT_CONVERSION = YES; 671 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 672 | CLANG_WARN_EMPTY_BODY = YES; 673 | CLANG_WARN_ENUM_CONVERSION = YES; 674 | CLANG_WARN_INT_CONVERSION = YES; 675 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 676 | CLANG_WARN_UNREACHABLE_CODE = YES; 677 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 678 | COPY_PHASE_STRIP = YES; 679 | ENABLE_NS_ASSERTIONS = NO; 680 | GCC_C_LANGUAGE_STANDARD = gnu99; 681 | GCC_PREPROCESSOR_DEFINITIONS = ( 682 | "POD_CONFIGURATION_RELEASE=1", 683 | "$(inherited)", 684 | ); 685 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 686 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 687 | GCC_WARN_UNDECLARED_SELECTOR = YES; 688 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 689 | GCC_WARN_UNUSED_FUNCTION = YES; 690 | GCC_WARN_UNUSED_VARIABLE = YES; 691 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 692 | STRIP_INSTALLED_PRODUCT = NO; 693 | SYMROOT = "${SRCROOT}/../build"; 694 | TVOS_DEPLOYMENT_TARGET = 9.2; 695 | VALIDATE_PRODUCT = YES; 696 | }; 697 | name = Release; 698 | }; 699 | 9C7AD93FCC35D7F01463F76E73E681A2 /* Debug */ = { 700 | isa = XCBuildConfiguration; 701 | baseConfigurationReference = 070B808C8E411717F7DB1D73F697C7B0 /* Pods-KeyCommandsIOSExample.debug.xcconfig */; 702 | buildSettings = { 703 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 704 | CURRENT_PROJECT_VERSION = 1; 705 | DEBUG_INFORMATION_FORMAT = dwarf; 706 | DEFINES_MODULE = YES; 707 | DYLIB_COMPATIBILITY_VERSION = 1; 708 | DYLIB_CURRENT_VERSION = 1; 709 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 710 | ENABLE_STRICT_OBJC_MSGSEND = YES; 711 | GCC_NO_COMMON_BLOCKS = YES; 712 | INFOPLIST_FILE = "Target Support Files/Pods-KeyCommandsIOSExample/Info.plist"; 713 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 714 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 715 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 716 | MACH_O_TYPE = staticlib; 717 | MODULEMAP_FILE = "Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample.modulemap"; 718 | MTL_ENABLE_DEBUG_INFO = YES; 719 | OTHER_LDFLAGS = ""; 720 | OTHER_LIBTOOLFLAGS = ""; 721 | PODS_ROOT = "$(SRCROOT)"; 722 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 723 | PRODUCT_NAME = Pods_KeyCommandsIOSExample; 724 | SDKROOT = iphoneos; 725 | SKIP_INSTALL = YES; 726 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 727 | SWIFT_VERSION = 3.0; 728 | TARGETED_DEVICE_FAMILY = "1,2"; 729 | VERSIONING_SYSTEM = "apple-generic"; 730 | VERSION_INFO_PREFIX = ""; 731 | }; 732 | name = Debug; 733 | }; 734 | EC3790E36035FE9BD853604F431E064C /* Release */ = { 735 | isa = XCBuildConfiguration; 736 | baseConfigurationReference = 96260CE53B8AB365F48BEEE55C88A4E3 /* KeyCommands-tvOS.xcconfig */; 737 | buildSettings = { 738 | CURRENT_PROJECT_VERSION = 1; 739 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 740 | DEFINES_MODULE = YES; 741 | DYLIB_COMPATIBILITY_VERSION = 1; 742 | DYLIB_CURRENT_VERSION = 1; 743 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 744 | ENABLE_STRICT_OBJC_MSGSEND = YES; 745 | GCC_NO_COMMON_BLOCKS = YES; 746 | GCC_PREFIX_HEADER = "Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS-prefix.pch"; 747 | INFOPLIST_FILE = "Target Support Files/KeyCommands-tvOS/Info.plist"; 748 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 749 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 750 | MODULEMAP_FILE = "Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS.modulemap"; 751 | MTL_ENABLE_DEBUG_INFO = NO; 752 | PRODUCT_NAME = KeyCommands; 753 | SDKROOT = appletvos; 754 | SKIP_INSTALL = YES; 755 | SWIFT_VERSION = 3.0; 756 | TARGETED_DEVICE_FAMILY = 3; 757 | TVOS_DEPLOYMENT_TARGET = 9.0; 758 | VERSIONING_SYSTEM = "apple-generic"; 759 | VERSION_INFO_PREFIX = ""; 760 | }; 761 | name = Release; 762 | }; 763 | F50A7030B9782DA64D0071E5E2C0DE5D /* Release */ = { 764 | isa = XCBuildConfiguration; 765 | baseConfigurationReference = 9C85A62DEAC709666E7D7DA351D71E87 /* Pods-KeyCommandsTvOSExample.release.xcconfig */; 766 | buildSettings = { 767 | CURRENT_PROJECT_VERSION = 1; 768 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 769 | DEFINES_MODULE = YES; 770 | DYLIB_COMPATIBILITY_VERSION = 1; 771 | DYLIB_CURRENT_VERSION = 1; 772 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 773 | ENABLE_STRICT_OBJC_MSGSEND = YES; 774 | GCC_NO_COMMON_BLOCKS = YES; 775 | INFOPLIST_FILE = "Target Support Files/Pods-KeyCommandsTvOSExample/Info.plist"; 776 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 777 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 778 | MACH_O_TYPE = staticlib; 779 | MODULEMAP_FILE = "Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample.modulemap"; 780 | MTL_ENABLE_DEBUG_INFO = NO; 781 | OTHER_LDFLAGS = ""; 782 | OTHER_LIBTOOLFLAGS = ""; 783 | PODS_ROOT = "$(SRCROOT)"; 784 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 785 | PRODUCT_NAME = Pods_KeyCommandsTvOSExample; 786 | SDKROOT = appletvos; 787 | SKIP_INSTALL = YES; 788 | SWIFT_VERSION = 3.0; 789 | TARGETED_DEVICE_FAMILY = 3; 790 | TVOS_DEPLOYMENT_TARGET = 9.2; 791 | VERSIONING_SYSTEM = "apple-generic"; 792 | VERSION_INFO_PREFIX = ""; 793 | }; 794 | name = Release; 795 | }; 796 | /* End XCBuildConfiguration section */ 797 | 798 | /* Begin XCConfigurationList section */ 799 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 800 | isa = XCConfigurationList; 801 | buildConfigurations = ( 802 | 8CEC71101235BC7186142F1655D2D3D0 /* Debug */, 803 | 919F395F72B0BE7DE585B88E1E97A3D3 /* Release */, 804 | ); 805 | defaultConfigurationIsVisible = 0; 806 | defaultConfigurationName = Release; 807 | }; 808 | 2DEEE8BE942DC786860274531008F028 /* Build configuration list for PBXNativeTarget "KeyCommands-tvOS" */ = { 809 | isa = XCConfigurationList; 810 | buildConfigurations = ( 811 | 032D92E5DA3910D674A3248912072E1F /* Debug */, 812 | EC3790E36035FE9BD853604F431E064C /* Release */, 813 | ); 814 | defaultConfigurationIsVisible = 0; 815 | defaultConfigurationName = Release; 816 | }; 817 | ACC81E2286A42B1F59421A8FB17DEF9A /* Build configuration list for PBXNativeTarget "KeyCommands-iOS" */ = { 818 | isa = XCConfigurationList; 819 | buildConfigurations = ( 820 | 10416C86680E67333AD09DD887BFA2DC /* Debug */, 821 | 0BAD1445A298919B918561734E9236C4 /* Release */, 822 | ); 823 | defaultConfigurationIsVisible = 0; 824 | defaultConfigurationName = Release; 825 | }; 826 | D7DCBD36A7726399D97D8B02B69B632A /* Build configuration list for PBXNativeTarget "Pods-KeyCommandsTvOSExample" */ = { 827 | isa = XCConfigurationList; 828 | buildConfigurations = ( 829 | 15898A5D1BF9B0CDCC3169A062479994 /* Debug */, 830 | F50A7030B9782DA64D0071E5E2C0DE5D /* Release */, 831 | ); 832 | defaultConfigurationIsVisible = 0; 833 | defaultConfigurationName = Release; 834 | }; 835 | FEE001B8A43DDF99056477433F6D9AEF /* Build configuration list for PBXNativeTarget "Pods-KeyCommandsIOSExample" */ = { 836 | isa = XCConfigurationList; 837 | buildConfigurations = ( 838 | 9C7AD93FCC35D7F01463F76E73E681A2 /* Debug */, 839 | 6E869224254B856AD2B3D8C09153E1F3 /* Release */, 840 | ); 841 | defaultConfigurationIsVisible = 0; 842 | defaultConfigurationName = Release; 843 | }; 844 | /* End XCConfigurationList section */ 845 | }; 846 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 847 | } 848 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-iOS/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-iOS/KeyCommands-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_KeyCommands_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_KeyCommands_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-iOS/KeyCommands-iOS-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-iOS/KeyCommands-iOS-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double KeyCommandsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char KeyCommandsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-iOS/KeyCommands-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module KeyCommands { 2 | umbrella header "KeyCommands-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-iOS/KeyCommands-iOS.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/KeyCommands-iOS 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-tvOS/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | UIRequiredDeviceCapabilities 26 | 27 | arm64 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_KeyCommands_tvOS : NSObject 3 | @end 4 | @implementation PodsDummy_KeyCommands_tvOS 5 | @end 6 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double KeyCommandsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char KeyCommandsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module KeyCommands { 2 | umbrella header "KeyCommands-tvOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/KeyCommands-tvOS/KeyCommands-tvOS.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/KeyCommands-tvOS 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## KeyCommands 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2013 Rafał Augustyniak 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy of 11 | this software and associated documentation files (the "Software"), to deal in 12 | the Software without restriction, including without limitation the rights to 13 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 14 | the Software, and to permit persons to whom the Software is furnished to do so, 15 | subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 22 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 23 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 24 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 25 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | The MIT License (MIT) 18 | 19 | Copyright (c) 2013 Rafał Augustyniak 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy of 22 | this software and associated documentation files (the "Software"), to deal in 23 | the Software without restriction, including without limitation the rights to 24 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 25 | the Software, and to permit persons to whom the Software is furnished to do so, 26 | subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 33 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 34 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 35 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 36 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 37 | Title 38 | KeyCommands 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - https://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KeyCommandsIOSExample : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KeyCommandsIOSExample 5 | @end 6 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/KeyCommands-iOS/KeyCommands.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/KeyCommands-iOS/KeyCommands.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_KeyCommandsIOSExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_KeyCommandsIOSExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-iOS/KeyCommands.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KeyCommands" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KeyCommandsIOSExample { 2 | umbrella header "Pods-KeyCommandsIOSExample-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsIOSExample/Pods-KeyCommandsIOSExample.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-iOS/KeyCommands.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KeyCommands" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | UIRequiredDeviceCapabilities 26 | 27 | arm64 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## KeyCommands 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2013 Rafał Augustyniak 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy of 11 | this software and associated documentation files (the "Software"), to deal in 12 | the Software without restriction, including without limitation the rights to 13 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 14 | the Software, and to permit persons to whom the Software is furnished to do so, 15 | subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 22 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 23 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 24 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 25 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | The MIT License (MIT) 18 | 19 | Copyright (c) 2013 Rafał Augustyniak 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy of 22 | this software and associated documentation files (the "Software"), to deal in 23 | the Software without restriction, including without limitation the rights to 24 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 25 | the Software, and to permit persons to whom the Software is furnished to do so, 26 | subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 33 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 34 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 35 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 36 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 37 | Title 38 | KeyCommands 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - https://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KeyCommandsTvOSExample : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KeyCommandsTvOSExample 5 | @end 6 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/KeyCommands-tvOS/KeyCommands.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/KeyCommands-tvOS/KeyCommands.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_KeyCommandsTvOSExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_KeyCommandsTvOSExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-tvOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-tvOS/KeyCommands.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KeyCommands" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KeyCommandsTvOSExample { 2 | umbrella header "Pods-KeyCommandsTvOSExample-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Examples/Pods/Target Support Files/Pods-KeyCommandsTvOSExample/Pods-KeyCommandsTvOSExample.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-tvOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KeyCommands-tvOS/KeyCommands.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KeyCommands" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT}/Pods 11 | -------------------------------------------------------------------------------- /Examples/Shared/UIAlertController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Alert.swift 3 | // KeyCommandsExamples 4 | // 5 | // Created by Rafal Augustyniak on 02/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIAlertController { 12 | 13 | static func presentKeyPressedAlertInAlertViewController(inViewController viewController: UIViewController, message: String) { 14 | let alertController = UIAlertController.init(title: "Combination of keys pressed!", message: message, preferredStyle: .alert) 15 | alertController.addAction(UIAlertAction.init(title: "OK", style: .default, handler: nil)) 16 | viewController.present(alertController, animated: true, completion: nil) 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /KeyCommands.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KeyCommands", 3 | "version": "1.0.0", 4 | "summary": "RATreeView provide you a great support to display the tree structures on iOS.", 5 | "homepage": "https://github.com/Augustyniak/KeyCommands", 6 | "screenshots": "https://raw.github.com/Augustyniak/KeyCommands/master/Screens/animation.gif", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENCE.md" 10 | }, 11 | "authors": { 12 | "Rafal Augustyniak": "rafalaugustyniak@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/Augustyniak/KeyCommands.git", 16 | "tag": "v1.0.0" 17 | }, 18 | "platforms": { 19 | "ios": "9.0", 20 | "tvos": "9.0" 21 | }, 22 | "source_files": "KeyCommands/**/*.{swift}", 23 | "public_header_files": "KeyCommands/KeyCommands/KeyCommands.h", 24 | "requires_arc": true 25 | } 26 | -------------------------------------------------------------------------------- /KeyCommands/Framework/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /KeyCommands/Framework/KeyCommands.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double KeyCommandsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char KeyCommandsVersionString[]; 6 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands-iOS/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands-iOS/KeyCommands-iOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // KeyCommands-iOS.h 3 | // KeyCommands-iOS 4 | // 5 | // Created by Rafal Augustyniak on 02/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for KeyCommands-iOS. 12 | FOUNDATION_EXPORT double KeyCommands_iOSVersionNumber; 13 | 14 | //! Project version string for KeyCommands-iOS. 15 | FOUNDATION_EXPORT const unsigned char KeyCommands_iOSVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands-tvOS/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands-tvOS/KeyCommands-tvOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // KeyCommands-tvOS.h 3 | // KeyCommands-tvOS 4 | // 5 | // Created by Rafal Augustyniak on 02/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for KeyCommands-tvOS. 12 | FOUNDATION_EXPORT double KeyCommands_tvOSVersionNumber; 13 | 14 | //! Project version string for KeyCommands-tvOS. 15 | FOUNDATION_EXPORT const unsigned char KeyCommands_tvOSVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0641F9A21D7A13C5002BE1B2 /* KeyCommands-iOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 0641F9A11D7A13C5002BE1B2 /* KeyCommands-iOS.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 0641F9AF1D7A13CF002BE1B2 /* KeyCommands-tvOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 0641F9AE1D7A13CF002BE1B2 /* KeyCommands-tvOS.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 0641F9B41D7A13E0002BE1B2 /* KeyCommands.swift in Sources */ = {isa = PBXBuildFile; fileRef = 068BE3D41D785DAC007BC7CC /* KeyCommands.swift */; }; 13 | 0641F9B51D7A13E0002BE1B2 /* KeyCommands.swift in Sources */ = {isa = PBXBuildFile; fileRef = 068BE3D41D785DAC007BC7CC /* KeyCommands.swift */; }; 14 | 0641F9B61D7A13E3002BE1B2 /* KeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F9E3B81D78D4C200D4ECD6 /* KeyCommands.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 0641F9B71D7A13E4002BE1B2 /* KeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F9E3B81D78D4C200D4ECD6 /* KeyCommands.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 068BE3D51D785DAC007BC7CC /* KeyCommands.swift in Sources */ = {isa = PBXBuildFile; fileRef = 068BE3D41D785DAC007BC7CC /* KeyCommands.swift */; }; 17 | 068BE4121D78A534007BC7CC /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 068BE4101D78A534007BC7CC /* Info.plist */; }; 18 | 06F9E3B91D78D4C200D4ECD6 /* KeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F9E3B81D78D4C200D4ECD6 /* KeyCommands.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXFileReference section */ 22 | 0641F99F1D7A13C5002BE1B2 /* KeyCommandsIOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeyCommandsIOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 23 | 0641F9A11D7A13C5002BE1B2 /* KeyCommands-iOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-iOS.h"; sourceTree = ""; }; 24 | 0641F9A31D7A13C5002BE1B2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 25 | 0641F9AC1D7A13CF002BE1B2 /* KeyCommandsTvOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeyCommandsTvOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 26 | 0641F9AE1D7A13CF002BE1B2 /* KeyCommands-tvOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-tvOS.h"; sourceTree = ""; }; 27 | 0641F9B01D7A13CF002BE1B2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 28 | 068BE3891D785792007BC7CC /* KeyCommands.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeyCommands.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 29 | 068BE3D41D785DAC007BC7CC /* KeyCommands.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyCommands.swift; sourceTree = ""; }; 30 | 068BE4101D78A534007BC7CC /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 31 | 06F9E3B81D78D4C200D4ECD6 /* KeyCommands.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyCommands.h; sourceTree = ""; }; 32 | /* End PBXFileReference section */ 33 | 34 | /* Begin PBXFrameworksBuildPhase section */ 35 | 0641F99B1D7A13C5002BE1B2 /* Frameworks */ = { 36 | isa = PBXFrameworksBuildPhase; 37 | buildActionMask = 2147483647; 38 | files = ( 39 | ); 40 | runOnlyForDeploymentPostprocessing = 0; 41 | }; 42 | 0641F9A81D7A13CF002BE1B2 /* Frameworks */ = { 43 | isa = PBXFrameworksBuildPhase; 44 | buildActionMask = 2147483647; 45 | files = ( 46 | ); 47 | runOnlyForDeploymentPostprocessing = 0; 48 | }; 49 | 068BE3851D785792007BC7CC /* Frameworks */ = { 50 | isa = PBXFrameworksBuildPhase; 51 | buildActionMask = 2147483647; 52 | files = ( 53 | ); 54 | runOnlyForDeploymentPostprocessing = 0; 55 | }; 56 | /* End PBXFrameworksBuildPhase section */ 57 | 58 | /* Begin PBXGroup section */ 59 | 0641F9A01D7A13C5002BE1B2 /* KeyCommands-iOS */ = { 60 | isa = PBXGroup; 61 | children = ( 62 | 0641F9A11D7A13C5002BE1B2 /* KeyCommands-iOS.h */, 63 | 0641F9A31D7A13C5002BE1B2 /* Info.plist */, 64 | ); 65 | path = "KeyCommands-iOS"; 66 | sourceTree = ""; 67 | }; 68 | 0641F9AD1D7A13CF002BE1B2 /* KeyCommands-tvOS */ = { 69 | isa = PBXGroup; 70 | children = ( 71 | 0641F9AE1D7A13CF002BE1B2 /* KeyCommands-tvOS.h */, 72 | 0641F9B01D7A13CF002BE1B2 /* Info.plist */, 73 | ); 74 | path = "KeyCommands-tvOS"; 75 | sourceTree = ""; 76 | }; 77 | 068BE37F1D785792007BC7CC = { 78 | isa = PBXGroup; 79 | children = ( 80 | 068BE38B1D785792007BC7CC /* KeyCommands */, 81 | 0641F9A01D7A13C5002BE1B2 /* KeyCommands-iOS */, 82 | 0641F9AD1D7A13CF002BE1B2 /* KeyCommands-tvOS */, 83 | 068BE38A1D785792007BC7CC /* Products */, 84 | ); 85 | sourceTree = ""; 86 | }; 87 | 068BE38A1D785792007BC7CC /* Products */ = { 88 | isa = PBXGroup; 89 | children = ( 90 | 068BE3891D785792007BC7CC /* KeyCommands.framework */, 91 | 0641F99F1D7A13C5002BE1B2 /* KeyCommandsIOS.framework */, 92 | 0641F9AC1D7A13CF002BE1B2 /* KeyCommandsTvOS.framework */, 93 | ); 94 | name = Products; 95 | sourceTree = ""; 96 | }; 97 | 068BE38B1D785792007BC7CC /* KeyCommands */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 068BE3D41D785DAC007BC7CC /* KeyCommands.swift */, 101 | 068BE40F1D78A534007BC7CC /* Framework */, 102 | ); 103 | path = KeyCommands; 104 | sourceTree = ""; 105 | }; 106 | 068BE40F1D78A534007BC7CC /* Framework */ = { 107 | isa = PBXGroup; 108 | children = ( 109 | 06F9E3B81D78D4C200D4ECD6 /* KeyCommands.h */, 110 | 068BE4101D78A534007BC7CC /* Info.plist */, 111 | ); 112 | path = Framework; 113 | sourceTree = ""; 114 | }; 115 | /* End PBXGroup section */ 116 | 117 | /* Begin PBXHeadersBuildPhase section */ 118 | 0641F99C1D7A13C5002BE1B2 /* Headers */ = { 119 | isa = PBXHeadersBuildPhase; 120 | buildActionMask = 2147483647; 121 | files = ( 122 | 0641F9B61D7A13E3002BE1B2 /* KeyCommands.h in Headers */, 123 | 0641F9A21D7A13C5002BE1B2 /* KeyCommands-iOS.h in Headers */, 124 | ); 125 | runOnlyForDeploymentPostprocessing = 0; 126 | }; 127 | 0641F9A91D7A13CF002BE1B2 /* Headers */ = { 128 | isa = PBXHeadersBuildPhase; 129 | buildActionMask = 2147483647; 130 | files = ( 131 | 0641F9B71D7A13E4002BE1B2 /* KeyCommands.h in Headers */, 132 | 0641F9AF1D7A13CF002BE1B2 /* KeyCommands-tvOS.h in Headers */, 133 | ); 134 | runOnlyForDeploymentPostprocessing = 0; 135 | }; 136 | 068BE3861D785792007BC7CC /* Headers */ = { 137 | isa = PBXHeadersBuildPhase; 138 | buildActionMask = 2147483647; 139 | files = ( 140 | 06F9E3B91D78D4C200D4ECD6 /* KeyCommands.h in Headers */, 141 | ); 142 | runOnlyForDeploymentPostprocessing = 0; 143 | }; 144 | /* End PBXHeadersBuildPhase section */ 145 | 146 | /* Begin PBXNativeTarget section */ 147 | 0641F99E1D7A13C5002BE1B2 /* KeyCommandsIOS */ = { 148 | isa = PBXNativeTarget; 149 | buildConfigurationList = 0641F9A61D7A13C5002BE1B2 /* Build configuration list for PBXNativeTarget "KeyCommandsIOS" */; 150 | buildPhases = ( 151 | 0641F99A1D7A13C5002BE1B2 /* Sources */, 152 | 0641F99B1D7A13C5002BE1B2 /* Frameworks */, 153 | 0641F99C1D7A13C5002BE1B2 /* Headers */, 154 | 0641F99D1D7A13C5002BE1B2 /* Resources */, 155 | ); 156 | buildRules = ( 157 | ); 158 | dependencies = ( 159 | ); 160 | name = KeyCommandsIOS; 161 | productName = "KeyCommands-iOS"; 162 | productReference = 0641F99F1D7A13C5002BE1B2 /* KeyCommandsIOS.framework */; 163 | productType = "com.apple.product-type.framework"; 164 | }; 165 | 0641F9AB1D7A13CF002BE1B2 /* KeyCommandsTvOS */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 0641F9B11D7A13CF002BE1B2 /* Build configuration list for PBXNativeTarget "KeyCommandsTvOS" */; 168 | buildPhases = ( 169 | 0641F9A71D7A13CF002BE1B2 /* Sources */, 170 | 0641F9A81D7A13CF002BE1B2 /* Frameworks */, 171 | 0641F9A91D7A13CF002BE1B2 /* Headers */, 172 | 0641F9AA1D7A13CF002BE1B2 /* Resources */, 173 | ); 174 | buildRules = ( 175 | ); 176 | dependencies = ( 177 | ); 178 | name = KeyCommandsTvOS; 179 | productName = "KeyCommands-tvOS"; 180 | productReference = 0641F9AC1D7A13CF002BE1B2 /* KeyCommandsTvOS.framework */; 181 | productType = "com.apple.product-type.framework"; 182 | }; 183 | 068BE3881D785792007BC7CC /* KeyCommands */ = { 184 | isa = PBXNativeTarget; 185 | buildConfigurationList = 068BE3911D785792007BC7CC /* Build configuration list for PBXNativeTarget "KeyCommands" */; 186 | buildPhases = ( 187 | 068BE3841D785792007BC7CC /* Sources */, 188 | 068BE3851D785792007BC7CC /* Frameworks */, 189 | 068BE3861D785792007BC7CC /* Headers */, 190 | 068BE3871D785792007BC7CC /* Resources */, 191 | ); 192 | buildRules = ( 193 | ); 194 | dependencies = ( 195 | ); 196 | name = KeyCommands; 197 | productName = KeyCommands; 198 | productReference = 068BE3891D785792007BC7CC /* KeyCommands.framework */; 199 | productType = "com.apple.product-type.framework"; 200 | }; 201 | /* End PBXNativeTarget section */ 202 | 203 | /* Begin PBXProject section */ 204 | 068BE3801D785792007BC7CC /* Project object */ = { 205 | isa = PBXProject; 206 | attributes = { 207 | LastUpgradeCheck = 0730; 208 | ORGANIZATIONNAME = "Rafał Augustyniak"; 209 | TargetAttributes = { 210 | 0641F99E1D7A13C5002BE1B2 = { 211 | CreatedOnToolsVersion = 7.3.1; 212 | LastSwiftMigration = 0800; 213 | }; 214 | 0641F9AB1D7A13CF002BE1B2 = { 215 | CreatedOnToolsVersion = 7.3.1; 216 | LastSwiftMigration = 0800; 217 | }; 218 | 068BE3881D785792007BC7CC = { 219 | CreatedOnToolsVersion = 7.3.1; 220 | }; 221 | }; 222 | }; 223 | buildConfigurationList = 068BE3831D785792007BC7CC /* Build configuration list for PBXProject "KeyCommands" */; 224 | compatibilityVersion = "Xcode 3.2"; 225 | developmentRegion = English; 226 | hasScannedForEncodings = 0; 227 | knownRegions = ( 228 | en, 229 | ); 230 | mainGroup = 068BE37F1D785792007BC7CC; 231 | productRefGroup = 068BE38A1D785792007BC7CC /* Products */; 232 | projectDirPath = ""; 233 | projectRoot = ""; 234 | targets = ( 235 | 068BE3881D785792007BC7CC /* KeyCommands */, 236 | 0641F99E1D7A13C5002BE1B2 /* KeyCommandsIOS */, 237 | 0641F9AB1D7A13CF002BE1B2 /* KeyCommandsTvOS */, 238 | ); 239 | }; 240 | /* End PBXProject section */ 241 | 242 | /* Begin PBXResourcesBuildPhase section */ 243 | 0641F99D1D7A13C5002BE1B2 /* Resources */ = { 244 | isa = PBXResourcesBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | ); 248 | runOnlyForDeploymentPostprocessing = 0; 249 | }; 250 | 0641F9AA1D7A13CF002BE1B2 /* Resources */ = { 251 | isa = PBXResourcesBuildPhase; 252 | buildActionMask = 2147483647; 253 | files = ( 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | }; 257 | 068BE3871D785792007BC7CC /* Resources */ = { 258 | isa = PBXResourcesBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | 068BE4121D78A534007BC7CC /* Info.plist in Resources */, 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | }; 265 | /* End PBXResourcesBuildPhase section */ 266 | 267 | /* Begin PBXSourcesBuildPhase section */ 268 | 0641F99A1D7A13C5002BE1B2 /* Sources */ = { 269 | isa = PBXSourcesBuildPhase; 270 | buildActionMask = 2147483647; 271 | files = ( 272 | 0641F9B41D7A13E0002BE1B2 /* KeyCommands.swift in Sources */, 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | }; 276 | 0641F9A71D7A13CF002BE1B2 /* Sources */ = { 277 | isa = PBXSourcesBuildPhase; 278 | buildActionMask = 2147483647; 279 | files = ( 280 | 0641F9B51D7A13E0002BE1B2 /* KeyCommands.swift in Sources */, 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | }; 284 | 068BE3841D785792007BC7CC /* Sources */ = { 285 | isa = PBXSourcesBuildPhase; 286 | buildActionMask = 2147483647; 287 | files = ( 288 | 068BE3D51D785DAC007BC7CC /* KeyCommands.swift in Sources */, 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | }; 292 | /* End PBXSourcesBuildPhase section */ 293 | 294 | /* Begin XCBuildConfiguration section */ 295 | 0641F9A41D7A13C5002BE1B2 /* Debug */ = { 296 | isa = XCBuildConfiguration; 297 | buildSettings = { 298 | APPLICATION_EXTENSION_API_ONLY = YES; 299 | DEFINES_MODULE = YES; 300 | DYLIB_COMPATIBILITY_VERSION = 1; 301 | DYLIB_CURRENT_VERSION = 1; 302 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 303 | INFOPLIST_FILE = "KeyCommands-iOS/Info.plist"; 304 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 305 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 306 | PRODUCT_BUNDLE_IDENTIFIER = "com.augustyniak.KeyCommands-iOS"; 307 | PRODUCT_NAME = "$(TARGET_NAME)"; 308 | SDKROOT = iphoneos; 309 | SKIP_INSTALL = YES; 310 | SWIFT_VERSION = 3.0; 311 | TARGETED_DEVICE_FAMILY = 4; 312 | WATCHOS_DEPLOYMENT_TARGET = 2.2; 313 | }; 314 | name = Debug; 315 | }; 316 | 0641F9A51D7A13C5002BE1B2 /* Release */ = { 317 | isa = XCBuildConfiguration; 318 | buildSettings = { 319 | APPLICATION_EXTENSION_API_ONLY = YES; 320 | DEFINES_MODULE = YES; 321 | DYLIB_COMPATIBILITY_VERSION = 1; 322 | DYLIB_CURRENT_VERSION = 1; 323 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 324 | INFOPLIST_FILE = "KeyCommands-iOS/Info.plist"; 325 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 326 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 327 | PRODUCT_BUNDLE_IDENTIFIER = "com.augustyniak.KeyCommands-iOS"; 328 | PRODUCT_NAME = "$(TARGET_NAME)"; 329 | SDKROOT = iphoneos; 330 | SKIP_INSTALL = YES; 331 | SWIFT_VERSION = 3.0; 332 | TARGETED_DEVICE_FAMILY = 4; 333 | WATCHOS_DEPLOYMENT_TARGET = 2.2; 334 | }; 335 | name = Release; 336 | }; 337 | 0641F9B21D7A13CF002BE1B2 /* Debug */ = { 338 | isa = XCBuildConfiguration; 339 | buildSettings = { 340 | DEFINES_MODULE = YES; 341 | DYLIB_COMPATIBILITY_VERSION = 1; 342 | DYLIB_CURRENT_VERSION = 1; 343 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 344 | INFOPLIST_FILE = "KeyCommands-tvOS/Info.plist"; 345 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 346 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 347 | PRODUCT_BUNDLE_IDENTIFIER = "com.augustyniak.KeyCommands-tvOS"; 348 | PRODUCT_NAME = "$(TARGET_NAME)"; 349 | SDKROOT = appletvos; 350 | SKIP_INSTALL = YES; 351 | SWIFT_VERSION = 3.0; 352 | TARGETED_DEVICE_FAMILY = 3; 353 | TVOS_DEPLOYMENT_TARGET = 9.2; 354 | }; 355 | name = Debug; 356 | }; 357 | 0641F9B31D7A13CF002BE1B2 /* Release */ = { 358 | isa = XCBuildConfiguration; 359 | buildSettings = { 360 | DEFINES_MODULE = YES; 361 | DYLIB_COMPATIBILITY_VERSION = 1; 362 | DYLIB_CURRENT_VERSION = 1; 363 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 364 | INFOPLIST_FILE = "KeyCommands-tvOS/Info.plist"; 365 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 366 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 367 | PRODUCT_BUNDLE_IDENTIFIER = "com.augustyniak.KeyCommands-tvOS"; 368 | PRODUCT_NAME = "$(TARGET_NAME)"; 369 | SDKROOT = appletvos; 370 | SKIP_INSTALL = YES; 371 | SWIFT_VERSION = 3.0; 372 | TARGETED_DEVICE_FAMILY = 3; 373 | TVOS_DEPLOYMENT_TARGET = 9.2; 374 | }; 375 | name = Release; 376 | }; 377 | 068BE38F1D785792007BC7CC /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_ANALYZER_NONNULL = YES; 382 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 383 | CLANG_CXX_LIBRARY = "libc++"; 384 | CLANG_ENABLE_MODULES = YES; 385 | CLANG_ENABLE_OBJC_ARC = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_CONSTANT_CONVERSION = YES; 388 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 389 | CLANG_WARN_EMPTY_BODY = YES; 390 | CLANG_WARN_ENUM_CONVERSION = YES; 391 | CLANG_WARN_INT_CONVERSION = YES; 392 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 393 | CLANG_WARN_UNREACHABLE_CODE = YES; 394 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 395 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 396 | COPY_PHASE_STRIP = NO; 397 | CURRENT_PROJECT_VERSION = 1; 398 | DEBUG_INFORMATION_FORMAT = dwarf; 399 | ENABLE_STRICT_OBJC_MSGSEND = YES; 400 | ENABLE_TESTABILITY = YES; 401 | GCC_C_LANGUAGE_STANDARD = gnu99; 402 | GCC_DYNAMIC_NO_PIC = NO; 403 | GCC_NO_COMMON_BLOCKS = YES; 404 | GCC_OPTIMIZATION_LEVEL = 0; 405 | GCC_PREPROCESSOR_DEFINITIONS = ( 406 | "DEBUG=1", 407 | "$(inherited)", 408 | ); 409 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 410 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 411 | GCC_WARN_UNDECLARED_SELECTOR = YES; 412 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 413 | GCC_WARN_UNUSED_FUNCTION = YES; 414 | GCC_WARN_UNUSED_VARIABLE = YES; 415 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 416 | MTL_ENABLE_DEBUG_INFO = YES; 417 | ONLY_ACTIVE_ARCH = YES; 418 | SDKROOT = iphoneos; 419 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 420 | TARGETED_DEVICE_FAMILY = "1,2"; 421 | VERSIONING_SYSTEM = "apple-generic"; 422 | VERSION_INFO_PREFIX = ""; 423 | }; 424 | name = Debug; 425 | }; 426 | 068BE3901D785792007BC7CC /* Release */ = { 427 | isa = XCBuildConfiguration; 428 | buildSettings = { 429 | ALWAYS_SEARCH_USER_PATHS = NO; 430 | CLANG_ANALYZER_NONNULL = YES; 431 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 432 | CLANG_CXX_LIBRARY = "libc++"; 433 | CLANG_ENABLE_MODULES = YES; 434 | CLANG_ENABLE_OBJC_ARC = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_CONSTANT_CONVERSION = YES; 437 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 438 | CLANG_WARN_EMPTY_BODY = YES; 439 | CLANG_WARN_ENUM_CONVERSION = YES; 440 | CLANG_WARN_INT_CONVERSION = YES; 441 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 442 | CLANG_WARN_UNREACHABLE_CODE = YES; 443 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 444 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 445 | COPY_PHASE_STRIP = NO; 446 | CURRENT_PROJECT_VERSION = 1; 447 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 448 | ENABLE_NS_ASSERTIONS = NO; 449 | ENABLE_STRICT_OBJC_MSGSEND = YES; 450 | GCC_C_LANGUAGE_STANDARD = gnu99; 451 | GCC_NO_COMMON_BLOCKS = YES; 452 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 453 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 454 | GCC_WARN_UNDECLARED_SELECTOR = YES; 455 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 456 | GCC_WARN_UNUSED_FUNCTION = YES; 457 | GCC_WARN_UNUSED_VARIABLE = YES; 458 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 459 | MTL_ENABLE_DEBUG_INFO = NO; 460 | SDKROOT = iphoneos; 461 | TARGETED_DEVICE_FAMILY = "1,2"; 462 | VALIDATE_PRODUCT = YES; 463 | VERSIONING_SYSTEM = "apple-generic"; 464 | VERSION_INFO_PREFIX = ""; 465 | }; 466 | name = Release; 467 | }; 468 | 068BE3921D785792007BC7CC /* Debug */ = { 469 | isa = XCBuildConfiguration; 470 | buildSettings = { 471 | CLANG_ENABLE_MODULES = YES; 472 | DEFINES_MODULE = YES; 473 | DYLIB_COMPATIBILITY_VERSION = 1; 474 | DYLIB_CURRENT_VERSION = 1; 475 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 476 | GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES; 477 | GCC_WARN_UNDECLARED_SELECTOR = YES; 478 | HEADER_SEARCH_PATHS = ""; 479 | INFOPLIST_FILE = Framework/Info.plist; 480 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 481 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 482 | MODULEMAP_PRIVATE_FILE = "$(SRCROOT)/KeyCommands/KeyCommands.private.modulemap"; 483 | PRODUCT_BUNDLE_IDENTIFIER = com.augustyniak.KeyCommands; 484 | PRODUCT_NAME = "$(TARGET_NAME)"; 485 | SKIP_INSTALL = YES; 486 | SWIFT_INCLUDE_PATHS = "$(SRCROOT)/KeyCommandsPrivate"; 487 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 488 | }; 489 | name = Debug; 490 | }; 491 | 068BE3931D785792007BC7CC /* Release */ = { 492 | isa = XCBuildConfiguration; 493 | buildSettings = { 494 | CLANG_ENABLE_MODULES = YES; 495 | DEFINES_MODULE = YES; 496 | DYLIB_COMPATIBILITY_VERSION = 1; 497 | DYLIB_CURRENT_VERSION = 1; 498 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 499 | GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES; 500 | GCC_WARN_UNDECLARED_SELECTOR = YES; 501 | HEADER_SEARCH_PATHS = ""; 502 | INFOPLIST_FILE = Framework/Info.plist; 503 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 504 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 505 | MODULEMAP_PRIVATE_FILE = "$(SRCROOT)/KeyCommands/KeyCommands.private.modulemap"; 506 | PRODUCT_BUNDLE_IDENTIFIER = com.augustyniak.KeyCommands; 507 | PRODUCT_NAME = "$(TARGET_NAME)"; 508 | SKIP_INSTALL = YES; 509 | SWIFT_INCLUDE_PATHS = "$(SRCROOT)/KeyCommandsPrivate"; 510 | }; 511 | name = Release; 512 | }; 513 | /* End XCBuildConfiguration section */ 514 | 515 | /* Begin XCConfigurationList section */ 516 | 0641F9A61D7A13C5002BE1B2 /* Build configuration list for PBXNativeTarget "KeyCommandsIOS" */ = { 517 | isa = XCConfigurationList; 518 | buildConfigurations = ( 519 | 0641F9A41D7A13C5002BE1B2 /* Debug */, 520 | 0641F9A51D7A13C5002BE1B2 /* Release */, 521 | ); 522 | defaultConfigurationIsVisible = 0; 523 | defaultConfigurationName = Release; 524 | }; 525 | 0641F9B11D7A13CF002BE1B2 /* Build configuration list for PBXNativeTarget "KeyCommandsTvOS" */ = { 526 | isa = XCConfigurationList; 527 | buildConfigurations = ( 528 | 0641F9B21D7A13CF002BE1B2 /* Debug */, 529 | 0641F9B31D7A13CF002BE1B2 /* Release */, 530 | ); 531 | defaultConfigurationIsVisible = 0; 532 | defaultConfigurationName = Release; 533 | }; 534 | 068BE3831D785792007BC7CC /* Build configuration list for PBXProject "KeyCommands" */ = { 535 | isa = XCConfigurationList; 536 | buildConfigurations = ( 537 | 068BE38F1D785792007BC7CC /* Debug */, 538 | 068BE3901D785792007BC7CC /* Release */, 539 | ); 540 | defaultConfigurationIsVisible = 0; 541 | defaultConfigurationName = Release; 542 | }; 543 | 068BE3911D785792007BC7CC /* Build configuration list for PBXNativeTarget "KeyCommands" */ = { 544 | isa = XCConfigurationList; 545 | buildConfigurations = ( 546 | 068BE3921D785792007BC7CC /* Debug */, 547 | 068BE3931D785792007BC7CC /* Release */, 548 | ); 549 | defaultConfigurationIsVisible = 0; 550 | defaultConfigurationName = Release; 551 | }; 552 | /* End XCConfigurationList section */ 553 | }; 554 | rootObject = 068BE3801D785792007BC7CC /* Project object */; 555 | } 556 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands/Framework/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 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands/Framework/KeyCommands-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double KeyCommandsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char KeyCommandsVersionString[]; 6 | 7 | #import 8 | 9 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands/Framework/KeyCommands.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double KeyCommandsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char KeyCommandsVersionString[]; 6 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands/KeyCommands.private.modulemap: -------------------------------------------------------------------------------- 1 | module KeyCommandsPrivate { 2 | export * 3 | } 4 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommands/KeyCommands.swift: -------------------------------------------------------------------------------- 1 | // 2 | // KeyCommands.swift 3 | // KeyCommands 4 | // 5 | // Created by Rafal Augustyniak on 01/09/16. 6 | // Copyright © 2016 Rafał Augustyniak. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | 12 | #if (arch(i386) || arch(x86_64)) && (os(iOS) || os(tvOS)) 13 | struct KeyActionableCommand { 14 | fileprivate let keyCommand: UIKeyCommand 15 | fileprivate let actionBlock: () -> () 16 | 17 | func matches(_ input: String, modifierFlags: UIKeyModifierFlags) -> Bool { 18 | return keyCommand.input == input && keyCommand.modifierFlags == modifierFlags 19 | } 20 | } 21 | 22 | func == (lhs: KeyActionableCommand, rhs: KeyActionableCommand) -> Bool { 23 | return lhs.keyCommand.input == rhs.keyCommand.input && lhs.keyCommand.modifierFlags == rhs.keyCommand.modifierFlags 24 | } 25 | 26 | 27 | public enum KeyCommands { 28 | private static var __once: () = { 29 | ExchangeImplementations(class: UIApplication.self, originalSelector: #selector(getter: UIResponder.keyCommands), swizzledSelector: #selector(UIApplication.KYC_keyCommands)); 30 | }() 31 | fileprivate struct Static { 32 | static var token: Int = 0 33 | } 34 | 35 | 36 | struct KeyCommandsRegister { 37 | static var sharedInstance = KeyCommandsRegister() 38 | fileprivate var actionableKeyCommands = [KeyActionableCommand]() 39 | } 40 | 41 | /** 42 | 43 | Registers key command for specified input and modifier flags. Unregisters previously registered key commands 44 | matching provided input and modifier flags. Does nothing when application runs on actual device. 45 | 46 | - parameter input: Key for which key command should be registered. 47 | 48 | - parameter modifierFlags: Combination of modifier flags for which key command should be registered. 49 | 50 | */ 51 | public static func register(input: String, modifierFlags: UIKeyModifierFlags, action: @escaping () -> ()) { 52 | _ = KeyCommands.__once 53 | 54 | let keyCommand = UIKeyCommand(input: input, modifierFlags: modifierFlags, action: #selector(UIApplication.KYC_handleKeyCommand(_:)), discoverabilityTitle: "") 55 | let actionableKeyCommand = KeyActionableCommand(keyCommand: keyCommand, actionBlock: action) 56 | 57 | let index = KeyCommandsRegister.sharedInstance.actionableKeyCommands.index(where: { return $0 == actionableKeyCommand }) 58 | if let index = index { 59 | KeyCommandsRegister.sharedInstance.actionableKeyCommands.remove(at: index) 60 | } 61 | 62 | KeyCommandsRegister.sharedInstance.actionableKeyCommands.append(actionableKeyCommand) 63 | } 64 | 65 | /** 66 | 67 | Unregisters key command matching specified input and modifier flags. Does nothing when application runs on actual device. 68 | 69 | - parameter input: Key of key command that should be unregistered. 70 | 71 | - parameter modifierFlags: Combination of modifier flags of key command that should be unregistered. 72 | 73 | */ 74 | public static func unregister(input: String, modifierFlags: UIKeyModifierFlags) { 75 | let index = KeyCommandsRegister.sharedInstance.actionableKeyCommands.index(where: { return $0.matches(input, modifierFlags: modifierFlags) }) 76 | if let index = index { 77 | KeyCommandsRegister.sharedInstance.actionableKeyCommands.remove(at: index) 78 | } 79 | } 80 | } 81 | 82 | 83 | extension UIApplication { 84 | dynamic func KYC_keyCommands() -> [UIKeyCommand] { 85 | return KeyCommands.KeyCommandsRegister.sharedInstance.actionableKeyCommands.map({ return $0.keyCommand }) 86 | } 87 | 88 | func KYC_handleKeyCommand(_ keyCommand: UIKeyCommand) { 89 | for command in KeyCommands.KeyCommandsRegister.sharedInstance.actionableKeyCommands { 90 | if command.matches(keyCommand.input, modifierFlags: keyCommand.modifierFlags) { 91 | command.actionBlock() 92 | } 93 | } 94 | } 95 | } 96 | 97 | 98 | func ExchangeImplementations(class classs: AnyClass, originalSelector: Selector, swizzledSelector: Selector ){ 99 | let originalMethod = class_getInstanceMethod(classs, originalSelector) 100 | let originalMethodImplementation = method_getImplementation(originalMethod) 101 | let originalMethodTypeEncoding = method_getTypeEncoding(originalMethod) 102 | 103 | let swizzledMethod = class_getInstanceMethod(classs, swizzledSelector) 104 | let swizzledMethodImplementation = method_getImplementation(swizzledMethod) 105 | let swizzledMethodTypeEncoding = method_getTypeEncoding(swizzledMethod) 106 | 107 | let didAddMethod = class_addMethod(classs, originalSelector, swizzledMethodImplementation, swizzledMethodTypeEncoding) 108 | if didAddMethod { 109 | class_replaceMethod(classs, swizzledSelector, originalMethodImplementation, originalMethodTypeEncoding) 110 | } else { 111 | method_exchangeImplementations(originalMethod, swizzledMethod) 112 | } 113 | } 114 | 115 | #else 116 | 117 | public enum KeyCommands { 118 | /** 119 | 120 | Registers key command for specified input and modifier flags. Unregisters previously registered key commands 121 | matching provided input and modifier flags. Does nothing when application runs on actual device. 122 | 123 | - parameter input: Key for which key command should be registered. 124 | 125 | - parameter modifierFlags: Combination of modifier flags for which key command should be registered. 126 | 127 | */ 128 | public static func registerKeyCommand(input: String, modifierFlags: UIKeyModifierFlags, action: () -> ()) {} 129 | 130 | /** 131 | 132 | Unregisters key command matching specified input and modifier flags. Does nothing when application runs on actual device. 133 | 134 | - parameter input: Key of key command that should be unregistered. 135 | 136 | - parameter modifierFlags: Combination of modifier flags of key command that should be unregistered. 137 | 138 | */ 139 | public static func unregisterKeyCommand(input: String, modifierFlags: UIKeyModifierFlags) {} 140 | } 141 | 142 | #endif 143 | -------------------------------------------------------------------------------- /KeyCommands/KeyCommandsPrivate/module.modulemap: -------------------------------------------------------------------------------- 1 | 2 | module KeyCommandsPrivate { 3 | header "../KeyCommands/KYCSelectorAdditions.h" 4 | export * 5 | } -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 Rafał Augustyniak 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KeyCommands 2 | 3 | 👷 Project created and maintained by [Rafał Augustyniak](http://augustyniak.me). You can find me on twitter ([@RaAugustyniak](https://twitter.com/RaAugustyniak)). 4 | 5 | ⚠️️ See my post regarding the implementation of `KeyCommands`: [Introducing KeyCommands](http://augustyniak.me/post/2016/10/introducing-keycommands/). 6 | 7 | # Introduction 8 | 9 | KeyCommands is an easy way to bind actions to specified combinations of keys in applications running in iOS or tvOS simulators. 10 | 11 | ------- 12 | 13 |

14 | Why KeyCommands • 15 | Installation • 16 | Usage 17 |

18 | 19 | ------- 20 | 21 | iOS Simulator | tvOS Simulator 22 | :-------------------------:|:-------------------------: 23 | ![iOS](Resources/animation_iOS.gif) | ![tvOS](Resources/animation_tvOS.gif) 24 | 25 | 26 | # Why 27 | 28 | Debugging and testing are both hard and can cost a lot of time. In order to test or verify something, it's convienient to have a way to trigger some action during the normal execution of the program. It's especially needed when applications run in simulators, where normally most of the development happens (as compile & run cycle is faster for simulators). Normally, this kind of actions are launched using lldb commands or some special UI debug elements that are added to the user interface specially for that purpose (and need to be removed after they are no longer needed). Both of these approaches are neither convinient nor time efficient. 29 | 30 | KeyCommands provide an alternative to the described problem. It provides an easy way to register observers that are informed when some specified combination of keys is pressed while application is running in the simulator. It's easy to use and can be easily disabled when needed. 31 | 32 | 33 | ## Possible Handy Applications of KeyCommands 34 | 35 | Some of the actions that can be bound to specified key combinations: 36 | 37 | 1. Changing tabs in tab bar. 38 | 2. Tapping back button in navigation bar. 39 | 3. Tapping buttons in alert sheets. 40 | 4. Scrolling in scroll view. 41 | 5. ... 42 | 43 | ## Keeping Swizzling out of App Store Builds 44 | As swizzling isn't a best practice and can lead to App Store rejections, all methods of KeyCommands expand to empty definitions in builds for actual devices. This keeps swizzling out of the builds that are sent to App Store and allows developers to sleep well at night. 🙂 45 | 46 | 47 | ```Swift 48 | #if (arch(i386) || arch(x86_64)) && (os(iOS) || os(tvOS)) //true for simulators 49 | //Magic happens here 50 | #else 51 | //Empty definitions of methods 52 | #end 53 | ``` 54 | 55 | ## Notes 56 | 57 | Note that some combinations of keys don't work with KeyCommands. All combinations that match shortcuts of iOS and/or tvOS simulators (for example ⌘+S) don't work as mentioned simulators don't forward them to the running applications. 58 | 59 | # Installation 60 | 61 | KeyCommands supports multiple methods for installing the library in the project. 62 | 63 | ## Installation with CocoaPods 64 | 65 | [CocoaPods](http://www.cocoapods.org) is the recommended way to add KeyCommands to your project. You can install it with the following command: 66 | 67 | ```gem install cocoapods``` 68 | 69 | To integrate KeyCommands in your project using CocoaPods, perform following steps: 70 | 71 | 1. Add additional entry to your Podfile. 72 | 73 | ```ruby 74 | pod 'KeyCommands', '~> 1.0.0' 75 | ``` 76 | 1. Install Pod(s) running `pod install` command. 77 | 1. Import KeyCommands module in your app using following code `import KeyCommands`. 78 | 79 | ## Installation with Carthage 80 | 81 | You can install [Carthage](https://github.com/Carthage/Carthage) with [Homebrew](http://brew.sh) using following commands: 82 | 83 | ``` 84 | brew update 85 | brew install carthage 86 | ``` 87 | 88 | To integrate KeyCommands into your Xcode project add KeyCommands to your Carfile: 89 | 90 | ``` 91 | github "Augustyniak/KeyCommands" ~> 1.0 92 | ``` 93 | 94 | Run `carthage update` and drag created KeyCommands framework into your project. 95 | 96 | # Usage 97 | 98 | Registration for `⌘+R` key combination can be performed with the following code: 99 | 100 | ```ObjectiveC 101 | KeyCommands.registerKeyCommand("r", modifierFlags: .Command) { 102 | print("⌘+R pressed.") 103 | } 104 | ``` 105 | 106 | Registered key command can be easily deregistered if needed: 107 | 108 | ```ObjectiveC 109 | KeyCommands.unregisterKeyCommand("r", modifierFlags: .Command) 110 | ``` 111 | 112 | # Credits 113 | 114 | KeyCommands are highly inspired by RCTKeyCommands class from [React Native](https://github.com/facebook/react-native) project. 115 | -------------------------------------------------------------------------------- /Resources/animation_iOS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Augustyniak/KeyCommands/be9a23ce53905aa9f16aca253dcaa9f3027a1266/Resources/animation_iOS.gif -------------------------------------------------------------------------------- /Resources/animation_tvOS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Augustyniak/KeyCommands/be9a23ce53905aa9f16aca253dcaa9f3027a1266/Resources/animation_tvOS.gif --------------------------------------------------------------------------------