├── Capo ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── _Pods.xcodeproj ├── Example ├── Pods │ ├── Target Support Files │ │ ├── Capo │ │ │ ├── Capo.modulemap │ │ │ ├── Capo-dummy.m │ │ │ ├── Capo-prefix.pch │ │ │ ├── Capo-umbrella.h │ │ │ ├── Capo.debug.xcconfig │ │ │ ├── Capo.release.xcconfig │ │ │ └── Capo-Info.plist │ │ ├── Pods-Capo_Tests │ │ │ ├── Pods-Capo_Tests.modulemap │ │ │ ├── Pods-Capo_Tests-dummy.m │ │ │ ├── Pods-Capo_Tests-acknowledgements.markdown │ │ │ ├── Pods-Capo_Tests-umbrella.h │ │ │ ├── Pods-Capo_Tests.debug.xcconfig │ │ │ ├── Pods-Capo_Tests.release.xcconfig │ │ │ ├── Pods-Capo_Tests-Info.plist │ │ │ └── Pods-Capo_Tests-acknowledgements.plist │ │ └── Pods-Capo_Example │ │ │ ├── Pods-Capo_Example.modulemap │ │ │ ├── Pods-Capo_Example-dummy.m │ │ │ ├── Pods-Capo_Example-umbrella.h │ │ │ ├── Pods-Capo_Example.debug.xcconfig │ │ │ ├── Pods-Capo_Example.release.xcconfig │ │ │ ├── Pods-Capo_Example-Info.plist │ │ │ ├── Pods-Capo_Example-acknowledgements.markdown │ │ │ ├── Pods-Capo_Example-acknowledgements.plist │ │ │ └── Pods-Capo_Example-frameworks.sh │ ├── Pods.xcodeproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── project.pbxproj │ ├── Manifest.lock │ └── Local Podspecs │ │ └── Capo.podspec.json ├── Podfile ├── Capo.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Capo-Example.xcscheme │ └── project.pbxproj ├── Capo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock ├── Tests │ ├── Info.plist │ └── Tests.swift └── Capo │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ ├── AppDelegate.swift │ └── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── .travis.yml ├── .gitignore ├── LICENSE ├── Capo.podspec ├── CODE_OF_CONDUCT.md ├── Source └── ButtonTuner.swift └── README.md /Capo/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Capo/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Capo/Capo.modulemap: -------------------------------------------------------------------------------- 1 | framework module Capo { 2 | umbrella header "Capo-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Capo/Capo-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Capo : NSObject 3 | @end 4 | @implementation PodsDummy_Capo 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Capo_Tests { 2 | umbrella header "Pods-Capo_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Capo_Example { 2 | umbrella header "Pods-Capo_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Capo_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Capo_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Capo_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Capo_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | platform :ios, '9.0' 4 | 5 | target 'Capo_Example' do 6 | pod 'Capo', :path => '../' 7 | 8 | target 'Capo_Tests' do 9 | inherit! :search_paths 10 | 11 | 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /Example/Capo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Capo/Capo-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Capo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Capo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Capo (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - Capo (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Capo: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | Capo: 11f43d3f34476ea4eaec6a6e2cb5bb827bf18e7d 13 | 14 | PODFILE CHECKSUM: dc16eaa58616f6df63a19ad6edb9de239fe3c1a9 15 | 16 | COCOAPODS: 1.9.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Capo (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - Capo (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Capo: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | Capo: 11f43d3f34476ea4eaec6a6e2cb5bb827bf18e7d 13 | 14 | PODFILE CHECKSUM: dc16eaa58616f6df63a19ad6edb9de239fe3c1a9 15 | 16 | COCOAPODS: 1.9.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Capo/Capo-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double CapoVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char CapoVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_Capo_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_Capo_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_Capo_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_Capo_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Capo/Capo.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Capo 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Capo/Capo.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Capo 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/Capo.xcworkspace -scheme Capo-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo/Capo.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "Capo" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo/Capo.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "Capo" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/Capo.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Capo", 3 | "version": "0.1.0", 4 | "summary": "A short description of Capo.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/gokulnair2001/Capo", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "gokulnair2001": "“gokulnair.2001@gmail.com”" 13 | }, 14 | "source": { 15 | "git": "https://github.com/gokulnair2001/Capo.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "9.0" 20 | }, 21 | "source_files": "Capo/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo/Capo.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "Capo" 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_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capo/Capo.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "Capo" 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_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import Capo 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Capo/Capo-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 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests-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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests-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 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Capo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 gokulnair2001 <“gokulnair.2001@gmail.com”> 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/Capo/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 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## Capo 5 | 6 | Copyright (c) 2020 gokulnair2001 <“gokulnair.2001@gmail.com”> 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Capo/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Capo 4 | // 5 | // Created by gokulnair2001 on 12/26/2020. 6 | // Copyright (c) 2020 gokulnair2001. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import Capo 11 | 12 | class ViewController: UIViewController { 13 | 14 | @IBOutlet weak var button: UIButton! 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | 18 | CapoTuner.applyGradient(button: button, color1: .systemBlue, color2: .systemRed, cornerRadius: 30) 19 | 20 | } 21 | 22 | override func didReceiveMemoryWarning() { 23 | super.didReceiveMemoryWarning() 24 | // Dispose of any resources that can be recreated. 25 | } 26 | 27 | 28 | @IBAction func buttonAction(_ sender: Any) { 29 | // Remove the comment mark below to check every feature 30 | 31 | // CapoTuner.pulsate(button: button, duration: 0.3, from: 1, to: 0.1, velocity: 0.5, damping: 1) 32 | 33 | 34 | // CapoTuner.pulsate(button: button, duration: 0.3, from: 1, to: 0.1, autoReverse: true, repeatCount: 1, velocity: 0.5, damping: 1.0) 35 | 36 | 37 | // CapoTuner.flash(button: button, duration: 0.3, from: 1, to: 0.1, autoReverse: true, repeatCount: 2) 38 | 39 | 40 | // CapoTuner.flash(button: button, duration: 0.3, from: 1, to: 0.1) 41 | 42 | // CapoTuner.popColors(button: button, fromColor: .systemOrange, toColor: .systemPink, cornerRadius: 24, duration: 0.3, autoReverse: true, repeatCount: 3) 43 | 44 | CapoTuner.applyShadow(button: button, color: .systemYellow, width: 0, height: 2, Radius: 5, opacity: 0.9) 45 | } 46 | 47 | } 48 | 49 | -------------------------------------------------------------------------------- /Capo.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint Capo.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'Capo' 11 | s.version = '1.2.3' 12 | s.summary = 'Capo is a custom library used to add animation and effects to button with just one line of code.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | 'Capo is a custom library which can be used to add various sort of animations and effects to a button. Capo reduces the effort of coding multiple line to add a single effect. Capo comprises of various features like adding animations, gradient background, corner-Radius, width , border colour which can be implemented with just one line of code. Capo as in real world is used to set pitch and tune of a guitar similarly here its used to tune your buttons.' 22 | DESC 23 | 24 | s.homepage = 'https://github.com/gokulnair2001/Capo' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'gokulnair2001' => '“gokulnair.2001@gmail.com”' } 28 | s.source = { :git => 'https://github.com/gokulnair2001/Capo.git', :tag => s.version.to_s } 29 | s.social_media_url = 'https://github.com/gokulnair2001' 30 | 31 | s.ios.deployment_target = '12.0' 32 | s.swift_version = '5.3' 33 | 34 | s.source_files = 'Source/**/*.swift' 35 | 36 | # s.resource_bundles = { 37 | # 'Capo' => ['Capo/Assets/*.png'] 38 | # } 39 | 40 | # s.public_header_files = 'Pod/Classes/**/*.h' 41 | # s.frameworks = 'UIKit', 'MapKit' 42 | # s.dependency 'AFNetworking', '~> 2.3' 43 | end 44 | -------------------------------------------------------------------------------- /Example/Capo/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Capo 4 | // 5 | // Created by gokulnair2001 on 12/26/2020. 6 | // Copyright (c) 2020 gokulnair2001. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-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 | Copyright (c) 2020 gokulnair2001 <“gokulnair.2001@gmail.com”> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | Capo 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Capo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/Capo.xcodeproj/xcshareddata/xcschemes/Capo-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 51 | 52 | 53 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 76 | 78 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | gokulnair.2001@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /Example/Capo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 36 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /Source/ButtonTuner.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ButtonTuner.swift 3 | // Capo 4 | // 5 | // Created by Gokul Nair on 26/12/20. 6 | // 7 | 8 | import Foundation 9 | import UIKit 10 | 11 | public class CapoTuner{ 12 | //MARK:- Button view style 13 | /// Tune is a basic formatting style for button. 14 | /// - Parameters: 15 | /// - button: Button on which effect is to be applied 16 | /// - cornerRadius: CornerRadius of Button 17 | /// - borderWidth: BorderWdth of Button 18 | /// - borderColor: BorderColor of Button 19 | public static func tune(button: UIButton ,cornerRadius: CGFloat, borderWidth: CGFloat, borderColor: UIColor ){ 20 | button.layer.cornerRadius = cornerRadius 21 | button.layer.borderWidth = borderWidth 22 | button.layer.borderColor = borderColor.cgColor 23 | } 24 | //MARK:- Gradient colour application 25 | /// Gradient is an intermediate style to apply Gradient background for buttons. 26 | /// - Parameters: 27 | /// - button: Button on which effect is to be applied 28 | /// - color1: Color1 for gradient background 29 | /// - color2: Color2 for gradient background 30 | /// - cornerRadius: CornerRadius of Button 31 | public static func applyGradient(button:UIButton, color1: UIColor, color2: UIColor, cornerRadius: CGFloat) { 32 | let gradientLayer: CAGradientLayer = { 33 | let gradientLayer = CAGradientLayer() 34 | gradientLayer.colors = [color1.cgColor, color2.cgColor] 35 | gradientLayer.startPoint = CGPoint(x: 0, y: 0.5) 36 | gradientLayer.endPoint = CGPoint(x: 1, y: 0.5) 37 | gradientLayer.cornerRadius = cornerRadius 38 | button.layer.insertSublayer(gradientLayer, at: 0) 39 | button.clipsToBounds = true 40 | button.backgroundColor = .none 41 | return gradientLayer 42 | }() 43 | gradientLayer.frame = button.bounds 44 | } 45 | // Shadow Effect 46 | 47 | /// Shadow is a basic style of applying shadow to a button. 48 | /// - Parameters: 49 | /// - button: Button on which effect is to be applied 50 | /// - color: Shadow Color 51 | /// - width: Shadow Width 52 | /// - height: Shadow Height 53 | /// - Radius: The blur radius used to render the layer’s shadow 54 | /// - opacity: The opacity of the layer’s shadow. 55 | public static func applyShadow(button: UIButton, color: UIColor, width: Double, height: Double, Radius: CGFloat, opacity: Float){ 56 | button.layer.shadowColor = color.cgColor 57 | button.layer.shadowOffset = CGSize(width: width, height: height) 58 | button.layer.masksToBounds = false 59 | button.layer.shadowRadius = Radius 60 | button.layer.shadowOpacity = opacity 61 | } 62 | 63 | //MARK:- Button Animation Section 64 | //Pulse animation 65 | /// Pulse is an advanced button style to apply pulse animation to a button. 66 | /// - Parameters: 67 | /// - button: Button on which effect is to be applied 68 | /// - duration: Specifies the basic duration of the animation, in seconds. 69 | /// - from: Defines the value the receiver uses to start interpolation. 70 | /// - to: Defines the value the receiver uses to end interpolation. 71 | /// - autoReverse: Determines if the receiver plays in the reverse upon completion 72 | /// - repeatCount: Determines the number of times the animation will repeat. 73 | /// - velocity: The initial velocity of the object attached to the spring. 74 | /// - damping: Defines how the spring’s motion should be damped due to the forces of friction. 75 | public static func pulsate(button: UIButton, duration: CFTimeInterval, from: CFTimeInterval, to: CFTimeInterval, autoReverse: Bool = false, repeatCount: Float = 0,velocity: CGFloat, damping: CGFloat){ 76 | let pulse = CASpringAnimation(keyPath: "transform.scale") 77 | pulse.duration = duration 78 | pulse.fromValue = from 79 | pulse.toValue = to 80 | pulse.autoreverses = autoReverse 81 | pulse.repeatCount = repeatCount 82 | pulse.initialVelocity = velocity 83 | pulse.damping = damping 84 | button.layer.add(pulse, forKey: nil) 85 | } 86 | //Flash animation 87 | 88 | /// Flash is an advanced button style to apply flash animation to a button. 89 | /// - Parameters: 90 | /// - button: Button on which effect is to be applied 91 | /// - duration: Specifies the basic duration of the animation, in seconds. 92 | /// - from: Defines the value the receiver uses to start interpolation. 93 | /// - to: Defines the value the receiver uses to end interpolation. 94 | /// - autoReverse: Determines if the receiver plays in the reverse upon completion 95 | /// - repeatCount: Determines the number of times the animation will repeat. 96 | public static func flash(button: UIButton, duration: CFTimeInterval, from: CFTimeInterval, to: CFTimeInterval, autoReverse: Bool = false, repeatCount: Float = 0){ 97 | let flash = CABasicAnimation(keyPath: "opacity") 98 | flash.duration = duration 99 | flash.fromValue = from 100 | flash.toValue = to 101 | flash.timingFunction = CAMediaTimingFunction(name: CAMediaTimingFunctionName.easeInEaseOut) 102 | flash.autoreverses = autoReverse 103 | flash.repeatCount = repeatCount 104 | button.layer.add(flash, forKey: nil) 105 | } 106 | // PopColors animation 107 | 108 | /// PopColor is an advanced styling feature for button, Used to aplpy POP colors on a button. 109 | /// - Parameters: 110 | /// - button: Button on which effect is to be applied 111 | /// - fromColor: Defines the value the receiver uses to start interpolation.(Color1) 112 | /// - toColor: Defines the value the receiver uses to end interpolation.(Color2) 113 | /// - cornerRadius: CornerRadius of Button 114 | /// - duration: Specifies the basic duration of the animation, in seconds. 115 | /// - autoReverse: Determines if the receiver plays in the reverse upon completion 116 | /// - repeatCount: Determines the number of times the animation will repeat. 117 | public static func popColors(button: UIButton,fromColor: UIColor, toColor: UIColor, cornerRadius:CGFloat = 0,duration: CFTimeInterval, autoReverse: Bool = false, repeatCount: Float = 0) { 118 | let popColor = CABasicAnimation(keyPath: "backgroundColor") 119 | popColor.fromValue = fromColor.cgColor 120 | popColor.toValue = toColor.cgColor 121 | popColor.duration = duration 122 | popColor.repeatCount = repeatCount 123 | popColor.autoreverses = autoReverse 124 | button.layer.add(popColor, forKey: nil) 125 | button.layer.cornerRadius = cornerRadius 126 | } 127 | 128 | } 129 | 130 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 | Screenshot 2020-12-27 at 2 22 23 PM 5 |

6 | 7 | # Capo 8 | 9 | [![Versions](https://img.shields.io/cocoapods/v/Capo.svg?style=flat)](https://cocoapods.org/pods/Capo) 10 | ![commits](https://img.shields.io/github/commits-since/CapoFrame/Capo/1.2.3/master) 11 | ![contributor](https://img.shields.io/github/contributors/CapoFrame/Capo) 12 | ![Badge](https://img.shields.io/badge/License-MIT-yellow) 13 | ![Badge](https://img.shields.io/badge/Xcode-12.0-green) 14 | ![badge](https://img.shields.io/badge/Swift-5.1-red) 15 | ![Badge](https://img.shields.io/badge/RepoSize-6kb-brown) 16 | [![Platform](https://img.shields.io/cocoapods/p/Capo.svg?style=flat)](https://cocoapods.org/pods/Capo) 17 | 18 | ## About 📒 19 | So Capo is a custom Framework used to apply various animations and effect to a button. Capo reduces your 10-12 lines of code to 1 line making it more convenient to read and execute. Capo comes with various animations like pulse, flash and effects like applying gradient background and etc. So capo doesn't require any additional dependency's ,its a small and optimized library to make your work more convenient, easy, optimised and easy to understand too. 20 | 21 | ## Idea ❤️ 22 | So while coding I found whenever it was about applying animations and effects we were supposed to write same lines of code multiple time, this made my coding frequency slow and even making the code appearance bad. So I thought to make a library which would make my work easy eventually making others work too. This was the idea behind developing Capo. 23 | 24 | ## Example 25 | 26 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 27 | 28 | ## Requirements 29 | 30 | Device running on iOS/iPadOS 12.0+ versions 📱. 31 | 32 | ## Installation 33 | 34 | Capo is available through [CocoaPods](https://cocoapods.org). To install 35 | it, simply add the following line to your Podfile: 36 | 37 | ```ruby 38 | pod 'Capo' 39 | ``` 40 | # How To Use 📁 ? 41 | 42 | ### Apply CornerRadius, BorderWidth and BorderColor 43 | 44 | ```swift 45 | CapoTuner.tune(button: UIButton ,cornerRadius: CGFloat, borderWidth: CGFloat, borderColor: UIColor ) 46 | ``` 47 | 48 | ### Apply Gradient Background 49 | 50 | ```swift 51 | CapoTuner.applyGradient(button:UIButton, color1: UIColor, color2: UIColor, cornerRadius: CGFloat) 52 | ``` 53 | ### Apply Shadow Effect 54 | 55 | ```swift 56 | CapoTuner.applyShadow(button: UIButton, color: UIColor, width: Double, height: Double, Radius: CGFloat, opacity: Float) 57 | ``` 58 | 59 | ### Apply Pulse Animation 60 | 61 | ```swift 62 | CapoTuner.pulsate(button: UIButton, duration: CFTimeInterval, from: CFTimeInterval, to: CFTimeInterval, autoReverse: Bool = false, repeatCount: Float = 0,velocity: CGFloat, damping: CGFloat) 63 | ``` 64 | 65 | ### Apply Flash Aimation 66 | 67 | ```swift 68 | CapoTuner.flash(button: UIButton, duration: CFTimeInterval, from: CFTimeInterval, to: CFTimeInterval, autoReverse: Bool = false, repeatCount: Float = 0) 69 | ``` 70 | ### Apply PopColor Animation 71 | 72 | ```swift 73 | CapoTuner.popColors(button: UIButton,fromColor: UIColor, toColor: UIColor, cornerRadius:CGFloat = 0,duration: CFTimeInterval, autoReverse: Bool = false, repeatCount: Float = 0) 74 | ``` 75 | # Snapshots 🌉 76 | 77 | Effect 1 | Effect 2| Effect 3| 78 | --- | --- | --- 79 | Screenshot 2020-12-27 at 2 22 23 PM | Screenshot 2020-12-27 at 2 27 41 PM | Screenshot 2020-12-27 at 2 27 41 PM | 80 | 81 | 82 | Effect 4| Effect 5| Effect 6| 83 | --- | --- | --- 84 | Screenshot 2020-12-27 at 2 22 23 PM | Screenshot 2020-12-27 at 2 27 41 PM | Screenshot 2020-12-27 at 2 27 41 PM | 85 | 86 | * Sample animations given above are made with arbitrary values, you can change it according to your need 🎛. 87 | * Above given animations are applied on UIButtons!. 88 | 89 | ## License 90 | 91 | Capo is available under the MIT license. See the [LICENSE](https://github.com/gokulnair2001/Capo/blob/master/LICENSE) for more info. 92 | 93 | ## How to Contribute ✍️ 94 | 95 | * Install the pod - Steps mentioned above 96 | * If you face issues in any step open a new issue. 97 | * To fix issues: Fork this repository, make your changes and make a Pull Request. 98 | 99 | ## Note 🔴 100 | * By default the "autoreverse" function for animations are kept false. 101 | 102 | ## Updates ⚠️ 103 | Right now capo comes with limited features, it will be updated with future releases, So stay tuned to know more about Capo. 104 | 105 | ## Project Admin 👨🏻‍💻 106 | 107 | | | 108 | | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | 109 | | **[Gokul Nair](https://www.linkedin.com/in/gokul-r-nair/)** | 110 | | | 111 | 112 | # Like the Project ? 113 | If you like using any of my projects or like what I'm doing, please consider backing me with appreciating my work: [Message me](https://www.linkedin.com/in/gokul-r-nair/)🥰 114 | 117 | OR 118 | 119 | **Drop a star ⭐ if you find this project interesting!** 120 | 121 |

122 | Made with ❤️ in 🇮🇳 By Gokul Nair 123 |

124 | 125 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | 23 | # Used as a return value for each invocation of `strip_invalid_archs` function. 24 | STRIP_BINARY_RETVAL=0 25 | 26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 29 | 30 | # Copies and strips a vendored framework 31 | install_framework() 32 | { 33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 34 | local source="${BUILT_PRODUCTS_DIR}/$1" 35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 37 | elif [ -r "$1" ]; then 38 | local source="$1" 39 | fi 40 | 41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 42 | 43 | if [ -L "${source}" ]; then 44 | echo "Symlinked..." 45 | source="$(readlink "${source}")" 46 | fi 47 | 48 | # Use filter instead of exclude so missing patterns don't throw errors. 49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 51 | 52 | local basename 53 | basename="$(basename -s .framework "$1")" 54 | binary="${destination}/${basename}.framework/${basename}" 55 | 56 | if ! [ -r "$binary" ]; then 57 | binary="${destination}/${basename}" 58 | elif [ -L "${binary}" ]; then 59 | echo "Destination binary is symlinked..." 60 | dirname="$(dirname "${binary}")" 61 | binary="${dirname}/$(readlink "${binary}")" 62 | fi 63 | 64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 66 | strip_invalid_archs "$binary" 67 | fi 68 | 69 | # Resign the code if required by the build settings to avoid unstable apps 70 | code_sign_if_enabled "${destination}/$(basename "$1")" 71 | 72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 74 | local swift_runtime_libs 75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 76 | for lib in $swift_runtime_libs; do 77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 79 | code_sign_if_enabled "${destination}/${lib}" 80 | done 81 | fi 82 | } 83 | 84 | # Copies and strips a vendored dSYM 85 | install_dsym() { 86 | local source="$1" 87 | warn_missing_arch=${2:-true} 88 | if [ -r "$source" ]; then 89 | # Copy the dSYM into the targets temp dir. 90 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 91 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 92 | 93 | local basename 94 | basename="$(basename -s .dSYM "$source")" 95 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 96 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 97 | 98 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 99 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 100 | strip_invalid_archs "$binary" "$warn_missing_arch" 101 | fi 102 | 103 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 104 | # Move the stripped file into its final destination. 105 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 106 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 107 | else 108 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 109 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 110 | fi 111 | fi 112 | } 113 | 114 | # Copies the bcsymbolmap files of a vendored framework 115 | install_bcsymbolmap() { 116 | local bcsymbolmap_path="$1" 117 | local destination="${BUILT_PRODUCTS_DIR}" 118 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 119 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 120 | } 121 | 122 | # Signs a framework with the provided identity 123 | code_sign_if_enabled() { 124 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 125 | # Use the current code_sign_identity 126 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 127 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 128 | 129 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 130 | code_sign_cmd="$code_sign_cmd &" 131 | fi 132 | echo "$code_sign_cmd" 133 | eval "$code_sign_cmd" 134 | fi 135 | } 136 | 137 | # Strip invalid architectures 138 | strip_invalid_archs() { 139 | binary="$1" 140 | warn_missing_arch=${2:-true} 141 | # Get architectures for current target binary 142 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 143 | # Intersect them with the architectures we are building for 144 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 145 | # If there are no archs supported by this binary then warn the user 146 | if [[ -z "$intersected_archs" ]]; then 147 | if [[ "$warn_missing_arch" == "true" ]]; then 148 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 149 | fi 150 | STRIP_BINARY_RETVAL=0 151 | return 152 | fi 153 | stripped="" 154 | for arch in $binary_archs; do 155 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 156 | # Strip non-valid architectures in-place 157 | lipo -remove "$arch" -output "$binary" "$binary" 158 | stripped="$stripped $arch" 159 | fi 160 | done 161 | if [[ "$stripped" ]]; then 162 | echo "Stripped $binary of architectures:$stripped" 163 | fi 164 | STRIP_BINARY_RETVAL=1 165 | } 166 | 167 | install_artifact() { 168 | artifact="$1" 169 | base="$(basename "$artifact")" 170 | case $base in 171 | *.framework) 172 | install_framework "$artifact" 173 | ;; 174 | *.dSYM) 175 | # Suppress arch warnings since XCFrameworks will include many dSYM files 176 | install_dsym "$artifact" "false" 177 | ;; 178 | *.bcsymbolmap) 179 | install_bcsymbolmap "$artifact" 180 | ;; 181 | *) 182 | echo "error: Unrecognized artifact "$artifact"" 183 | ;; 184 | esac 185 | } 186 | 187 | copy_artifacts() { 188 | file_list="$1" 189 | while read artifact; do 190 | install_artifact "$artifact" 191 | done <$file_list 192 | } 193 | 194 | ARTIFACT_LIST_FILE="${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt" 195 | if [ -r "${ARTIFACT_LIST_FILE}" ]; then 196 | copy_artifacts "${ARTIFACT_LIST_FILE}" 197 | fi 198 | 199 | if [[ "$CONFIGURATION" == "Debug" ]]; then 200 | install_framework "${BUILT_PRODUCTS_DIR}/Capo/Capo.framework" 201 | fi 202 | if [[ "$CONFIGURATION" == "Release" ]]; then 203 | install_framework "${BUILT_PRODUCTS_DIR}/Capo/Capo.framework" 204 | fi 205 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 206 | wait 207 | fi 208 | -------------------------------------------------------------------------------- /Example/Capo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 13 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 14 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 15 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 16 | 62B97FE49302190E4BA96EB0 /* Pods_Capo_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 655C76B17A9C625FD71F9CEA /* Pods_Capo_Example.framework */; }; 17 | F16219056F79693E4C952D47 /* Pods_Capo_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 859F7536DBC81C8BD1F33B64 /* Pods_Capo_Tests.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = Capo; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 1A0FCA45C131550AC2AED56E /* Pods-Capo_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Capo_Tests.debug.xcconfig"; path = "Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests.debug.xcconfig"; sourceTree = ""; }; 32 | 45BF1D6DD009429BC1340580 /* Pods-Capo_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Capo_Example.debug.xcconfig"; path = "Target Support Files/Pods-Capo_Example/Pods-Capo_Example.debug.xcconfig"; sourceTree = ""; }; 33 | 5CC6F140381F4026D220E911 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 34 | 607FACD01AFB9204008FA782 /* Capo_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Capo_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 38 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 39 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 40 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 41 | 607FACE51AFB9204008FA782 /* Capo_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Capo_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 43 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 44 | 639BC123FF7160265DA9E8B3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 45 | 655C76B17A9C625FD71F9CEA /* Pods_Capo_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Capo_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 859F7536DBC81C8BD1F33B64 /* Pods_Capo_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Capo_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | B24CAFBC32492E30C589C6AF /* Pods-Capo_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Capo_Example.release.xcconfig"; path = "Target Support Files/Pods-Capo_Example/Pods-Capo_Example.release.xcconfig"; sourceTree = ""; }; 48 | B62D679DC35F5ADB3BFCB523 /* Capo.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Capo.podspec; path = ../Capo.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 49 | E83633ACE09099BADD6F2944 /* Pods-Capo_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Capo_Tests.release.xcconfig"; path = "Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests.release.xcconfig"; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 62B97FE49302190E4BA96EB0 /* Pods_Capo_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | F16219056F79693E4C952D47 /* Pods_Capo_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 1AAFF31AA26DA121CE8B29FD /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 655C76B17A9C625FD71F9CEA /* Pods_Capo_Example.framework */, 76 | 859F7536DBC81C8BD1F33B64 /* Pods_Capo_Tests.framework */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 607FACC71AFB9204008FA782 = { 82 | isa = PBXGroup; 83 | children = ( 84 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 85 | 607FACD21AFB9204008FA782 /* Example for Capo */, 86 | 607FACE81AFB9204008FA782 /* Tests */, 87 | 607FACD11AFB9204008FA782 /* Products */, 88 | EEDFA6A47E2B89ACFEA79454 /* Pods */, 89 | 1AAFF31AA26DA121CE8B29FD /* Frameworks */, 90 | ); 91 | sourceTree = ""; 92 | }; 93 | 607FACD11AFB9204008FA782 /* Products */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD01AFB9204008FA782 /* Capo_Example.app */, 97 | 607FACE51AFB9204008FA782 /* Capo_Tests.xctest */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 607FACD21AFB9204008FA782 /* Example for Capo */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 106 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 107 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 108 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 109 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 110 | 607FACD31AFB9204008FA782 /* Supporting Files */, 111 | ); 112 | name = "Example for Capo"; 113 | path = Capo; 114 | sourceTree = ""; 115 | }; 116 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | 607FACD41AFB9204008FA782 /* Info.plist */, 120 | ); 121 | name = "Supporting Files"; 122 | sourceTree = ""; 123 | }; 124 | 607FACE81AFB9204008FA782 /* Tests */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 128 | 607FACE91AFB9204008FA782 /* Supporting Files */, 129 | ); 130 | path = Tests; 131 | sourceTree = ""; 132 | }; 133 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 607FACEA1AFB9204008FA782 /* Info.plist */, 137 | ); 138 | name = "Supporting Files"; 139 | sourceTree = ""; 140 | }; 141 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | B62D679DC35F5ADB3BFCB523 /* Capo.podspec */, 145 | 5CC6F140381F4026D220E911 /* README.md */, 146 | 639BC123FF7160265DA9E8B3 /* LICENSE */, 147 | ); 148 | name = "Podspec Metadata"; 149 | sourceTree = ""; 150 | }; 151 | EEDFA6A47E2B89ACFEA79454 /* Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | 45BF1D6DD009429BC1340580 /* Pods-Capo_Example.debug.xcconfig */, 155 | B24CAFBC32492E30C589C6AF /* Pods-Capo_Example.release.xcconfig */, 156 | 1A0FCA45C131550AC2AED56E /* Pods-Capo_Tests.debug.xcconfig */, 157 | E83633ACE09099BADD6F2944 /* Pods-Capo_Tests.release.xcconfig */, 158 | ); 159 | path = Pods; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* Capo_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Capo_Example" */; 168 | buildPhases = ( 169 | 4C11CFF11213F114082DFB7B /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | E253BA573ECDE60B5F20DFE5 /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = Capo_Example; 180 | productName = Capo; 181 | productReference = 607FACD01AFB9204008FA782 /* Capo_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* Capo_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Capo_Tests" */; 187 | buildPhases = ( 188 | 9706F9E701E59EE5956D480E /* [CP] Check Pods Manifest.lock */, 189 | 607FACE11AFB9204008FA782 /* Sources */, 190 | 607FACE21AFB9204008FA782 /* Frameworks */, 191 | 607FACE31AFB9204008FA782 /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 197 | ); 198 | name = Capo_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* Capo_Tests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 607FACC81AFB9204008FA782 /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | LastSwiftUpdateCheck = 0830; 210 | LastUpgradeCheck = 1230; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | DevelopmentTeam = GJM8829Q7N; 216 | LastSwiftMigration = 1230; 217 | }; 218 | 607FACE41AFB9204008FA782 = { 219 | CreatedOnToolsVersion = 6.3.1; 220 | LastSwiftMigration = 1230; 221 | TestTargetID = 607FACCF1AFB9204008FA782; 222 | }; 223 | }; 224 | }; 225 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Capo" */; 226 | compatibilityVersion = "Xcode 3.2"; 227 | developmentRegion = en; 228 | hasScannedForEncodings = 0; 229 | knownRegions = ( 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* Capo_Example */, 239 | 607FACE41AFB9204008FA782 /* Capo_Tests */, 240 | ); 241 | }; 242 | /* End PBXProject section */ 243 | 244 | /* Begin PBXResourcesBuildPhase section */ 245 | 607FACCE1AFB9204008FA782 /* Resources */ = { 246 | isa = PBXResourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | 607FACE31AFB9204008FA782 /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXResourcesBuildPhase section */ 263 | 264 | /* Begin PBXShellScriptBuildPhase section */ 265 | 4C11CFF11213F114082DFB7B /* [CP] Check Pods Manifest.lock */ = { 266 | isa = PBXShellScriptBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | ); 270 | inputFileListPaths = ( 271 | ); 272 | inputPaths = ( 273 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 274 | "${PODS_ROOT}/Manifest.lock", 275 | ); 276 | name = "[CP] Check Pods Manifest.lock"; 277 | outputFileListPaths = ( 278 | ); 279 | outputPaths = ( 280 | "$(DERIVED_FILE_DIR)/Pods-Capo_Example-checkManifestLockResult.txt", 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | 9706F9E701E59EE5956D480E /* [CP] Check Pods Manifest.lock */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputFileListPaths = ( 293 | ); 294 | inputPaths = ( 295 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 296 | "${PODS_ROOT}/Manifest.lock", 297 | ); 298 | name = "[CP] Check Pods Manifest.lock"; 299 | outputFileListPaths = ( 300 | ); 301 | outputPaths = ( 302 | "$(DERIVED_FILE_DIR)/Pods-Capo_Tests-checkManifestLockResult.txt", 303 | ); 304 | runOnlyForDeploymentPostprocessing = 0; 305 | shellPath = /bin/sh; 306 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 307 | showEnvVarsInLog = 0; 308 | }; 309 | E253BA573ECDE60B5F20DFE5 /* [CP] Embed Pods Frameworks */ = { 310 | isa = PBXShellScriptBuildPhase; 311 | buildActionMask = 2147483647; 312 | files = ( 313 | ); 314 | inputPaths = ( 315 | "${PODS_ROOT}/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-frameworks.sh", 316 | "${BUILT_PRODUCTS_DIR}/Capo/Capo.framework", 317 | ); 318 | name = "[CP] Embed Pods Frameworks"; 319 | outputPaths = ( 320 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Capo.framework", 321 | ); 322 | runOnlyForDeploymentPostprocessing = 0; 323 | shellPath = /bin/sh; 324 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Capo_Example/Pods-Capo_Example-frameworks.sh\"\n"; 325 | showEnvVarsInLog = 0; 326 | }; 327 | /* End PBXShellScriptBuildPhase section */ 328 | 329 | /* Begin PBXSourcesBuildPhase section */ 330 | 607FACCC1AFB9204008FA782 /* Sources */ = { 331 | isa = PBXSourcesBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 335 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 607FACE11AFB9204008FA782 /* Sources */ = { 340 | isa = PBXSourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | }; 347 | /* End PBXSourcesBuildPhase section */ 348 | 349 | /* Begin PBXTargetDependency section */ 350 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 351 | isa = PBXTargetDependency; 352 | target = 607FACCF1AFB9204008FA782 /* Capo_Example */; 353 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 354 | }; 355 | /* End PBXTargetDependency section */ 356 | 357 | /* Begin PBXVariantGroup section */ 358 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 359 | isa = PBXVariantGroup; 360 | children = ( 361 | 607FACDA1AFB9204008FA782 /* Base */, 362 | ); 363 | name = Main.storyboard; 364 | sourceTree = ""; 365 | }; 366 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 367 | isa = PBXVariantGroup; 368 | children = ( 369 | 607FACDF1AFB9204008FA782 /* Base */, 370 | ); 371 | name = LaunchScreen.xib; 372 | sourceTree = ""; 373 | }; 374 | /* End PBXVariantGroup section */ 375 | 376 | /* Begin XCBuildConfiguration section */ 377 | 607FACED1AFB9204008FA782 /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = 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_BLOCK_CAPTURE_AUTORELEASING = YES; 387 | CLANG_WARN_BOOL_CONVERSION = YES; 388 | CLANG_WARN_COMMA = YES; 389 | CLANG_WARN_CONSTANT_CONVERSION = YES; 390 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 391 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 392 | CLANG_WARN_EMPTY_BODY = YES; 393 | CLANG_WARN_ENUM_CONVERSION = YES; 394 | CLANG_WARN_INFINITE_RECURSION = YES; 395 | CLANG_WARN_INT_CONVERSION = YES; 396 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 397 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 398 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 399 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 400 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 401 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 402 | CLANG_WARN_STRICT_PROTOTYPES = YES; 403 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 404 | CLANG_WARN_UNREACHABLE_CODE = YES; 405 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 406 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 407 | COPY_PHASE_STRIP = NO; 408 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 409 | ENABLE_STRICT_OBJC_MSGSEND = YES; 410 | ENABLE_TESTABILITY = YES; 411 | GCC_C_LANGUAGE_STANDARD = gnu99; 412 | GCC_DYNAMIC_NO_PIC = NO; 413 | GCC_NO_COMMON_BLOCKS = YES; 414 | GCC_OPTIMIZATION_LEVEL = 0; 415 | GCC_PREPROCESSOR_DEFINITIONS = ( 416 | "DEBUG=1", 417 | "$(inherited)", 418 | ); 419 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 420 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 421 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 422 | GCC_WARN_UNDECLARED_SELECTOR = YES; 423 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 424 | GCC_WARN_UNUSED_FUNCTION = YES; 425 | GCC_WARN_UNUSED_VARIABLE = YES; 426 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 427 | MTL_ENABLE_DEBUG_INFO = YES; 428 | ONLY_ACTIVE_ARCH = YES; 429 | SDKROOT = iphoneos; 430 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 431 | }; 432 | name = Debug; 433 | }; 434 | 607FACEE1AFB9204008FA782 /* Release */ = { 435 | isa = XCBuildConfiguration; 436 | buildSettings = { 437 | ALWAYS_SEARCH_USER_PATHS = NO; 438 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 439 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 440 | CLANG_CXX_LIBRARY = "libc++"; 441 | CLANG_ENABLE_MODULES = YES; 442 | CLANG_ENABLE_OBJC_ARC = YES; 443 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 444 | CLANG_WARN_BOOL_CONVERSION = YES; 445 | CLANG_WARN_COMMA = YES; 446 | CLANG_WARN_CONSTANT_CONVERSION = YES; 447 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 448 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 449 | CLANG_WARN_EMPTY_BODY = YES; 450 | CLANG_WARN_ENUM_CONVERSION = YES; 451 | CLANG_WARN_INFINITE_RECURSION = YES; 452 | CLANG_WARN_INT_CONVERSION = YES; 453 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 454 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 455 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 456 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 457 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 458 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 459 | CLANG_WARN_STRICT_PROTOTYPES = YES; 460 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 461 | CLANG_WARN_UNREACHABLE_CODE = YES; 462 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 463 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 464 | COPY_PHASE_STRIP = NO; 465 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 466 | ENABLE_NS_ASSERTIONS = NO; 467 | ENABLE_STRICT_OBJC_MSGSEND = YES; 468 | GCC_C_LANGUAGE_STANDARD = gnu99; 469 | GCC_NO_COMMON_BLOCKS = YES; 470 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 471 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 472 | GCC_WARN_UNDECLARED_SELECTOR = YES; 473 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 474 | GCC_WARN_UNUSED_FUNCTION = YES; 475 | GCC_WARN_UNUSED_VARIABLE = YES; 476 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 477 | MTL_ENABLE_DEBUG_INFO = NO; 478 | SDKROOT = iphoneos; 479 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 480 | VALIDATE_PRODUCT = YES; 481 | }; 482 | name = Release; 483 | }; 484 | 607FACF01AFB9204008FA782 /* Debug */ = { 485 | isa = XCBuildConfiguration; 486 | baseConfigurationReference = 45BF1D6DD009429BC1340580 /* Pods-Capo_Example.debug.xcconfig */; 487 | buildSettings = { 488 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 489 | DEVELOPMENT_TEAM = GJM8829Q7N; 490 | INFOPLIST_FILE = Capo/Info.plist; 491 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 492 | MODULE_NAME = ExampleApp; 493 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 494 | PRODUCT_NAME = "$(TARGET_NAME)"; 495 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 496 | SWIFT_VERSION = 5.0; 497 | }; 498 | name = Debug; 499 | }; 500 | 607FACF11AFB9204008FA782 /* Release */ = { 501 | isa = XCBuildConfiguration; 502 | baseConfigurationReference = B24CAFBC32492E30C589C6AF /* Pods-Capo_Example.release.xcconfig */; 503 | buildSettings = { 504 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 505 | DEVELOPMENT_TEAM = GJM8829Q7N; 506 | INFOPLIST_FILE = Capo/Info.plist; 507 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 508 | MODULE_NAME = ExampleApp; 509 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 510 | PRODUCT_NAME = "$(TARGET_NAME)"; 511 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 512 | SWIFT_VERSION = 5.0; 513 | }; 514 | name = Release; 515 | }; 516 | 607FACF31AFB9204008FA782 /* Debug */ = { 517 | isa = XCBuildConfiguration; 518 | baseConfigurationReference = 1A0FCA45C131550AC2AED56E /* Pods-Capo_Tests.debug.xcconfig */; 519 | buildSettings = { 520 | FRAMEWORK_SEARCH_PATHS = ( 521 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 522 | "$(inherited)", 523 | ); 524 | GCC_PREPROCESSOR_DEFINITIONS = ( 525 | "DEBUG=1", 526 | "$(inherited)", 527 | ); 528 | INFOPLIST_FILE = Tests/Info.plist; 529 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 530 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 531 | PRODUCT_NAME = "$(TARGET_NAME)"; 532 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 533 | SWIFT_VERSION = 5.0; 534 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Capo_Example.app/Capo_Example"; 535 | }; 536 | name = Debug; 537 | }; 538 | 607FACF41AFB9204008FA782 /* Release */ = { 539 | isa = XCBuildConfiguration; 540 | baseConfigurationReference = E83633ACE09099BADD6F2944 /* Pods-Capo_Tests.release.xcconfig */; 541 | buildSettings = { 542 | FRAMEWORK_SEARCH_PATHS = ( 543 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 544 | "$(inherited)", 545 | ); 546 | INFOPLIST_FILE = Tests/Info.plist; 547 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 548 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 549 | PRODUCT_NAME = "$(TARGET_NAME)"; 550 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 551 | SWIFT_VERSION = 5.0; 552 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Capo_Example.app/Capo_Example"; 553 | }; 554 | name = Release; 555 | }; 556 | /* End XCBuildConfiguration section */ 557 | 558 | /* Begin XCConfigurationList section */ 559 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Capo" */ = { 560 | isa = XCConfigurationList; 561 | buildConfigurations = ( 562 | 607FACED1AFB9204008FA782 /* Debug */, 563 | 607FACEE1AFB9204008FA782 /* Release */, 564 | ); 565 | defaultConfigurationIsVisible = 0; 566 | defaultConfigurationName = Release; 567 | }; 568 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Capo_Example" */ = { 569 | isa = XCConfigurationList; 570 | buildConfigurations = ( 571 | 607FACF01AFB9204008FA782 /* Debug */, 572 | 607FACF11AFB9204008FA782 /* Release */, 573 | ); 574 | defaultConfigurationIsVisible = 0; 575 | defaultConfigurationName = Release; 576 | }; 577 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Capo_Tests" */ = { 578 | isa = XCConfigurationList; 579 | buildConfigurations = ( 580 | 607FACF31AFB9204008FA782 /* Debug */, 581 | 607FACF41AFB9204008FA782 /* Release */, 582 | ); 583 | defaultConfigurationIsVisible = 0; 584 | defaultConfigurationName = Release; 585 | }; 586 | /* End XCConfigurationList section */ 587 | }; 588 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 589 | } 590 | -------------------------------------------------------------------------------- /Example/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 | 06DB44911E41474F5BA274A3D74667F0 /* Pods-Capo_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C490CEC0C8C41F33F13689283B6A11B9 /* Pods-Capo_Example-dummy.m */; }; 11 | 320E1C95AAC19B1354198B9CFD3DCEC4 /* Capo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 20326EF606E5DE6D9AE9A16C97FD1EDB /* Capo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 5580D15B25972DE400973790 /* ButtonTuner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5580D15A25972DE400973790 /* ButtonTuner.swift */; }; 13 | 8E7ACEA99A803CF0CE73DE255BF3D0C2 /* Capo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4C2480E882E9E9F0D5741A8539DD4D6 /* Capo-dummy.m */; }; 14 | 930BA5B32103BA391CC64A78D78263F0 /* Pods-Capo_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E0D8065749DE3B876DEA4B48010D38 /* Pods-Capo_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 960F85415B7F3F577CE05E336C9F7D74 /* Pods-Capo_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 862CDA66531D7D08FA490CC88AC8A0A7 /* Pods-Capo_Tests-dummy.m */; }; 16 | 9BBDD849D0B0762634C11E186C4BD8F4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 17 | A41704ECAE49CA42EF6EFBF827DAF584 /* Pods-Capo_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D76FCCE6DFDC030DFAD32850BDB734 /* Pods-Capo_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | BCE7E6E85D6D75D4EFFD28D7A27D2DD1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 19 | F3303EF9A6462CDC43800095657CC035 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | 530532BF301341FD577951F6FDAB83A1 /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = 5BB5FBE53EB6C0458865D047BCEB9512; 28 | remoteInfo = "Pods-Capo_Example"; 29 | }; 30 | 85E9BD89063B0C6668DBA5C7A0E4499E /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 91B53847A689674F34DDAEF1BC5330A6; 35 | remoteInfo = Capo; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 07E0D8065749DE3B876DEA4B48010D38 /* Pods-Capo_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Capo_Tests-umbrella.h"; sourceTree = ""; }; 41 | 0C631398FED03C37843A2607D5592270 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 42 | 20326EF606E5DE6D9AE9A16C97FD1EDB /* Capo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capo-umbrella.h"; sourceTree = ""; }; 43 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 44 | 3D742DADD473A33445C2FEC4B1D63810 /* Pods-Capo_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Capo_Example-Info.plist"; sourceTree = ""; }; 45 | 3E6D54192EB52FCBFEE66F0697DFBC40 /* Capo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Capo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 3F2E0BE6106ECE7B8F870D49C6CD270E /* Capo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capo.debug.xcconfig; sourceTree = ""; }; 47 | 3F74D3ADED9D36037CEF77461726C3D5 /* Pods-Capo_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Capo_Tests.release.xcconfig"; sourceTree = ""; }; 48 | 44E0C5AEA910B0A2073CAF630CECA1B6 /* Pods-Capo_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Capo_Example.release.xcconfig"; sourceTree = ""; }; 49 | 469DF464A0E4AACF691C8C3331D71C23 /* Pods-Capo_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Capo_Example-acknowledgements.plist"; sourceTree = ""; }; 50 | 5580D15A25972DE400973790 /* ButtonTuner.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ButtonTuner.swift; sourceTree = ""; }; 51 | 683325408410664A74573B70BB8C6D87 /* Pods-Capo_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Capo_Tests-acknowledgements.plist"; sourceTree = ""; }; 52 | 71AFA6FB01628E37BE2D61A9E0DD75DD /* Pods-Capo_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Capo_Example-frameworks.sh"; sourceTree = ""; }; 53 | 75CF1BB86AAB5407C23CEC81E796CB44 /* Pods-Capo_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Capo_Tests.debug.xcconfig"; sourceTree = ""; }; 54 | 76FB6197D12513F583E28FDC267D78C5 /* Capo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Capo.modulemap; sourceTree = ""; }; 55 | 81CBAA7BDC9DD19DCD13A841B3333954 /* Pods-Capo_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Capo_Example.debug.xcconfig"; sourceTree = ""; }; 56 | 81D76FCCE6DFDC030DFAD32850BDB734 /* Pods-Capo_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Capo_Example-umbrella.h"; sourceTree = ""; }; 57 | 862CDA66531D7D08FA490CC88AC8A0A7 /* Pods-Capo_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Capo_Tests-dummy.m"; sourceTree = ""; }; 58 | 96E1F735332A5B89A156431C633E5159 /* Capo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capo-prefix.pch"; sourceTree = ""; }; 59 | 997E70CC506C089CA8C17D923A18C25B /* Pods_Capo_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Capo_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 61 | 9DE37E8ACABBBD184B82699D615701F0 /* Capo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capo.release.xcconfig; sourceTree = ""; }; 62 | A4C2480E882E9E9F0D5741A8539DD4D6 /* Capo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Capo-dummy.m"; sourceTree = ""; }; 63 | AB222E07E27FFB4751C420FD278C8EEA /* Pods-Capo_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Capo_Tests-Info.plist"; sourceTree = ""; }; 64 | AF89B224492079A77137EA211AA50358 /* Capo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = Capo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65 | B23D02744A7DC51896D4B9DA7621C55C /* Capo-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Capo-Info.plist"; sourceTree = ""; }; 66 | BFB082989950FF75FBA43A4821805E1E /* Pods_Capo_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Capo_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 67 | C490CEC0C8C41F33F13689283B6A11B9 /* Pods-Capo_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Capo_Example-dummy.m"; sourceTree = ""; }; 68 | CB38713391645D4DDB3627EBE9943A0F /* Pods-Capo_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Capo_Example.modulemap"; sourceTree = ""; }; 69 | D0EBB51818B9C38DC2C7A640AB70BAC2 /* Pods-Capo_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Capo_Tests-acknowledgements.markdown"; sourceTree = ""; }; 70 | D2DAA90BBE09B5ECCA4773F1A2931A34 /* Pods-Capo_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Capo_Tests.modulemap"; sourceTree = ""; }; 71 | E8110EBB2EA2647923BD1787E7D6BEBA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 72 | F6D4875D2D08FF13D62F2C20D28C4B14 /* Pods-Capo_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Capo_Example-acknowledgements.markdown"; sourceTree = ""; }; 73 | /* End PBXFileReference section */ 74 | 75 | /* Begin PBXFrameworksBuildPhase section */ 76 | 0B92277C416E62146C0C38EAC6132775 /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | BCE7E6E85D6D75D4EFFD28D7A27D2DD1 /* Foundation.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | 167DBFD4FA312B628324BBF19649593A /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 9BBDD849D0B0762634C11E186C4BD8F4 /* Foundation.framework in Frameworks */, 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | 92CFF85172EA84E044AC0B3A9C18C7AF /* Frameworks */ = { 93 | isa = PBXFrameworksBuildPhase; 94 | buildActionMask = 2147483647; 95 | files = ( 96 | F3303EF9A6462CDC43800095657CC035 /* Foundation.framework in Frameworks */, 97 | ); 98 | runOnlyForDeploymentPostprocessing = 0; 99 | }; 100 | /* End PBXFrameworksBuildPhase section */ 101 | 102 | /* Begin PBXGroup section */ 103 | 0AAB1F5CD59A8621775E5711D818D41B /* Support Files */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | 76FB6197D12513F583E28FDC267D78C5 /* Capo.modulemap */, 107 | A4C2480E882E9E9F0D5741A8539DD4D6 /* Capo-dummy.m */, 108 | B23D02744A7DC51896D4B9DA7621C55C /* Capo-Info.plist */, 109 | 96E1F735332A5B89A156431C633E5159 /* Capo-prefix.pch */, 110 | 20326EF606E5DE6D9AE9A16C97FD1EDB /* Capo-umbrella.h */, 111 | 3F2E0BE6106ECE7B8F870D49C6CD270E /* Capo.debug.xcconfig */, 112 | 9DE37E8ACABBBD184B82699D615701F0 /* Capo.release.xcconfig */, 113 | ); 114 | name = "Support Files"; 115 | path = "Example/Pods/Target Support Files/Capo"; 116 | sourceTree = ""; 117 | }; 118 | 1289773F99DB3801384FD02B84812559 /* Pods-Capo_Tests */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | D2DAA90BBE09B5ECCA4773F1A2931A34 /* Pods-Capo_Tests.modulemap */, 122 | D0EBB51818B9C38DC2C7A640AB70BAC2 /* Pods-Capo_Tests-acknowledgements.markdown */, 123 | 683325408410664A74573B70BB8C6D87 /* Pods-Capo_Tests-acknowledgements.plist */, 124 | 862CDA66531D7D08FA490CC88AC8A0A7 /* Pods-Capo_Tests-dummy.m */, 125 | AB222E07E27FFB4751C420FD278C8EEA /* Pods-Capo_Tests-Info.plist */, 126 | 07E0D8065749DE3B876DEA4B48010D38 /* Pods-Capo_Tests-umbrella.h */, 127 | 75CF1BB86AAB5407C23CEC81E796CB44 /* Pods-Capo_Tests.debug.xcconfig */, 128 | 3F74D3ADED9D36037CEF77461726C3D5 /* Pods-Capo_Tests.release.xcconfig */, 129 | ); 130 | name = "Pods-Capo_Tests"; 131 | path = "Target Support Files/Pods-Capo_Tests"; 132 | sourceTree = ""; 133 | }; 134 | 2B1E6EDE9C37D805D89FA2A8C711C70E /* Targets Support Files */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | DD2F32095F4551EB06D34466FA37C9F5 /* Pods-Capo_Example */, 138 | 1289773F99DB3801384FD02B84812559 /* Pods-Capo_Tests */, 139 | ); 140 | name = "Targets Support Files"; 141 | sourceTree = ""; 142 | }; 143 | 456476A0C41B14036455667C12FAB03F /* Products */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | 3E6D54192EB52FCBFEE66F0697DFBC40 /* Capo.framework */, 147 | 997E70CC506C089CA8C17D923A18C25B /* Pods_Capo_Example.framework */, 148 | BFB082989950FF75FBA43A4821805E1E /* Pods_Capo_Tests.framework */, 149 | ); 150 | name = Products; 151 | sourceTree = ""; 152 | }; 153 | 5580D15125972BD900973790 /* Source */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | 5580D15A25972DE400973790 /* ButtonTuner.swift */, 157 | ); 158 | path = Source; 159 | sourceTree = ""; 160 | }; 161 | 7353F272259DB63B7060F7C8DC696FFF /* Capo */ = { 162 | isa = PBXGroup; 163 | children = ( 164 | 5580D15125972BD900973790 /* Source */, 165 | A3DA243EA9B51F2AFECC2C6D389D8E8B /* Pod */, 166 | 0AAB1F5CD59A8621775E5711D818D41B /* Support Files */, 167 | ); 168 | name = Capo; 169 | path = ../..; 170 | sourceTree = ""; 171 | }; 172 | A3DA243EA9B51F2AFECC2C6D389D8E8B /* Pod */ = { 173 | isa = PBXGroup; 174 | children = ( 175 | AF89B224492079A77137EA211AA50358 /* Capo.podspec */, 176 | 0C631398FED03C37843A2607D5592270 /* LICENSE */, 177 | E8110EBB2EA2647923BD1787E7D6BEBA /* README.md */, 178 | ); 179 | name = Pod; 180 | sourceTree = ""; 181 | }; 182 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 183 | isa = PBXGroup; 184 | children = ( 185 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 186 | ); 187 | name = iOS; 188 | sourceTree = ""; 189 | }; 190 | CF1408CF629C7361332E53B88F7BD30C = { 191 | isa = PBXGroup; 192 | children = ( 193 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 194 | F3B39BD57DB37ADB0BCB771EDF96F91F /* Development Pods */, 195 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 196 | 456476A0C41B14036455667C12FAB03F /* Products */, 197 | 2B1E6EDE9C37D805D89FA2A8C711C70E /* Targets Support Files */, 198 | ); 199 | sourceTree = ""; 200 | }; 201 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 202 | isa = PBXGroup; 203 | children = ( 204 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 205 | ); 206 | name = Frameworks; 207 | sourceTree = ""; 208 | }; 209 | DD2F32095F4551EB06D34466FA37C9F5 /* Pods-Capo_Example */ = { 210 | isa = PBXGroup; 211 | children = ( 212 | CB38713391645D4DDB3627EBE9943A0F /* Pods-Capo_Example.modulemap */, 213 | F6D4875D2D08FF13D62F2C20D28C4B14 /* Pods-Capo_Example-acknowledgements.markdown */, 214 | 469DF464A0E4AACF691C8C3331D71C23 /* Pods-Capo_Example-acknowledgements.plist */, 215 | C490CEC0C8C41F33F13689283B6A11B9 /* Pods-Capo_Example-dummy.m */, 216 | 71AFA6FB01628E37BE2D61A9E0DD75DD /* Pods-Capo_Example-frameworks.sh */, 217 | 3D742DADD473A33445C2FEC4B1D63810 /* Pods-Capo_Example-Info.plist */, 218 | 81D76FCCE6DFDC030DFAD32850BDB734 /* Pods-Capo_Example-umbrella.h */, 219 | 81CBAA7BDC9DD19DCD13A841B3333954 /* Pods-Capo_Example.debug.xcconfig */, 220 | 44E0C5AEA910B0A2073CAF630CECA1B6 /* Pods-Capo_Example.release.xcconfig */, 221 | ); 222 | name = "Pods-Capo_Example"; 223 | path = "Target Support Files/Pods-Capo_Example"; 224 | sourceTree = ""; 225 | }; 226 | F3B39BD57DB37ADB0BCB771EDF96F91F /* Development Pods */ = { 227 | isa = PBXGroup; 228 | children = ( 229 | 7353F272259DB63B7060F7C8DC696FFF /* Capo */, 230 | ); 231 | name = "Development Pods"; 232 | sourceTree = ""; 233 | }; 234 | /* End PBXGroup section */ 235 | 236 | /* Begin PBXHeadersBuildPhase section */ 237 | 19C008AF3DCDCFC2CFA7812B4DE639BC /* Headers */ = { 238 | isa = PBXHeadersBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | A41704ECAE49CA42EF6EFBF827DAF584 /* Pods-Capo_Example-umbrella.h in Headers */, 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | }; 245 | 209FF224471F93DD1FB81D78351CF696 /* Headers */ = { 246 | isa = PBXHeadersBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 930BA5B32103BA391CC64A78D78263F0 /* Pods-Capo_Tests-umbrella.h in Headers */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | 28C61F7C24B7DB04879B750F5EAA0EB7 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 320E1C95AAC19B1354198B9CFD3DCEC4 /* Capo-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXHeadersBuildPhase section */ 262 | 263 | /* Begin PBXNativeTarget section */ 264 | 1FD79176FC5F0412DBC925AEA9AEF24B /* Pods-Capo_Tests */ = { 265 | isa = PBXNativeTarget; 266 | buildConfigurationList = 6788A69F4707AF8D6389FE1470DBC57A /* Build configuration list for PBXNativeTarget "Pods-Capo_Tests" */; 267 | buildPhases = ( 268 | 209FF224471F93DD1FB81D78351CF696 /* Headers */, 269 | E5F84DFF5DEA377018D3759E1B898D65 /* Sources */, 270 | 0B92277C416E62146C0C38EAC6132775 /* Frameworks */, 271 | 0AC168315CA0A18926A7810A90D3D3CB /* Resources */, 272 | ); 273 | buildRules = ( 274 | ); 275 | dependencies = ( 276 | 523C59F247063A4B86AC1C11A2D8AC5A /* PBXTargetDependency */, 277 | ); 278 | name = "Pods-Capo_Tests"; 279 | productName = "Pods-Capo_Tests"; 280 | productReference = BFB082989950FF75FBA43A4821805E1E /* Pods_Capo_Tests.framework */; 281 | productType = "com.apple.product-type.framework"; 282 | }; 283 | 5BB5FBE53EB6C0458865D047BCEB9512 /* Pods-Capo_Example */ = { 284 | isa = PBXNativeTarget; 285 | buildConfigurationList = 95C17C4F4B61FCAEAC7CBB43BE2EA232 /* Build configuration list for PBXNativeTarget "Pods-Capo_Example" */; 286 | buildPhases = ( 287 | 19C008AF3DCDCFC2CFA7812B4DE639BC /* Headers */, 288 | AC61F80F618E3F6BA6C1A088562268A0 /* Sources */, 289 | 167DBFD4FA312B628324BBF19649593A /* Frameworks */, 290 | 8601918E0E65C2BD07DD3F23A498805C /* Resources */, 291 | ); 292 | buildRules = ( 293 | ); 294 | dependencies = ( 295 | D041B22999C8A1A724FD7DA4C7C4A7A1 /* PBXTargetDependency */, 296 | ); 297 | name = "Pods-Capo_Example"; 298 | productName = "Pods-Capo_Example"; 299 | productReference = 997E70CC506C089CA8C17D923A18C25B /* Pods_Capo_Example.framework */; 300 | productType = "com.apple.product-type.framework"; 301 | }; 302 | 91B53847A689674F34DDAEF1BC5330A6 /* Capo */ = { 303 | isa = PBXNativeTarget; 304 | buildConfigurationList = 21504ADC2B53E937950138A603406139 /* Build configuration list for PBXNativeTarget "Capo" */; 305 | buildPhases = ( 306 | 28C61F7C24B7DB04879B750F5EAA0EB7 /* Headers */, 307 | 679702F377CF0B1B8A185A87EA801DB2 /* Sources */, 308 | 92CFF85172EA84E044AC0B3A9C18C7AF /* Frameworks */, 309 | 15EA469B9DF246D34803403CAEE7CB44 /* Resources */, 310 | ); 311 | buildRules = ( 312 | ); 313 | dependencies = ( 314 | ); 315 | name = Capo; 316 | productName = Capo; 317 | productReference = 3E6D54192EB52FCBFEE66F0697DFBC40 /* Capo.framework */; 318 | productType = "com.apple.product-type.framework"; 319 | }; 320 | /* End PBXNativeTarget section */ 321 | 322 | /* Begin PBXProject section */ 323 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 324 | isa = PBXProject; 325 | attributes = { 326 | LastSwiftUpdateCheck = 1100; 327 | LastUpgradeCheck = 1230; 328 | TargetAttributes = { 329 | 91B53847A689674F34DDAEF1BC5330A6 = { 330 | LastSwiftMigration = 1230; 331 | }; 332 | }; 333 | }; 334 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 335 | compatibilityVersion = "Xcode 3.2"; 336 | developmentRegion = en; 337 | hasScannedForEncodings = 0; 338 | knownRegions = ( 339 | en, 340 | Base, 341 | ); 342 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 343 | productRefGroup = 456476A0C41B14036455667C12FAB03F /* Products */; 344 | projectDirPath = ""; 345 | projectRoot = ""; 346 | targets = ( 347 | 91B53847A689674F34DDAEF1BC5330A6 /* Capo */, 348 | 5BB5FBE53EB6C0458865D047BCEB9512 /* Pods-Capo_Example */, 349 | 1FD79176FC5F0412DBC925AEA9AEF24B /* Pods-Capo_Tests */, 350 | ); 351 | }; 352 | /* End PBXProject section */ 353 | 354 | /* Begin PBXResourcesBuildPhase section */ 355 | 0AC168315CA0A18926A7810A90D3D3CB /* Resources */ = { 356 | isa = PBXResourcesBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | ); 360 | runOnlyForDeploymentPostprocessing = 0; 361 | }; 362 | 15EA469B9DF246D34803403CAEE7CB44 /* Resources */ = { 363 | isa = PBXResourcesBuildPhase; 364 | buildActionMask = 2147483647; 365 | files = ( 366 | ); 367 | runOnlyForDeploymentPostprocessing = 0; 368 | }; 369 | 8601918E0E65C2BD07DD3F23A498805C /* Resources */ = { 370 | isa = PBXResourcesBuildPhase; 371 | buildActionMask = 2147483647; 372 | files = ( 373 | ); 374 | runOnlyForDeploymentPostprocessing = 0; 375 | }; 376 | /* End PBXResourcesBuildPhase section */ 377 | 378 | /* Begin PBXSourcesBuildPhase section */ 379 | 679702F377CF0B1B8A185A87EA801DB2 /* Sources */ = { 380 | isa = PBXSourcesBuildPhase; 381 | buildActionMask = 2147483647; 382 | files = ( 383 | 5580D15B25972DE400973790 /* ButtonTuner.swift in Sources */, 384 | 8E7ACEA99A803CF0CE73DE255BF3D0C2 /* Capo-dummy.m in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | AC61F80F618E3F6BA6C1A088562268A0 /* Sources */ = { 389 | isa = PBXSourcesBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 06DB44911E41474F5BA274A3D74667F0 /* Pods-Capo_Example-dummy.m in Sources */, 393 | ); 394 | runOnlyForDeploymentPostprocessing = 0; 395 | }; 396 | E5F84DFF5DEA377018D3759E1B898D65 /* Sources */ = { 397 | isa = PBXSourcesBuildPhase; 398 | buildActionMask = 2147483647; 399 | files = ( 400 | 960F85415B7F3F577CE05E336C9F7D74 /* Pods-Capo_Tests-dummy.m in Sources */, 401 | ); 402 | runOnlyForDeploymentPostprocessing = 0; 403 | }; 404 | /* End PBXSourcesBuildPhase section */ 405 | 406 | /* Begin PBXTargetDependency section */ 407 | 523C59F247063A4B86AC1C11A2D8AC5A /* PBXTargetDependency */ = { 408 | isa = PBXTargetDependency; 409 | name = "Pods-Capo_Example"; 410 | target = 5BB5FBE53EB6C0458865D047BCEB9512 /* Pods-Capo_Example */; 411 | targetProxy = 530532BF301341FD577951F6FDAB83A1 /* PBXContainerItemProxy */; 412 | }; 413 | D041B22999C8A1A724FD7DA4C7C4A7A1 /* PBXTargetDependency */ = { 414 | isa = PBXTargetDependency; 415 | name = Capo; 416 | target = 91B53847A689674F34DDAEF1BC5330A6 /* Capo */; 417 | targetProxy = 85E9BD89063B0C6668DBA5C7A0E4499E /* PBXContainerItemProxy */; 418 | }; 419 | /* End PBXTargetDependency section */ 420 | 421 | /* Begin XCBuildConfiguration section */ 422 | 0ADD344F1BFD1FB7F540BA4C7B515259 /* Debug */ = { 423 | isa = XCBuildConfiguration; 424 | baseConfigurationReference = 3F2E0BE6106ECE7B8F870D49C6CD270E /* Capo.debug.xcconfig */; 425 | buildSettings = { 426 | CLANG_ENABLE_MODULES = YES; 427 | CODE_SIGN_IDENTITY = ""; 428 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 429 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 430 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 431 | CURRENT_PROJECT_VERSION = 1; 432 | DEFINES_MODULE = YES; 433 | DYLIB_COMPATIBILITY_VERSION = 1; 434 | DYLIB_CURRENT_VERSION = 1; 435 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 436 | GCC_PREFIX_HEADER = "Target Support Files/Capo/Capo-prefix.pch"; 437 | INFOPLIST_FILE = "Target Support Files/Capo/Capo-Info.plist"; 438 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 439 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 440 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 441 | MODULEMAP_FILE = "Target Support Files/Capo/Capo.modulemap"; 442 | PRODUCT_MODULE_NAME = Capo; 443 | PRODUCT_NAME = Capo; 444 | SDKROOT = iphoneos; 445 | SKIP_INSTALL = YES; 446 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 447 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 448 | SWIFT_VERSION = 5.0; 449 | TARGETED_DEVICE_FAMILY = "1,2"; 450 | VERSIONING_SYSTEM = "apple-generic"; 451 | VERSION_INFO_PREFIX = ""; 452 | }; 453 | name = Debug; 454 | }; 455 | 0CF063FCEC32B305FCE334B574550B8F /* Debug */ = { 456 | isa = XCBuildConfiguration; 457 | baseConfigurationReference = 81CBAA7BDC9DD19DCD13A841B3333954 /* Pods-Capo_Example.debug.xcconfig */; 458 | buildSettings = { 459 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 460 | CODE_SIGN_IDENTITY = ""; 461 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 462 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 463 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 464 | CURRENT_PROJECT_VERSION = 1; 465 | DEFINES_MODULE = YES; 466 | DYLIB_COMPATIBILITY_VERSION = 1; 467 | DYLIB_CURRENT_VERSION = 1; 468 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 469 | INFOPLIST_FILE = "Target Support Files/Pods-Capo_Example/Pods-Capo_Example-Info.plist"; 470 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 471 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 472 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 473 | MACH_O_TYPE = staticlib; 474 | MODULEMAP_FILE = "Target Support Files/Pods-Capo_Example/Pods-Capo_Example.modulemap"; 475 | OTHER_LDFLAGS = ""; 476 | OTHER_LIBTOOLFLAGS = ""; 477 | PODS_ROOT = "$(SRCROOT)"; 478 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 479 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 480 | SDKROOT = iphoneos; 481 | SKIP_INSTALL = YES; 482 | TARGETED_DEVICE_FAMILY = "1,2"; 483 | VERSIONING_SYSTEM = "apple-generic"; 484 | VERSION_INFO_PREFIX = ""; 485 | }; 486 | name = Debug; 487 | }; 488 | 56600DACC18236472E0208038DD01B52 /* Release */ = { 489 | isa = XCBuildConfiguration; 490 | baseConfigurationReference = 9DE37E8ACABBBD184B82699D615701F0 /* Capo.release.xcconfig */; 491 | buildSettings = { 492 | CLANG_ENABLE_MODULES = YES; 493 | CODE_SIGN_IDENTITY = ""; 494 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 495 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 496 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 497 | CURRENT_PROJECT_VERSION = 1; 498 | DEFINES_MODULE = YES; 499 | DYLIB_COMPATIBILITY_VERSION = 1; 500 | DYLIB_CURRENT_VERSION = 1; 501 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 502 | GCC_PREFIX_HEADER = "Target Support Files/Capo/Capo-prefix.pch"; 503 | INFOPLIST_FILE = "Target Support Files/Capo/Capo-Info.plist"; 504 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 505 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 506 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 507 | MODULEMAP_FILE = "Target Support Files/Capo/Capo.modulemap"; 508 | PRODUCT_MODULE_NAME = Capo; 509 | PRODUCT_NAME = Capo; 510 | SDKROOT = iphoneos; 511 | SKIP_INSTALL = YES; 512 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 513 | SWIFT_VERSION = 5.0; 514 | TARGETED_DEVICE_FAMILY = "1,2"; 515 | VALIDATE_PRODUCT = YES; 516 | VERSIONING_SYSTEM = "apple-generic"; 517 | VERSION_INFO_PREFIX = ""; 518 | }; 519 | name = Release; 520 | }; 521 | 701D16C9F5D0DE4D405A4D88E3F9B179 /* Release */ = { 522 | isa = XCBuildConfiguration; 523 | baseConfigurationReference = 3F74D3ADED9D36037CEF77461726C3D5 /* Pods-Capo_Tests.release.xcconfig */; 524 | buildSettings = { 525 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 526 | CODE_SIGN_IDENTITY = ""; 527 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 528 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 529 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 530 | CURRENT_PROJECT_VERSION = 1; 531 | DEFINES_MODULE = YES; 532 | DYLIB_COMPATIBILITY_VERSION = 1; 533 | DYLIB_CURRENT_VERSION = 1; 534 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 535 | INFOPLIST_FILE = "Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests-Info.plist"; 536 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 537 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 538 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 539 | MACH_O_TYPE = staticlib; 540 | MODULEMAP_FILE = "Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests.modulemap"; 541 | OTHER_LDFLAGS = ""; 542 | OTHER_LIBTOOLFLAGS = ""; 543 | PODS_ROOT = "$(SRCROOT)"; 544 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 545 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 546 | SDKROOT = iphoneos; 547 | SKIP_INSTALL = YES; 548 | TARGETED_DEVICE_FAMILY = "1,2"; 549 | VALIDATE_PRODUCT = YES; 550 | VERSIONING_SYSTEM = "apple-generic"; 551 | VERSION_INFO_PREFIX = ""; 552 | }; 553 | name = Release; 554 | }; 555 | 8EA67E59A3C3B1453076285718D5DFFC /* Debug */ = { 556 | isa = XCBuildConfiguration; 557 | baseConfigurationReference = 75CF1BB86AAB5407C23CEC81E796CB44 /* Pods-Capo_Tests.debug.xcconfig */; 558 | buildSettings = { 559 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 560 | CODE_SIGN_IDENTITY = ""; 561 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 562 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 563 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 564 | CURRENT_PROJECT_VERSION = 1; 565 | DEFINES_MODULE = YES; 566 | DYLIB_COMPATIBILITY_VERSION = 1; 567 | DYLIB_CURRENT_VERSION = 1; 568 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 569 | INFOPLIST_FILE = "Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests-Info.plist"; 570 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 571 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 572 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 573 | MACH_O_TYPE = staticlib; 574 | MODULEMAP_FILE = "Target Support Files/Pods-Capo_Tests/Pods-Capo_Tests.modulemap"; 575 | OTHER_LDFLAGS = ""; 576 | OTHER_LIBTOOLFLAGS = ""; 577 | PODS_ROOT = "$(SRCROOT)"; 578 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 579 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 580 | SDKROOT = iphoneos; 581 | SKIP_INSTALL = YES; 582 | TARGETED_DEVICE_FAMILY = "1,2"; 583 | VERSIONING_SYSTEM = "apple-generic"; 584 | VERSION_INFO_PREFIX = ""; 585 | }; 586 | name = Debug; 587 | }; 588 | 8F17DC3A99F99FBAD606CE6963886315 /* Release */ = { 589 | isa = XCBuildConfiguration; 590 | buildSettings = { 591 | ALWAYS_SEARCH_USER_PATHS = NO; 592 | CLANG_ANALYZER_NONNULL = YES; 593 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 594 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 595 | CLANG_CXX_LIBRARY = "libc++"; 596 | CLANG_ENABLE_MODULES = YES; 597 | CLANG_ENABLE_OBJC_ARC = YES; 598 | CLANG_ENABLE_OBJC_WEAK = YES; 599 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 600 | CLANG_WARN_BOOL_CONVERSION = YES; 601 | CLANG_WARN_COMMA = YES; 602 | CLANG_WARN_CONSTANT_CONVERSION = YES; 603 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 604 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 605 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 606 | CLANG_WARN_EMPTY_BODY = YES; 607 | CLANG_WARN_ENUM_CONVERSION = YES; 608 | CLANG_WARN_INFINITE_RECURSION = YES; 609 | CLANG_WARN_INT_CONVERSION = YES; 610 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 611 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 612 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 613 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 614 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 615 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 616 | CLANG_WARN_STRICT_PROTOTYPES = YES; 617 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 618 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 619 | CLANG_WARN_UNREACHABLE_CODE = YES; 620 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 621 | COPY_PHASE_STRIP = NO; 622 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 623 | ENABLE_NS_ASSERTIONS = NO; 624 | ENABLE_STRICT_OBJC_MSGSEND = YES; 625 | GCC_C_LANGUAGE_STANDARD = gnu11; 626 | GCC_NO_COMMON_BLOCKS = YES; 627 | GCC_PREPROCESSOR_DEFINITIONS = ( 628 | "POD_CONFIGURATION_RELEASE=1", 629 | "$(inherited)", 630 | ); 631 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 632 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 633 | GCC_WARN_UNDECLARED_SELECTOR = YES; 634 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 635 | GCC_WARN_UNUSED_FUNCTION = YES; 636 | GCC_WARN_UNUSED_VARIABLE = YES; 637 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 638 | MTL_ENABLE_DEBUG_INFO = NO; 639 | MTL_FAST_MATH = YES; 640 | PRODUCT_NAME = "$(TARGET_NAME)"; 641 | STRIP_INSTALLED_PRODUCT = NO; 642 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 643 | SWIFT_VERSION = 5.0; 644 | SYMROOT = "${SRCROOT}/../build"; 645 | }; 646 | name = Release; 647 | }; 648 | 916E0404255105F480DC4950B7625F7A /* Debug */ = { 649 | isa = XCBuildConfiguration; 650 | buildSettings = { 651 | ALWAYS_SEARCH_USER_PATHS = NO; 652 | CLANG_ANALYZER_NONNULL = YES; 653 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 654 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 655 | CLANG_CXX_LIBRARY = "libc++"; 656 | CLANG_ENABLE_MODULES = YES; 657 | CLANG_ENABLE_OBJC_ARC = YES; 658 | CLANG_ENABLE_OBJC_WEAK = YES; 659 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 660 | CLANG_WARN_BOOL_CONVERSION = YES; 661 | CLANG_WARN_COMMA = YES; 662 | CLANG_WARN_CONSTANT_CONVERSION = YES; 663 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 664 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 665 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 666 | CLANG_WARN_EMPTY_BODY = YES; 667 | CLANG_WARN_ENUM_CONVERSION = YES; 668 | CLANG_WARN_INFINITE_RECURSION = YES; 669 | CLANG_WARN_INT_CONVERSION = YES; 670 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 671 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 672 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 673 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 674 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 675 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 676 | CLANG_WARN_STRICT_PROTOTYPES = YES; 677 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 678 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 679 | CLANG_WARN_UNREACHABLE_CODE = YES; 680 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 681 | COPY_PHASE_STRIP = NO; 682 | DEBUG_INFORMATION_FORMAT = dwarf; 683 | ENABLE_STRICT_OBJC_MSGSEND = YES; 684 | ENABLE_TESTABILITY = YES; 685 | GCC_C_LANGUAGE_STANDARD = gnu11; 686 | GCC_DYNAMIC_NO_PIC = NO; 687 | GCC_NO_COMMON_BLOCKS = YES; 688 | GCC_OPTIMIZATION_LEVEL = 0; 689 | GCC_PREPROCESSOR_DEFINITIONS = ( 690 | "POD_CONFIGURATION_DEBUG=1", 691 | "DEBUG=1", 692 | "$(inherited)", 693 | ); 694 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 695 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 696 | GCC_WARN_UNDECLARED_SELECTOR = YES; 697 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 698 | GCC_WARN_UNUSED_FUNCTION = YES; 699 | GCC_WARN_UNUSED_VARIABLE = YES; 700 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 701 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 702 | MTL_FAST_MATH = YES; 703 | ONLY_ACTIVE_ARCH = YES; 704 | PRODUCT_NAME = "$(TARGET_NAME)"; 705 | STRIP_INSTALLED_PRODUCT = NO; 706 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 707 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 708 | SWIFT_VERSION = 5.0; 709 | SYMROOT = "${SRCROOT}/../build"; 710 | }; 711 | name = Debug; 712 | }; 713 | BD076EE2567A573DDA2310803D5A4103 /* Release */ = { 714 | isa = XCBuildConfiguration; 715 | baseConfigurationReference = 44E0C5AEA910B0A2073CAF630CECA1B6 /* Pods-Capo_Example.release.xcconfig */; 716 | buildSettings = { 717 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 718 | CODE_SIGN_IDENTITY = ""; 719 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 720 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 721 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 722 | CURRENT_PROJECT_VERSION = 1; 723 | DEFINES_MODULE = YES; 724 | DYLIB_COMPATIBILITY_VERSION = 1; 725 | DYLIB_CURRENT_VERSION = 1; 726 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 727 | INFOPLIST_FILE = "Target Support Files/Pods-Capo_Example/Pods-Capo_Example-Info.plist"; 728 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 729 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 730 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 731 | MACH_O_TYPE = staticlib; 732 | MODULEMAP_FILE = "Target Support Files/Pods-Capo_Example/Pods-Capo_Example.modulemap"; 733 | OTHER_LDFLAGS = ""; 734 | OTHER_LIBTOOLFLAGS = ""; 735 | PODS_ROOT = "$(SRCROOT)"; 736 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 737 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 738 | SDKROOT = iphoneos; 739 | SKIP_INSTALL = YES; 740 | TARGETED_DEVICE_FAMILY = "1,2"; 741 | VALIDATE_PRODUCT = YES; 742 | VERSIONING_SYSTEM = "apple-generic"; 743 | VERSION_INFO_PREFIX = ""; 744 | }; 745 | name = Release; 746 | }; 747 | /* End XCBuildConfiguration section */ 748 | 749 | /* Begin XCConfigurationList section */ 750 | 21504ADC2B53E937950138A603406139 /* Build configuration list for PBXNativeTarget "Capo" */ = { 751 | isa = XCConfigurationList; 752 | buildConfigurations = ( 753 | 0ADD344F1BFD1FB7F540BA4C7B515259 /* Debug */, 754 | 56600DACC18236472E0208038DD01B52 /* Release */, 755 | ); 756 | defaultConfigurationIsVisible = 0; 757 | defaultConfigurationName = Release; 758 | }; 759 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 760 | isa = XCConfigurationList; 761 | buildConfigurations = ( 762 | 916E0404255105F480DC4950B7625F7A /* Debug */, 763 | 8F17DC3A99F99FBAD606CE6963886315 /* Release */, 764 | ); 765 | defaultConfigurationIsVisible = 0; 766 | defaultConfigurationName = Release; 767 | }; 768 | 6788A69F4707AF8D6389FE1470DBC57A /* Build configuration list for PBXNativeTarget "Pods-Capo_Tests" */ = { 769 | isa = XCConfigurationList; 770 | buildConfigurations = ( 771 | 8EA67E59A3C3B1453076285718D5DFFC /* Debug */, 772 | 701D16C9F5D0DE4D405A4D88E3F9B179 /* Release */, 773 | ); 774 | defaultConfigurationIsVisible = 0; 775 | defaultConfigurationName = Release; 776 | }; 777 | 95C17C4F4B61FCAEAC7CBB43BE2EA232 /* Build configuration list for PBXNativeTarget "Pods-Capo_Example" */ = { 778 | isa = XCConfigurationList; 779 | buildConfigurations = ( 780 | 0CF063FCEC32B305FCE334B574550B8F /* Debug */, 781 | BD076EE2567A573DDA2310803D5A4103 /* Release */, 782 | ); 783 | defaultConfigurationIsVisible = 0; 784 | defaultConfigurationName = Release; 785 | }; 786 | /* End XCConfigurationList section */ 787 | }; 788 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 789 | } 790 | --------------------------------------------------------------------------------