├── .swift-version ├── GeometricActivityIndicator ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── GeometricActivityIndicator.swift ├── _Pods.xcodeproj ├── ReadmeAssets ├── shape1.gif ├── shape2.gif ├── shape3.gif ├── shape4.gif ├── shape5.gif ├── shape6.gif └── shape7.gif ├── Example ├── Pods │ ├── Target Support Files │ │ ├── GeometricActivityIndicator │ │ │ ├── GeometricActivityIndicator.modulemap │ │ │ ├── GeometricActivityIndicator-dummy.m │ │ │ ├── GeometricActivityIndicator-prefix.pch │ │ │ ├── GeometricActivityIndicator-umbrella.h │ │ │ ├── GeometricActivityIndicator.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-GeometricActivityIndicator_Tests │ │ │ ├── Pods-GeometricActivityIndicator_Tests-acknowledgements.markdown │ │ │ ├── Pods-GeometricActivityIndicator_Tests.modulemap │ │ │ ├── Pods-GeometricActivityIndicator_Tests-dummy.m │ │ │ ├── Pods-GeometricActivityIndicator_Tests-umbrella.h │ │ │ ├── Pods-GeometricActivityIndicator_Tests.debug.xcconfig │ │ │ ├── Pods-GeometricActivityIndicator_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-GeometricActivityIndicator_Tests-acknowledgements.plist │ │ │ ├── Pods-GeometricActivityIndicator_Tests-frameworks.sh │ │ │ └── Pods-GeometricActivityIndicator_Tests-resources.sh │ │ └── Pods-GeometricActivityIndicator_Example │ │ │ ├── Pods-GeometricActivityIndicator_Example.modulemap │ │ │ ├── Pods-GeometricActivityIndicator_Example-dummy.m │ │ │ ├── Pods-GeometricActivityIndicator_Example-umbrella.h │ │ │ ├── Pods-GeometricActivityIndicator_Example.debug.xcconfig │ │ │ ├── Pods-GeometricActivityIndicator_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-GeometricActivityIndicator_Example-acknowledgements.markdown │ │ │ ├── Pods-GeometricActivityIndicator_Example-acknowledgements.plist │ │ │ ├── Pods-GeometricActivityIndicator_Example-frameworks.sh │ │ │ └── Pods-GeometricActivityIndicator_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── GeometricActivityIndicator.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── GeometricActivityIndicator.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── GeometricActivityIndicator-Example.xcscheme │ └── project.pbxproj ├── GeometricActivityIndicator.xcworkspace │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── contents.xcworkspacedata ├── Podfile.lock ├── Tests │ ├── Info.plist │ └── Tests.swift └── GeometricActivityIndicator │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── ViewController.swift │ ├── Info.plist │ ├── AppDelegate.swift │ └── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── .travis.yml ├── .gitignore ├── LICENSE ├── GeometricActivityIndicator.podspec └── README.md /.swift-version: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /GeometricActivityIndicator/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GeometricActivityIndicator/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /ReadmeAssets/shape1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0f1sh/GeometricActivityIndicator/HEAD/ReadmeAssets/shape1.gif -------------------------------------------------------------------------------- /ReadmeAssets/shape2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0f1sh/GeometricActivityIndicator/HEAD/ReadmeAssets/shape2.gif -------------------------------------------------------------------------------- /ReadmeAssets/shape3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0f1sh/GeometricActivityIndicator/HEAD/ReadmeAssets/shape3.gif -------------------------------------------------------------------------------- /ReadmeAssets/shape4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0f1sh/GeometricActivityIndicator/HEAD/ReadmeAssets/shape4.gif -------------------------------------------------------------------------------- /ReadmeAssets/shape5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0f1sh/GeometricActivityIndicator/HEAD/ReadmeAssets/shape5.gif -------------------------------------------------------------------------------- /ReadmeAssets/shape6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0f1sh/GeometricActivityIndicator/HEAD/ReadmeAssets/shape6.gif -------------------------------------------------------------------------------- /ReadmeAssets/shape7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0f1sh/GeometricActivityIndicator/HEAD/ReadmeAssets/shape7.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator.modulemap: -------------------------------------------------------------------------------- 1 | framework module GeometricActivityIndicator { 2 | umbrella header "GeometricActivityIndicator-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GeometricActivityIndicator : NSObject 3 | @end 4 | @implementation PodsDummy_GeometricActivityIndicator 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'GeometricActivityIndicator_Example' do 4 | pod 'GeometricActivityIndicator', :path => '../' 5 | 6 | target 'GeometricActivityIndicator_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_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/GeometricActivityIndicator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_GeometricActivityIndicator_Tests { 2 | umbrella header "Pods-GeometricActivityIndicator_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_GeometricActivityIndicator_Example { 2 | umbrella header "Pods-GeometricActivityIndicator_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_GeometricActivityIndicator_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_GeometricActivityIndicator_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_GeometricActivityIndicator_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_GeometricActivityIndicator_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/GeometricActivityIndicator.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator-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/GeometricActivityIndicator.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GeometricActivityIndicator (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - GeometricActivityIndicator (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | GeometricActivityIndicator: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | GeometricActivityIndicator: 7d941e0e7e95b182ae38e1a53219c1cd6ffa7ec3 13 | 14 | PODFILE CHECKSUM: 30f1629396191c3770cd5dd3442b88ab50c69c0e 15 | 16 | COCOAPODS: 1.3.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GeometricActivityIndicator (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - GeometricActivityIndicator (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | GeometricActivityIndicator: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | GeometricActivityIndicator: 7d941e0e7e95b182ae38e1a53219c1cd6ffa7ec3 13 | 14 | PODFILE CHECKSUM: 30f1629396191c3770cd5dd3442b88ab50c69c0e 15 | 16 | COCOAPODS: 1.3.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator-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 GeometricActivityIndicatorVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char GeometricActivityIndicatorVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_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_GeometricActivityIndicator_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_GeometricActivityIndicator_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_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_GeometricActivityIndicator_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_GeometricActivityIndicator_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.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/GeometricActivityIndicator.xcworkspace -scheme GeometricActivityIndicator-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator/GeometricActivityIndicator.framework/Headers" 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator/GeometricActivityIndicator.framework/Headers" 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 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/GeometricActivityIndicator.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "GeometricActivityIndicator", 3 | "version": "0.1.0", 4 | "summary": "A collection of intricate geometric ActivityIndicator animations that add pizzaz to your projects.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/oct0f1sh/GeometricActivityIndicator", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "oct0f1sh": "duncan@duncanmacdonald.us" 13 | }, 14 | "source": { 15 | "git": "https://github.com/oct0f1sh/GeometricActivityIndicator.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "GeometricActivityIndicator/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /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/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator/GeometricActivityIndicator.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "GeometricActivityIndicator" 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/GeometricActivityIndicator/GeometricActivityIndicator.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "GeometricActivityIndicator" 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 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import GeometricActivityIndicator 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/GeometricActivityIndicator/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-GeometricActivityIndicator_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-GeometricActivityIndicator_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-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018 oct0f1sh 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/GeometricActivityIndicator/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 | -------------------------------------------------------------------------------- /Example/GeometricActivityIndicator/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // GeometricActivityIndicator 4 | // 5 | // Created by oct0f1sh on 05/04/2018. 6 | // Copyright (c) 2018 oct0f1sh. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import GeometricActivityIndicator 11 | 12 | class ViewController: UIViewController { 13 | @IBOutlet weak var geometricView: GeometricActivityIndicator! 14 | @IBOutlet weak var shapeLabel: UILabel! 15 | 16 | override func viewDidLoad() { 17 | changeShapeLabel() 18 | } 19 | 20 | func changeShapeLabel() { 21 | shapeLabel.text = "SHAPE \(geometricView.shapeTypeIndex)" 22 | } 23 | 24 | @IBAction func leftButtonTapped(_ sender: Any) { 25 | geometricView.shapeTypeIndex -= 1 26 | 27 | changeShapeLabel() 28 | } 29 | 30 | @IBAction func rightButtonTapped(_ sender: Any) { 31 | geometricView.shapeTypeIndex += 1 32 | 33 | changeShapeLabel() 34 | } 35 | 36 | @IBAction func startButtonTapped(_ sender: Any) { 37 | geometricView.startAnimating() 38 | } 39 | 40 | @IBAction func stopButtonTapped(_ sender: Any) { 41 | geometricView.stopAnimating() 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Example/GeometricActivityIndicator/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-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## GeometricActivityIndicator 5 | 6 | Copyright (c) 2018 oct0f1sh 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 | -------------------------------------------------------------------------------- /GeometricActivityIndicator.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint GeometricActivityIndicator.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 = 'GeometricActivityIndicator' 11 | s.version = '0.1.1' 12 | s.summary = 'A collection of intricate geometric ActivityIndicator animations that add pizzaz to your projects.' 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 | GeometricActivityIndicator adds UIViews that animate Metatron's Solids. These shapes have a unique shape and are the perfect addition to your projects. 22 | DESC 23 | 24 | s.homepage = 'https://github.com/oct0f1sh/GeometricActivityIndicator' 25 | s.screenshots = 'https://i.imgur.com/rcLA8Em.png' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'oct0f1sh' => 'duncan@duncanmacdonald.us' } 28 | s.source = { :git => 'https://github.com/oct0f1sh/GeometricActivityIndicator.git', :tag => s.version.to_s } 29 | s.social_media_url = 'https://twitter.com/oct0f1sh' 30 | 31 | s.ios.deployment_target = '11.0' 32 | 33 | s.source_files = 'GeometricActivityIndicator/Classes/**/*' 34 | 35 | # s.resource_bundles = { 36 | # 'GeometricActivityIndicator' => ['GeometricActivityIndicator/Assets/*.png'] 37 | # } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /Example/GeometricActivityIndicator/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // GeometricActivityIndicator 4 | // 5 | // Created by oct0f1sh on 05/04/2018. 6 | // Copyright (c) 2018 oct0f1sh. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_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) 2018 oct0f1sh <buzzbuzz.macdonald@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 | GeometricActivityIndicator 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/GeometricActivityIndicator/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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GeometricActivityIndicator 2 | 3 | [![CI Status](https://img.shields.io/travis/oct0f1sh/GeometricActivityIndicator.svg?style=flat)](https://travis-ci.org/oct0f1sh/GeometricActivityIndicator) 4 | [![Version](https://img.shields.io/cocoapods/v/GeometricActivityIndicator.svg?style=flat)](https://cocoapods.org/pods/GeometricActivityIndicator) 5 | [![License](https://img.shields.io/cocoapods/l/GeometricActivityIndicator.svg?style=flat)](https://cocoapods.org/pods/GeometricActivityIndicator) 6 | [![Platform](https://img.shields.io/cocoapods/p/GeometricActivityIndicator.svg?style=flat)](https://cocoapods.org/pods/GeometricActivityIndicator) 7 | 8 | ## Installation 9 | 10 | GeometricActivityIndicator is available through [CocoaPods](https://cocoapods.org). To install 11 | it, simply add the following line to your Podfile: 12 | 13 | ```ruby 14 | pod 'GeometricActivityIndicator' 15 | ``` 16 | 17 | ## Example 18 | 19 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 20 | 21 | ## Animations 22 | 23 | The animations included in GeometricActivityIndicator are based upon [Metatron's Solids/Sacred Geometry](http://3rddimension.online.fr/metatron_cube.htm). 24 | 25 | ![shapes](https://media.giphy.com/media/xiNGSBSQ3CWceNyOVW/giphy.gif) 26 | 27 | ## Usage 28 | 29 | ### Storyboard 30 | 31 | Implementing GeometricActivityIndicator in your project is as setting a custom class for a UIView. Many of the properties are editable using the Attributes Inspector. 32 | 33 | ![storyboard](https://media.giphy.com/media/7zlZ9tOBupkRFfHBcY/giphy.gif) 34 | 35 | In your ViewController: 36 | ```swift 37 | // create an IBOutlet for your new GeometricActivityIndicator 38 | @IBOutlet weak var geometricView: GeometricActivityIndicator! 39 | 40 | // now you can start / stop animating 41 | override func viewDidLoad() { 42 | geometricView.startAnimating() 43 | } 44 | 45 | @IBAction func stopButtonTapped(_ sender: Any) { 46 | geometricView.stopAnimating() 47 | } 48 | ``` 49 | 50 | __Important:__ GeometricActivityIndicator is a subclass of UIView, not UIActivityIndicatorView, make sure you set the custom class for the correct element. 51 | 52 | ### Programmatically 53 | 54 | ```swift 55 | class ViewController: UIViewController { 56 | var geometricView: GeometricActivityIndicator! 57 | 58 | override func viewDidLoad() { 59 | geometricView = GeometricActivityIndicator(frame: CGRect(x: 0, y: 0, width: 250, height: 250)) 60 | 61 | geometricView.startAnimating() 62 | } 63 | 64 | @IBAction func stopButtonTapped(_ sender: Any) { 65 | geometricView.stopAnimating() 66 | } 67 | } 68 | ``` 69 | 70 | ## Customization 71 | 72 | ### Changing Duration 73 | ```swift 74 | // changes the stencil animation duration to 3 seconds 75 | geometricView.stencilAnimDuration = 3.0 76 | ``` 77 | 78 | ```swift 79 | // changes the shape animation duration to 5 seconds 80 | geometricView.shapeAnimDuration = 5.0 81 | ``` 82 | 83 | ### Changing Animation Timing 84 | ```swift 85 | // changes stencil animation and shape animation to start and end at the same time with a duration of 3 seconds 86 | geometricView.stencilAnimDuration = 3.0 87 | geometricView.stencilAnimFromValue = 0.0 88 | geometricView.stencilAnimToValue = 1.0 89 | 90 | geometricView.shapeAnimDuration = 3.0 91 | geometricView.shapeAnimFromValue = 0.0 92 | geometricView.shapeAnimToValue = 1.0 93 | ``` 94 | 95 | ```swift 96 | // this is the default duration and timing for the stencil and shape animations 97 | // note: these are the default values when creating a GeometricActivityIndicator. 98 | // these values produce the animations shown above 99 | geometricView.stencilAnimDuration = 1.5 100 | geometricView.stencilAnimFromValue = -0.5 101 | geometricView.stencilAnimToValue = 2.0 102 | 103 | geometricView.shapeAnimDuration = 1.5 104 | geometricView.shapeAnimFromValue = -2.0 105 | geometricView.shapeAnimToValue = 1.5 106 | ``` 107 | 108 | ## Author 109 | 110 | oct0f1sh, duncan@duncanmacdonald.us 111 | 112 | ## License 113 | 114 | GeometricActivityIndicator is available under the MIT license. See the LICENSE file for more info. 115 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 10 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 11 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 12 | 13 | install_framework() 14 | { 15 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 16 | local source="${BUILT_PRODUCTS_DIR}/$1" 17 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 18 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 19 | elif [ -r "$1" ]; then 20 | local source="$1" 21 | fi 22 | 23 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | 25 | if [ -L "${source}" ]; then 26 | echo "Symlinked..." 27 | source="$(readlink "${source}")" 28 | fi 29 | 30 | # Use filter instead of exclude so missing patterns don't throw errors. 31 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 32 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 33 | 34 | local basename 35 | basename="$(basename -s .framework "$1")" 36 | binary="${destination}/${basename}.framework/${basename}" 37 | if ! [ -r "$binary" ]; then 38 | binary="${destination}/${basename}" 39 | fi 40 | 41 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 42 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 43 | strip_invalid_archs "$binary" 44 | fi 45 | 46 | # Resign the code if required by the build settings to avoid unstable apps 47 | code_sign_if_enabled "${destination}/$(basename "$1")" 48 | 49 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 50 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 51 | local swift_runtime_libs 52 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 53 | for lib in $swift_runtime_libs; do 54 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 55 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 56 | code_sign_if_enabled "${destination}/${lib}" 57 | done 58 | fi 59 | } 60 | 61 | # Copies the dSYM of a vendored framework 62 | install_dsym() { 63 | local source="$1" 64 | if [ -r "$source" ]; then 65 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" 66 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" 67 | fi 68 | } 69 | 70 | # Signs a framework with the provided identity 71 | code_sign_if_enabled() { 72 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 73 | # Use the current code_sign_identitiy 74 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 75 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 76 | 77 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 78 | code_sign_cmd="$code_sign_cmd &" 79 | fi 80 | echo "$code_sign_cmd" 81 | eval "$code_sign_cmd" 82 | fi 83 | } 84 | 85 | # Strip invalid architectures 86 | strip_invalid_archs() { 87 | binary="$1" 88 | # Get architectures for current file 89 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 90 | stripped="" 91 | for arch in $archs; do 92 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 93 | # Strip non-valid architectures in-place 94 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 95 | stripped="$stripped $arch" 96 | fi 97 | done 98 | if [[ "$stripped" ]]; then 99 | echo "Stripped $binary of architectures:$stripped" 100 | fi 101 | } 102 | 103 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 104 | wait 105 | fi 106 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 10 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 11 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 12 | 13 | install_framework() 14 | { 15 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 16 | local source="${BUILT_PRODUCTS_DIR}/$1" 17 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 18 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 19 | elif [ -r "$1" ]; then 20 | local source="$1" 21 | fi 22 | 23 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | 25 | if [ -L "${source}" ]; then 26 | echo "Symlinked..." 27 | source="$(readlink "${source}")" 28 | fi 29 | 30 | # Use filter instead of exclude so missing patterns don't throw errors. 31 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 32 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 33 | 34 | local basename 35 | basename="$(basename -s .framework "$1")" 36 | binary="${destination}/${basename}.framework/${basename}" 37 | if ! [ -r "$binary" ]; then 38 | binary="${destination}/${basename}" 39 | fi 40 | 41 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 42 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 43 | strip_invalid_archs "$binary" 44 | fi 45 | 46 | # Resign the code if required by the build settings to avoid unstable apps 47 | code_sign_if_enabled "${destination}/$(basename "$1")" 48 | 49 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 50 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 51 | local swift_runtime_libs 52 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 53 | for lib in $swift_runtime_libs; do 54 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 55 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 56 | code_sign_if_enabled "${destination}/${lib}" 57 | done 58 | fi 59 | } 60 | 61 | # Copies the dSYM of a vendored framework 62 | install_dsym() { 63 | local source="$1" 64 | if [ -r "$source" ]; then 65 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" 66 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" 67 | fi 68 | } 69 | 70 | # Signs a framework with the provided identity 71 | code_sign_if_enabled() { 72 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 73 | # Use the current code_sign_identitiy 74 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 75 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 76 | 77 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 78 | code_sign_cmd="$code_sign_cmd &" 79 | fi 80 | echo "$code_sign_cmd" 81 | eval "$code_sign_cmd" 82 | fi 83 | } 84 | 85 | # Strip invalid architectures 86 | strip_invalid_archs() { 87 | binary="$1" 88 | # Get architectures for current file 89 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 90 | stripped="" 91 | for arch in $archs; do 92 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 93 | # Strip non-valid architectures in-place 94 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 95 | stripped="$stripped $arch" 96 | fi 97 | done 98 | if [[ "$stripped" ]]; then 99 | echo "Stripped $binary of architectures:$stripped" 100 | fi 101 | } 102 | 103 | 104 | if [[ "$CONFIGURATION" == "Debug" ]]; then 105 | install_framework "${BUILT_PRODUCTS_DIR}/GeometricActivityIndicator/GeometricActivityIndicator.framework" 106 | fi 107 | if [[ "$CONFIGURATION" == "Release" ]]; then 108 | install_framework "${BUILT_PRODUCTS_DIR}/GeometricActivityIndicator/GeometricActivityIndicator.framework" 109 | fi 110 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 111 | wait 112 | fi 113 | -------------------------------------------------------------------------------- /Example/GeometricActivityIndicator.xcodeproj/xcshareddata/xcschemes/GeometricActivityIndicator-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 12 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 13 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 14 | 15 | case "${TARGETED_DEVICE_FAMILY}" in 16 | 1,2) 17 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 18 | ;; 19 | 1) 20 | TARGET_DEVICE_ARGS="--target-device iphone" 21 | ;; 22 | 2) 23 | TARGET_DEVICE_ARGS="--target-device ipad" 24 | ;; 25 | 3) 26 | TARGET_DEVICE_ARGS="--target-device tv" 27 | ;; 28 | 4) 29 | TARGET_DEVICE_ARGS="--target-device watch" 30 | ;; 31 | *) 32 | TARGET_DEVICE_ARGS="--target-device mac" 33 | ;; 34 | esac 35 | 36 | install_resource() 37 | { 38 | if [[ "$1" = /* ]] ; then 39 | RESOURCE_PATH="$1" 40 | else 41 | RESOURCE_PATH="${PODS_ROOT}/$1" 42 | fi 43 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 44 | cat << EOM 45 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 46 | EOM 47 | exit 1 48 | fi 49 | case $RESOURCE_PATH in 50 | *.storyboard) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.xib) 55 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 56 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 57 | ;; 58 | *.framework) 59 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 60 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 61 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 62 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 63 | ;; 64 | *.xcdatamodel) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 67 | ;; 68 | *.xcdatamodeld) 69 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 70 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 71 | ;; 72 | *.xcmappingmodel) 73 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 74 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 75 | ;; 76 | *.xcassets) 77 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 78 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 79 | ;; 80 | *) 81 | echo "$RESOURCE_PATH" || true 82 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 83 | ;; 84 | esac 85 | } 86 | 87 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 89 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 90 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 92 | fi 93 | rm -f "$RESOURCES_TO_COPY" 94 | 95 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 96 | then 97 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 98 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 99 | while read line; do 100 | if [[ $line != "${PODS_ROOT}*" ]]; then 101 | XCASSET_FILES+=("$line") 102 | fi 103 | done <<<"$OTHER_XCASSETS" 104 | 105 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 106 | fi 107 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 12 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 13 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 14 | 15 | case "${TARGETED_DEVICE_FAMILY}" in 16 | 1,2) 17 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 18 | ;; 19 | 1) 20 | TARGET_DEVICE_ARGS="--target-device iphone" 21 | ;; 22 | 2) 23 | TARGET_DEVICE_ARGS="--target-device ipad" 24 | ;; 25 | 3) 26 | TARGET_DEVICE_ARGS="--target-device tv" 27 | ;; 28 | 4) 29 | TARGET_DEVICE_ARGS="--target-device watch" 30 | ;; 31 | *) 32 | TARGET_DEVICE_ARGS="--target-device mac" 33 | ;; 34 | esac 35 | 36 | install_resource() 37 | { 38 | if [[ "$1" = /* ]] ; then 39 | RESOURCE_PATH="$1" 40 | else 41 | RESOURCE_PATH="${PODS_ROOT}/$1" 42 | fi 43 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 44 | cat << EOM 45 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 46 | EOM 47 | exit 1 48 | fi 49 | case $RESOURCE_PATH in 50 | *.storyboard) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.xib) 55 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 56 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 57 | ;; 58 | *.framework) 59 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 60 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 61 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 62 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 63 | ;; 64 | *.xcdatamodel) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 67 | ;; 68 | *.xcdatamodeld) 69 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 70 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 71 | ;; 72 | *.xcmappingmodel) 73 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 74 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 75 | ;; 76 | *.xcassets) 77 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 78 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 79 | ;; 80 | *) 81 | echo "$RESOURCE_PATH" || true 82 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 83 | ;; 84 | esac 85 | } 86 | 87 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 89 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 90 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 92 | fi 93 | rm -f "$RESOURCES_TO_COPY" 94 | 95 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 96 | then 97 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 98 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 99 | while read line; do 100 | if [[ $line != "${PODS_ROOT}*" ]]; then 101 | XCASSET_FILES+=("$line") 102 | fi 103 | done <<<"$OTHER_XCASSETS" 104 | 105 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 106 | fi 107 | -------------------------------------------------------------------------------- /Example/GeometricActivityIndicator/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 60 | 66 | 76 | 77 | 78 | 79 | 80 | 81 | 91 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | -------------------------------------------------------------------------------- /GeometricActivityIndicator/Classes/GeometricActivityIndicator.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MetatronSolid.swift 3 | // animations 4 | // 5 | // Created by Duncan MacDonald on 5/1/18. 6 | // Copyright © 2018 Duncan MacDonald. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import UIKit 11 | 12 | @IBDesignable 13 | public class GeometricActivityIndicator: UIView { 14 | 15 | // -------------------------- 16 | // MARK - STENCIL ATTRIBUTES 17 | // -------------------------- 18 | fileprivate var nodes: [Ring] 19 | 20 | @IBInspectable public var shouldDrawStencil: Bool = true { 21 | didSet { 22 | reloadOptions() 23 | } 24 | } 25 | 26 | public var stencilAnimDuration: CFTimeInterval = 1.5 27 | 28 | public var stencilAnimFromValue: Float = -0.5 29 | fileprivate var pausedStencilAnimFromValue: Float = 1 30 | 31 | public var stencilAnimToValue: Float = 2 32 | fileprivate var pausedStencilAnimToValue: Float = 1 33 | 34 | @IBInspectable public var stencilLineColor: UIColor = UIColor.darkGray { 35 | didSet { 36 | reloadOptions() 37 | } 38 | } 39 | 40 | @IBInspectable public var stencilLineWidth: CGFloat = 1 { 41 | didSet { 42 | reloadOptions() 43 | } 44 | } 45 | 46 | // -------------------------- 47 | // MARK - SHAPE ATTRIBUTES 48 | // -------------------------- 49 | public var shapeAnimDuration: CFTimeInterval = 1.5 50 | 51 | public var shapeAnimFromValue: Float = -2 52 | fileprivate var pausedShapeAnimFromValue: Float = 1 53 | 54 | public var shapeAnimToValue: Float = 1.5 55 | fileprivate var pausedShapeAnimToValue: Float = 1 56 | 57 | @IBInspectable public var shapeTypeIndex: Int = 1 { 58 | didSet { 59 | reloadOptions() 60 | } 61 | } 62 | 63 | @IBInspectable public var shapeLineColor: UIColor = UIColor.red { 64 | didSet { 65 | reloadOptions() 66 | } 67 | } 68 | 69 | @IBInspectable public var shapeLineWidth: CGFloat = 2 { 70 | didSet { 71 | reloadOptions() 72 | } 73 | } 74 | 75 | // -------------------------- 76 | // MARK - OVERRIDE VALUES 77 | // -------------------------- 78 | public override var bounds: CGRect { 79 | didSet { 80 | reloadOptions() 81 | } 82 | } 83 | 84 | public override var intrinsicContentSize: CGSize { 85 | return CGSize(width: 30, height: 30) 86 | } 87 | 88 | // -------------------------- 89 | // MARK - OVERRIDE METHODS 90 | // -------------------------- 91 | public override func layoutSubviews() { 92 | self.backgroundColor = .clear 93 | 94 | super.layoutSubviews() 95 | } 96 | 97 | public override init(frame: CGRect) { 98 | nodes = [] 99 | 100 | super.init(frame: frame) 101 | } 102 | 103 | public required init?(coder aDecoder: NSCoder) { 104 | nodes = [] 105 | 106 | super.init(coder: aDecoder) 107 | 108 | } 109 | 110 | public override func draw(_ rect: CGRect) { 111 | makeNodes() 112 | 113 | if shouldDrawStencil { 114 | drawMetatron(isStencil: true) 115 | } 116 | 117 | switch shapeTypeIndex { 118 | case 1: 119 | drawIcosahedron() 120 | case 2: 121 | drawTetrahedron() 122 | case 3: 123 | drawCube() 124 | case 4: 125 | drawOctahedron() 126 | case 5: 127 | drawUnnamed3() 128 | case 6: 129 | drawUnnamed1() 130 | case 7: 131 | drawMetatron() 132 | default: 133 | break 134 | } 135 | } 136 | 137 | // -------------------------- 138 | // MARK - HELPER METHODS 139 | // -------------------------- 140 | fileprivate func reloadOptions() { 141 | layer.sublayers?.forEach({ (layer) in 142 | layer.removeFromSuperlayer() 143 | }) 144 | setNeedsDisplay() 145 | } 146 | 147 | fileprivate func makeNodes() -> () { 148 | let radius: CGFloat = bounds.height / 8 149 | 150 | let offset: CGFloat = sqrt( pow(2 * radius, 2) - pow(radius, 2) ) 151 | 152 | let topWidth: CGFloat = sqrt( pow(4 * radius, 2) - pow(2 * radius, 2) ) 153 | 154 | var node1Point = CGPoint(x: (bounds.width / 2) - radius, y: bounds.maxY - radius) 155 | var node2Point = CGPoint(x: node1Point.x + topWidth, y: node1Point.y - (radius * 2)) 156 | var node3Point = CGPoint(x: node1Point.x + topWidth, y: node1Point.y - (radius * 6)) 157 | 158 | for _ in 1...5 { 159 | let node1 = Ring(frame: CGRect(x: node1Point.x, y: node1Point.y, width: radius * 2, height: radius * 2)) 160 | node1.tag = 15 161 | 162 | let node2 = Ring(frame: CGRect(x: node2Point.x, y: node2Point.y, width: radius * 2, height: radius * 2)) 163 | node2.tag = 15 164 | 165 | let node3 = Ring(frame: CGRect(x: node3Point.x, y: node3Point.y, width: radius * 2, height: radius * 2)) 166 | node3.tag = 15 167 | 168 | nodes.append(contentsOf: [node1, node2, node3]) 169 | 170 | node1Point.y = node1Point.y - (radius * 2) 171 | 172 | node2Point.x = node2Point.x - offset 173 | node2Point.y = node2Point.y - radius 174 | 175 | node3Point.x = node3Point.x - offset 176 | node3Point.y = node3Point.y + radius 177 | } 178 | layoutSubviews() 179 | } 180 | 181 | // -------------------------- 182 | // MARK - DRAWING METHOD 183 | // -------------------------- 184 | fileprivate func drawShapeFromCoords(coords: [[Int]], isStencil: Bool) { 185 | for coord in coords { 186 | let ring = nodes[coord[0]] 187 | let target = nodes[coord[1]] 188 | 189 | let linePath = UIBezierPath() 190 | linePath.move(to: ring.center) 191 | linePath.addLine(to: target.center) 192 | 193 | let shapeLayer = CAShapeLayer() 194 | shapeLayer.path = linePath.cgPath 195 | shapeLayer.strokeColor = isStencil ? stencilLineColor.cgColor : shapeLineColor.cgColor 196 | shapeLayer.fillColor = UIColor.clear.cgColor 197 | shapeLayer.lineWidth = isStencil ? stencilLineWidth : shapeLineWidth 198 | shapeLayer.lineCap = kCALineCapRound 199 | 200 | layer.addSublayer(shapeLayer) 201 | let animation = CABasicAnimation(keyPath: "strokeEnd") 202 | animation.duration = isStencil ? stencilAnimDuration : shapeAnimDuration 203 | animation.fromValue = isStencil ? pausedStencilAnimFromValue : pausedShapeAnimFromValue 204 | animation.toValue = isStencil ? pausedStencilAnimToValue : pausedShapeAnimToValue 205 | animation.isRemovedOnCompletion = false 206 | animation.repeatCount = .infinity 207 | animation.autoreverses = true 208 | shapeLayer.add(animation, forKey: "myanim") 209 | } 210 | } 211 | 212 | // -------------------------- 213 | // MARK - ANIMATION CONTROL METHODS 214 | // -------------------------- 215 | public func startAnimating() { 216 | pausedStencilAnimFromValue = stencilAnimFromValue 217 | pausedStencilAnimToValue = stencilAnimToValue 218 | 219 | pausedShapeAnimFromValue = shapeAnimFromValue 220 | pausedShapeAnimToValue = shapeAnimToValue 221 | 222 | reloadOptions() 223 | } 224 | 225 | public func stopAnimating() { 226 | pausedStencilAnimFromValue = 1 227 | pausedStencilAnimToValue = 1 228 | 229 | pausedShapeAnimFromValue = 1 230 | pausedShapeAnimToValue = 1 231 | 232 | reloadOptions() 233 | } 234 | 235 | // -------------------------- 236 | // MARK - SHAPE COORDINATES 237 | // -------------------------- 238 | fileprivate func drawCube() -> () { 239 | 240 | let cube: [[Int]] = [[0, 1], [1, 2], [2, 12], [12, 13], [13, 14], [14, 0], 241 | [3, 4], [4, 5], [5, 9], [9, 10], [10, 11], [11, 3], 242 | [0, 6], [1, 6], [2, 6], [12, 6], [13, 6], [14, 6]] 243 | 244 | drawShapeFromCoords(coords: cube, isStencil: false) 245 | } 246 | 247 | fileprivate func drawOctahedron() -> () { 248 | let coords: [[Int]] = [[0, 1], [1, 2], [2, 12], [12, 13], [13, 14], [14, 0], 249 | [3, 4], [4, 5], [5, 9], [9, 10], [10, 11], [11, 3], 250 | [12, 14], [14, 1], [1, 12], 251 | [13, 2], [2, 0], [0, 13], 252 | [10, 5], [5, 3], [3, 10], 253 | [11, 4], [4, 9], [9, 11]] 254 | 255 | drawShapeFromCoords(coords: coords, isStencil: false) 256 | } 257 | 258 | fileprivate func drawTetrahedron() -> () { 259 | let coords: [[Int]] = [[12, 14], [14, 1], [1, 12], 260 | [13, 2], [2, 0], [0, 13], 261 | [11, 4], [4, 9], [9, 11], 262 | [12, 6], [14, 6], [1, 6]] 263 | 264 | drawShapeFromCoords(coords: coords, isStencil: false) 265 | } 266 | 267 | fileprivate func drawIcosahedron() -> () { 268 | let coords: [[Int]] = [[0, 1], [1, 2], [2, 12], [12, 13], [13, 14], [14, 0], 269 | [13, 10], [0, 3], [2, 5], 270 | [12, 14], [14, 1], [1, 12], 271 | [10, 5], [5, 3], [3, 10]] 272 | 273 | drawShapeFromCoords(coords: coords, isStencil: false) 274 | } 275 | 276 | fileprivate func drawUnnamed1() -> () { 277 | let coords: [[Int]] = [[0, 1], [1, 2], [2, 12], [12, 13], [13, 14], [14, 0], 278 | [12, 10], [12, 5], [12, 11], [12, 4], [12, 6], 279 | [2, 9], [2, 4], [2, 10], [2, 3], [2, 6], 280 | [1, 5], [1, 3], [1, 11], [1, 9], [1, 6], 281 | [0, 11], [0, 4], [0, 10], [0, 5], [0, 6], 282 | [14, 3], [14, 10], [14, 9], [14, 4], [14, 6], 283 | [13, 11], [13, 9], [13, 3], [13, 5], [13, 6]] 284 | 285 | drawShapeFromCoords(coords: coords, isStencil: false) 286 | } 287 | 288 | fileprivate func drawMetatron(isStencil: Bool = false) -> () { 289 | let coords: [[Int]] = [[0, 1], [1, 2], [2, 12], [12, 13], [13, 14], [14, 0], 290 | [12, 10], [12, 5], [12, 11], [12, 4], [12, 6], 291 | [2, 9], [2, 4], [2, 10], [2, 3], [2, 6], 292 | [1, 5], [1, 3], [1, 11], [1, 9], [1, 6], 293 | [0, 11], [0, 4], [0, 10], [0, 5], [0, 6], 294 | [14, 3], [14, 10], [14, 9], [14, 4], [14, 6], 295 | [13, 11], [13, 9], [13, 3], [13, 5], [13, 6], 296 | [9, 5], [5, 4], [4, 3], [3, 11], [11, 10], [10, 9], 297 | [9, 4], [4, 11], [11, 9], 298 | [5, 3], [3, 10], [10, 5]] 299 | 300 | if isStencil { 301 | drawShapeFromCoords(coords: coords, isStencil: true) 302 | } else { 303 | drawShapeFromCoords(coords: coords, isStencil: false) 304 | } 305 | } 306 | 307 | fileprivate func drawUnnamed3() -> () { 308 | drawCube() 309 | drawOctahedron() 310 | drawTetrahedron() 311 | drawIcosahedron() 312 | } 313 | } 314 | 315 | fileprivate class Ring { 316 | var tag: Int = 0 317 | var rect: CGRect 318 | 319 | var center: CGPoint { 320 | get { 321 | return CGPoint(x: self.rect.midX, y: self.rect.midY) 322 | } 323 | } 324 | 325 | init(frame: CGRect) { 326 | self.rect = frame 327 | } 328 | } 329 | -------------------------------------------------------------------------------- /Example/GeometricActivityIndicator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 029284039FAF4C0C13375CAE /* Pods_GeometricActivityIndicator_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 395CFB022E71A1192FA2DFDD /* Pods_GeometricActivityIndicator_Example.framework */; }; 11 | 04C2BB8ECBB7FBAF4AFCF003 /* Pods_GeometricActivityIndicator_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 967A6CD89CF775E00A29C06D /* Pods_GeometricActivityIndicator_Tests.framework */; }; 12 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 13 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 14 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 15 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 16 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 17 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 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 = GeometricActivityIndicator; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 0C63DF120DE697993F23B05B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 32 | 18397B646C26A7C6225AF2AF /* GeometricActivityIndicator.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = GeometricActivityIndicator.podspec; path = ../GeometricActivityIndicator.podspec; sourceTree = ""; }; 33 | 2D0513CDCCD4C661E4DD8BFA /* Pods-GeometricActivityIndicator_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GeometricActivityIndicator_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests.debug.xcconfig"; sourceTree = ""; }; 34 | 395CFB022E71A1192FA2DFDD /* Pods_GeometricActivityIndicator_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GeometricActivityIndicator_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 607FACD01AFB9204008FA782 /* GeometricActivityIndicator_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GeometricActivityIndicator_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 36 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 37 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 38 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 39 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 40 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 41 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 42 | 607FACE51AFB9204008FA782 /* GeometricActivityIndicator_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = GeometricActivityIndicator_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 44 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 45 | 7EFEE995BD49C2EBDF16F414 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 46 | 967A6CD89CF775E00A29C06D /* Pods_GeometricActivityIndicator_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GeometricActivityIndicator_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | AB9F569B583E033AD00A9CCA /* Pods-GeometricActivityIndicator_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GeometricActivityIndicator_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests.release.xcconfig"; sourceTree = ""; }; 48 | CCB4F88C848999A69396D57A /* Pods-GeometricActivityIndicator_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GeometricActivityIndicator_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example.release.xcconfig"; sourceTree = ""; }; 49 | D69B024F4AF6EDC20AB73F3F /* Pods-GeometricActivityIndicator_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GeometricActivityIndicator_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example.debug.xcconfig"; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 029284039FAF4C0C13375CAE /* Pods_GeometricActivityIndicator_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 04C2BB8ECBB7FBAF4AFCF003 /* Pods_GeometricActivityIndicator_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 304FCE8DB1A1E15812DEE299 /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 395CFB022E71A1192FA2DFDD /* Pods_GeometricActivityIndicator_Example.framework */, 76 | 967A6CD89CF775E00A29C06D /* Pods_GeometricActivityIndicator_Tests.framework */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 53C6BF85DEA643D88DB69E43 /* Pods */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | D69B024F4AF6EDC20AB73F3F /* Pods-GeometricActivityIndicator_Example.debug.xcconfig */, 85 | CCB4F88C848999A69396D57A /* Pods-GeometricActivityIndicator_Example.release.xcconfig */, 86 | 2D0513CDCCD4C661E4DD8BFA /* Pods-GeometricActivityIndicator_Tests.debug.xcconfig */, 87 | AB9F569B583E033AD00A9CCA /* Pods-GeometricActivityIndicator_Tests.release.xcconfig */, 88 | ); 89 | name = Pods; 90 | sourceTree = ""; 91 | }; 92 | 607FACC71AFB9204008FA782 = { 93 | isa = PBXGroup; 94 | children = ( 95 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 96 | 607FACD21AFB9204008FA782 /* Example for GeometricActivityIndicator */, 97 | 607FACE81AFB9204008FA782 /* Tests */, 98 | 607FACD11AFB9204008FA782 /* Products */, 99 | 53C6BF85DEA643D88DB69E43 /* Pods */, 100 | 304FCE8DB1A1E15812DEE299 /* Frameworks */, 101 | ); 102 | sourceTree = ""; 103 | }; 104 | 607FACD11AFB9204008FA782 /* Products */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 607FACD01AFB9204008FA782 /* GeometricActivityIndicator_Example.app */, 108 | 607FACE51AFB9204008FA782 /* GeometricActivityIndicator_Tests.xctest */, 109 | ); 110 | name = Products; 111 | sourceTree = ""; 112 | }; 113 | 607FACD21AFB9204008FA782 /* Example for GeometricActivityIndicator */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 117 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 118 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 119 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 120 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 121 | 607FACD31AFB9204008FA782 /* Supporting Files */, 122 | ); 123 | name = "Example for GeometricActivityIndicator"; 124 | path = GeometricActivityIndicator; 125 | sourceTree = ""; 126 | }; 127 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 607FACD41AFB9204008FA782 /* Info.plist */, 131 | ); 132 | name = "Supporting Files"; 133 | sourceTree = ""; 134 | }; 135 | 607FACE81AFB9204008FA782 /* Tests */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 139 | 607FACE91AFB9204008FA782 /* Supporting Files */, 140 | ); 141 | path = Tests; 142 | sourceTree = ""; 143 | }; 144 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 145 | isa = PBXGroup; 146 | children = ( 147 | 607FACEA1AFB9204008FA782 /* Info.plist */, 148 | ); 149 | name = "Supporting Files"; 150 | sourceTree = ""; 151 | }; 152 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 18397B646C26A7C6225AF2AF /* GeometricActivityIndicator.podspec */, 156 | 7EFEE995BD49C2EBDF16F414 /* README.md */, 157 | 0C63DF120DE697993F23B05B /* LICENSE */, 158 | ); 159 | name = "Podspec Metadata"; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* GeometricActivityIndicator_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GeometricActivityIndicator_Example" */; 168 | buildPhases = ( 169 | 54E2B7AB53B9BC383E9175A0 /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 63C24572D246D79E6DA40F9F /* [CP] Embed Pods Frameworks */, 174 | E3D9F335E5849C4BFD3C14CA /* [CP] Copy Pods Resources */, 175 | ); 176 | buildRules = ( 177 | ); 178 | dependencies = ( 179 | ); 180 | name = GeometricActivityIndicator_Example; 181 | productName = GeometricActivityIndicator; 182 | productReference = 607FACD01AFB9204008FA782 /* GeometricActivityIndicator_Example.app */; 183 | productType = "com.apple.product-type.application"; 184 | }; 185 | 607FACE41AFB9204008FA782 /* GeometricActivityIndicator_Tests */ = { 186 | isa = PBXNativeTarget; 187 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GeometricActivityIndicator_Tests" */; 188 | buildPhases = ( 189 | 4DE50880A28443524C5BCE8F /* [CP] Check Pods Manifest.lock */, 190 | 607FACE11AFB9204008FA782 /* Sources */, 191 | 607FACE21AFB9204008FA782 /* Frameworks */, 192 | 607FACE31AFB9204008FA782 /* Resources */, 193 | CE4F20CEB5A56DD95101A09F /* [CP] Embed Pods Frameworks */, 194 | 3DAB3ECFB1040A91193A6DCD /* [CP] Copy Pods Resources */, 195 | ); 196 | buildRules = ( 197 | ); 198 | dependencies = ( 199 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 200 | ); 201 | name = GeometricActivityIndicator_Tests; 202 | productName = Tests; 203 | productReference = 607FACE51AFB9204008FA782 /* GeometricActivityIndicator_Tests.xctest */; 204 | productType = "com.apple.product-type.bundle.unit-test"; 205 | }; 206 | /* End PBXNativeTarget section */ 207 | 208 | /* Begin PBXProject section */ 209 | 607FACC81AFB9204008FA782 /* Project object */ = { 210 | isa = PBXProject; 211 | attributes = { 212 | LastSwiftUpdateCheck = 0830; 213 | LastUpgradeCheck = 0830; 214 | ORGANIZATIONNAME = CocoaPods; 215 | TargetAttributes = { 216 | 607FACCF1AFB9204008FA782 = { 217 | CreatedOnToolsVersion = 6.3.1; 218 | DevelopmentTeam = P4PBGN25JV; 219 | LastSwiftMigration = 0900; 220 | }; 221 | 607FACE41AFB9204008FA782 = { 222 | CreatedOnToolsVersion = 6.3.1; 223 | DevelopmentTeam = P4PBGN25JV; 224 | LastSwiftMigration = 0900; 225 | TestTargetID = 607FACCF1AFB9204008FA782; 226 | }; 227 | }; 228 | }; 229 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "GeometricActivityIndicator" */; 230 | compatibilityVersion = "Xcode 3.2"; 231 | developmentRegion = English; 232 | hasScannedForEncodings = 0; 233 | knownRegions = ( 234 | en, 235 | Base, 236 | ); 237 | mainGroup = 607FACC71AFB9204008FA782; 238 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 239 | projectDirPath = ""; 240 | projectRoot = ""; 241 | targets = ( 242 | 607FACCF1AFB9204008FA782 /* GeometricActivityIndicator_Example */, 243 | 607FACE41AFB9204008FA782 /* GeometricActivityIndicator_Tests */, 244 | ); 245 | }; 246 | /* End PBXProject section */ 247 | 248 | /* Begin PBXResourcesBuildPhase section */ 249 | 607FACCE1AFB9204008FA782 /* Resources */ = { 250 | isa = PBXResourcesBuildPhase; 251 | buildActionMask = 2147483647; 252 | files = ( 253 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 254 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 255 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 256 | ); 257 | runOnlyForDeploymentPostprocessing = 0; 258 | }; 259 | 607FACE31AFB9204008FA782 /* Resources */ = { 260 | isa = PBXResourcesBuildPhase; 261 | buildActionMask = 2147483647; 262 | files = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | }; 266 | /* End PBXResourcesBuildPhase section */ 267 | 268 | /* Begin PBXShellScriptBuildPhase section */ 269 | 3DAB3ECFB1040A91193A6DCD /* [CP] Copy Pods Resources */ = { 270 | isa = PBXShellScriptBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | ); 274 | inputPaths = ( 275 | ); 276 | name = "[CP] Copy Pods Resources"; 277 | outputPaths = ( 278 | ); 279 | runOnlyForDeploymentPostprocessing = 0; 280 | shellPath = /bin/sh; 281 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests-resources.sh\"\n"; 282 | showEnvVarsInLog = 0; 283 | }; 284 | 4DE50880A28443524C5BCE8F /* [CP] Check Pods Manifest.lock */ = { 285 | isa = PBXShellScriptBuildPhase; 286 | buildActionMask = 2147483647; 287 | files = ( 288 | ); 289 | inputPaths = ( 290 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 291 | "${PODS_ROOT}/Manifest.lock", 292 | ); 293 | name = "[CP] Check Pods Manifest.lock"; 294 | outputPaths = ( 295 | "$(DERIVED_FILE_DIR)/Pods-GeometricActivityIndicator_Tests-checkManifestLockResult.txt", 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | shellPath = /bin/sh; 299 | 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"; 300 | showEnvVarsInLog = 0; 301 | }; 302 | 54E2B7AB53B9BC383E9175A0 /* [CP] Check Pods Manifest.lock */ = { 303 | isa = PBXShellScriptBuildPhase; 304 | buildActionMask = 2147483647; 305 | files = ( 306 | ); 307 | inputPaths = ( 308 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 309 | "${PODS_ROOT}/Manifest.lock", 310 | ); 311 | name = "[CP] Check Pods Manifest.lock"; 312 | outputPaths = ( 313 | "$(DERIVED_FILE_DIR)/Pods-GeometricActivityIndicator_Example-checkManifestLockResult.txt", 314 | ); 315 | runOnlyForDeploymentPostprocessing = 0; 316 | shellPath = /bin/sh; 317 | 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"; 318 | showEnvVarsInLog = 0; 319 | }; 320 | 63C24572D246D79E6DA40F9F /* [CP] Embed Pods Frameworks */ = { 321 | isa = PBXShellScriptBuildPhase; 322 | buildActionMask = 2147483647; 323 | files = ( 324 | ); 325 | inputPaths = ( 326 | "${SRCROOT}/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example-frameworks.sh", 327 | "${BUILT_PRODUCTS_DIR}/GeometricActivityIndicator/GeometricActivityIndicator.framework", 328 | ); 329 | name = "[CP] Embed Pods Frameworks"; 330 | outputPaths = ( 331 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GeometricActivityIndicator.framework", 332 | ); 333 | runOnlyForDeploymentPostprocessing = 0; 334 | shellPath = /bin/sh; 335 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example-frameworks.sh\"\n"; 336 | showEnvVarsInLog = 0; 337 | }; 338 | CE4F20CEB5A56DD95101A09F /* [CP] Embed Pods Frameworks */ = { 339 | isa = PBXShellScriptBuildPhase; 340 | buildActionMask = 2147483647; 341 | files = ( 342 | ); 343 | inputPaths = ( 344 | ); 345 | name = "[CP] Embed Pods Frameworks"; 346 | outputPaths = ( 347 | ); 348 | runOnlyForDeploymentPostprocessing = 0; 349 | shellPath = /bin/sh; 350 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests-frameworks.sh\"\n"; 351 | showEnvVarsInLog = 0; 352 | }; 353 | E3D9F335E5849C4BFD3C14CA /* [CP] Copy Pods Resources */ = { 354 | isa = PBXShellScriptBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | ); 358 | inputPaths = ( 359 | ); 360 | name = "[CP] Copy Pods Resources"; 361 | outputPaths = ( 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | shellPath = /bin/sh; 365 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example-resources.sh\"\n"; 366 | showEnvVarsInLog = 0; 367 | }; 368 | /* End PBXShellScriptBuildPhase section */ 369 | 370 | /* Begin PBXSourcesBuildPhase section */ 371 | 607FACCC1AFB9204008FA782 /* Sources */ = { 372 | isa = PBXSourcesBuildPhase; 373 | buildActionMask = 2147483647; 374 | files = ( 375 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 376 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | }; 380 | 607FACE11AFB9204008FA782 /* Sources */ = { 381 | isa = PBXSourcesBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | /* End PBXSourcesBuildPhase section */ 389 | 390 | /* Begin PBXTargetDependency section */ 391 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 392 | isa = PBXTargetDependency; 393 | target = 607FACCF1AFB9204008FA782 /* GeometricActivityIndicator_Example */; 394 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 395 | }; 396 | /* End PBXTargetDependency section */ 397 | 398 | /* Begin PBXVariantGroup section */ 399 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 400 | isa = PBXVariantGroup; 401 | children = ( 402 | 607FACDA1AFB9204008FA782 /* Base */, 403 | ); 404 | name = Main.storyboard; 405 | sourceTree = ""; 406 | }; 407 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 408 | isa = PBXVariantGroup; 409 | children = ( 410 | 607FACDF1AFB9204008FA782 /* Base */, 411 | ); 412 | name = LaunchScreen.xib; 413 | sourceTree = ""; 414 | }; 415 | /* End PBXVariantGroup section */ 416 | 417 | /* Begin XCBuildConfiguration section */ 418 | 607FACED1AFB9204008FA782 /* Debug */ = { 419 | isa = XCBuildConfiguration; 420 | buildSettings = { 421 | ALWAYS_SEARCH_USER_PATHS = NO; 422 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 423 | CLANG_CXX_LIBRARY = "libc++"; 424 | CLANG_ENABLE_MODULES = YES; 425 | CLANG_ENABLE_OBJC_ARC = YES; 426 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 427 | CLANG_WARN_BOOL_CONVERSION = YES; 428 | CLANG_WARN_COMMA = YES; 429 | CLANG_WARN_CONSTANT_CONVERSION = YES; 430 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 431 | CLANG_WARN_EMPTY_BODY = YES; 432 | CLANG_WARN_ENUM_CONVERSION = YES; 433 | CLANG_WARN_INFINITE_RECURSION = YES; 434 | CLANG_WARN_INT_CONVERSION = YES; 435 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 436 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 437 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 438 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 439 | CLANG_WARN_STRICT_PROTOTYPES = YES; 440 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 441 | CLANG_WARN_UNREACHABLE_CODE = YES; 442 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 443 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 444 | COPY_PHASE_STRIP = NO; 445 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 446 | ENABLE_STRICT_OBJC_MSGSEND = YES; 447 | ENABLE_TESTABILITY = YES; 448 | GCC_C_LANGUAGE_STANDARD = gnu99; 449 | GCC_DYNAMIC_NO_PIC = NO; 450 | GCC_NO_COMMON_BLOCKS = YES; 451 | GCC_OPTIMIZATION_LEVEL = 0; 452 | GCC_PREPROCESSOR_DEFINITIONS = ( 453 | "DEBUG=1", 454 | "$(inherited)", 455 | ); 456 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 457 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 458 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 459 | GCC_WARN_UNDECLARED_SELECTOR = YES; 460 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 461 | GCC_WARN_UNUSED_FUNCTION = YES; 462 | GCC_WARN_UNUSED_VARIABLE = YES; 463 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 464 | MTL_ENABLE_DEBUG_INFO = YES; 465 | ONLY_ACTIVE_ARCH = YES; 466 | SDKROOT = iphoneos; 467 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 468 | }; 469 | name = Debug; 470 | }; 471 | 607FACEE1AFB9204008FA782 /* Release */ = { 472 | isa = XCBuildConfiguration; 473 | buildSettings = { 474 | ALWAYS_SEARCH_USER_PATHS = NO; 475 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 476 | CLANG_CXX_LIBRARY = "libc++"; 477 | CLANG_ENABLE_MODULES = YES; 478 | CLANG_ENABLE_OBJC_ARC = YES; 479 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 480 | CLANG_WARN_BOOL_CONVERSION = YES; 481 | CLANG_WARN_COMMA = YES; 482 | CLANG_WARN_CONSTANT_CONVERSION = YES; 483 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 484 | CLANG_WARN_EMPTY_BODY = YES; 485 | CLANG_WARN_ENUM_CONVERSION = YES; 486 | CLANG_WARN_INFINITE_RECURSION = YES; 487 | CLANG_WARN_INT_CONVERSION = YES; 488 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 489 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 490 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 491 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 492 | CLANG_WARN_STRICT_PROTOTYPES = YES; 493 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 494 | CLANG_WARN_UNREACHABLE_CODE = YES; 495 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 496 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 497 | COPY_PHASE_STRIP = NO; 498 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 499 | ENABLE_NS_ASSERTIONS = NO; 500 | ENABLE_STRICT_OBJC_MSGSEND = YES; 501 | GCC_C_LANGUAGE_STANDARD = gnu99; 502 | GCC_NO_COMMON_BLOCKS = YES; 503 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 504 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 505 | GCC_WARN_UNDECLARED_SELECTOR = YES; 506 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 507 | GCC_WARN_UNUSED_FUNCTION = YES; 508 | GCC_WARN_UNUSED_VARIABLE = YES; 509 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 510 | MTL_ENABLE_DEBUG_INFO = NO; 511 | SDKROOT = iphoneos; 512 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 513 | VALIDATE_PRODUCT = YES; 514 | }; 515 | name = Release; 516 | }; 517 | 607FACF01AFB9204008FA782 /* Debug */ = { 518 | isa = XCBuildConfiguration; 519 | baseConfigurationReference = D69B024F4AF6EDC20AB73F3F /* Pods-GeometricActivityIndicator_Example.debug.xcconfig */; 520 | buildSettings = { 521 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 522 | DEVELOPMENT_TEAM = P4PBGN25JV; 523 | INFOPLIST_FILE = GeometricActivityIndicator/Info.plist; 524 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 525 | MODULE_NAME = ExampleApp; 526 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 527 | PRODUCT_NAME = "$(TARGET_NAME)"; 528 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 529 | SWIFT_VERSION = 4.0; 530 | }; 531 | name = Debug; 532 | }; 533 | 607FACF11AFB9204008FA782 /* Release */ = { 534 | isa = XCBuildConfiguration; 535 | baseConfigurationReference = CCB4F88C848999A69396D57A /* Pods-GeometricActivityIndicator_Example.release.xcconfig */; 536 | buildSettings = { 537 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 538 | DEVELOPMENT_TEAM = P4PBGN25JV; 539 | INFOPLIST_FILE = GeometricActivityIndicator/Info.plist; 540 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 541 | MODULE_NAME = ExampleApp; 542 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 543 | PRODUCT_NAME = "$(TARGET_NAME)"; 544 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 545 | SWIFT_VERSION = 4.0; 546 | }; 547 | name = Release; 548 | }; 549 | 607FACF31AFB9204008FA782 /* Debug */ = { 550 | isa = XCBuildConfiguration; 551 | baseConfigurationReference = 2D0513CDCCD4C661E4DD8BFA /* Pods-GeometricActivityIndicator_Tests.debug.xcconfig */; 552 | buildSettings = { 553 | DEVELOPMENT_TEAM = P4PBGN25JV; 554 | FRAMEWORK_SEARCH_PATHS = ( 555 | "$(SDKROOT)/Developer/Library/Frameworks", 556 | "$(inherited)", 557 | ); 558 | GCC_PREPROCESSOR_DEFINITIONS = ( 559 | "DEBUG=1", 560 | "$(inherited)", 561 | ); 562 | INFOPLIST_FILE = Tests/Info.plist; 563 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 564 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 565 | PRODUCT_NAME = "$(TARGET_NAME)"; 566 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 567 | SWIFT_VERSION = 4.0; 568 | }; 569 | name = Debug; 570 | }; 571 | 607FACF41AFB9204008FA782 /* Release */ = { 572 | isa = XCBuildConfiguration; 573 | baseConfigurationReference = AB9F569B583E033AD00A9CCA /* Pods-GeometricActivityIndicator_Tests.release.xcconfig */; 574 | buildSettings = { 575 | DEVELOPMENT_TEAM = P4PBGN25JV; 576 | FRAMEWORK_SEARCH_PATHS = ( 577 | "$(SDKROOT)/Developer/Library/Frameworks", 578 | "$(inherited)", 579 | ); 580 | INFOPLIST_FILE = Tests/Info.plist; 581 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 582 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 583 | PRODUCT_NAME = "$(TARGET_NAME)"; 584 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 585 | SWIFT_VERSION = 4.0; 586 | }; 587 | name = Release; 588 | }; 589 | /* End XCBuildConfiguration section */ 590 | 591 | /* Begin XCConfigurationList section */ 592 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "GeometricActivityIndicator" */ = { 593 | isa = XCConfigurationList; 594 | buildConfigurations = ( 595 | 607FACED1AFB9204008FA782 /* Debug */, 596 | 607FACEE1AFB9204008FA782 /* Release */, 597 | ); 598 | defaultConfigurationIsVisible = 0; 599 | defaultConfigurationName = Release; 600 | }; 601 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GeometricActivityIndicator_Example" */ = { 602 | isa = XCConfigurationList; 603 | buildConfigurations = ( 604 | 607FACF01AFB9204008FA782 /* Debug */, 605 | 607FACF11AFB9204008FA782 /* Release */, 606 | ); 607 | defaultConfigurationIsVisible = 0; 608 | defaultConfigurationName = Release; 609 | }; 610 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GeometricActivityIndicator_Tests" */ = { 611 | isa = XCConfigurationList; 612 | buildConfigurations = ( 613 | 607FACF31AFB9204008FA782 /* Debug */, 614 | 607FACF41AFB9204008FA782 /* Release */, 615 | ); 616 | defaultConfigurationIsVisible = 0; 617 | defaultConfigurationName = Release; 618 | }; 619 | /* End XCConfigurationList section */ 620 | }; 621 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 622 | } 623 | -------------------------------------------------------------------------------- /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 | 040885325299AF7F94659D176C420D6E /* Pods-GeometricActivityIndicator_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C98B363CCF0469937E04077D738243E9 /* Pods-GeometricActivityIndicator_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 0C68F32C48EA0BBA06D86E434C7D76F7 /* GeometricActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A00C67EE1B3DEA07D8A416F37C44ABFB /* GeometricActivityIndicator.swift */; }; 12 | 0E1E8EBE550F8489FF13843B2A5AF56D /* GeometricActivityIndicator-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5466BDF41A88168C6AD079998805D6C /* GeometricActivityIndicator-dummy.m */; }; 13 | 1BA3188EA5FE56BE28E78452595B526D /* Pods-GeometricActivityIndicator_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BB65BAEDD94C6D6C71CB4C282BD6BCB4 /* Pods-GeometricActivityIndicator_Example-dummy.m */; }; 14 | 271AE53C0038B594FEBA2390CF868801 /* Pods-GeometricActivityIndicator_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFA031D56E3035918F0B06C9859C013 /* Pods-GeometricActivityIndicator_Tests-dummy.m */; }; 15 | 474F18856560F8B58F08DA5BC2626D6B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 16 | 5D9CD85D584076C43B070A4D869EFFF7 /* GeometricActivityIndicator-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 948F2E72E8125117321B4029B68EDF4D /* GeometricActivityIndicator-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | 86F569C94BB9A6072026DD47B676CEE6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 18 | A6A63F6699C4F9F4E5C0C06E9D072B5A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 19 | B84D738F5C93C80ADEF945232263A009 /* Pods-GeometricActivityIndicator_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CDD19ECA588605E59D7D9593D0A1CF77 /* Pods-GeometricActivityIndicator_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | AAA91B5B4853665DC96E85A17755D16E /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = 9DB7E3AE781435D5E6D00FF324AFD7D2; 28 | remoteInfo = GeometricActivityIndicator; 29 | }; 30 | /* End PBXContainerItemProxy section */ 31 | 32 | /* Begin PBXFileReference section */ 33 | 171B1C1F8808446C428E20DF9950DB2E /* GeometricActivityIndicator.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = GeometricActivityIndicator.modulemap; sourceTree = ""; }; 34 | 1B3E4773DF337F08E081641D3C5763D9 /* Pods_GeometricActivityIndicator_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_GeometricActivityIndicator_Example.framework; path = "Pods-GeometricActivityIndicator_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 346AC416D5FF4328A5BA5EAF6230E948 /* Pods-GeometricActivityIndicator_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GeometricActivityIndicator_Tests.release.xcconfig"; sourceTree = ""; }; 36 | 3837D7D3B3D5C5C98B99D6D40AD6580F /* GeometricActivityIndicator-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GeometricActivityIndicator-prefix.pch"; sourceTree = ""; }; 37 | 3D38165388E724C43FF36F7BD938338D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 38 | 406F561E52677A29334F974532CC33A5 /* Pods-GeometricActivityIndicator_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GeometricActivityIndicator_Example.debug.xcconfig"; sourceTree = ""; }; 39 | 4A2EB5069C0578ECC40E2C3B79066CA2 /* Pods-GeometricActivityIndicator_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GeometricActivityIndicator_Example-frameworks.sh"; sourceTree = ""; }; 40 | 5A30D8118CCFEA476F88EEC4D0D918FB /* Pods-GeometricActivityIndicator_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GeometricActivityIndicator_Tests-acknowledgements.plist"; sourceTree = ""; }; 41 | 6428285DD99AEE3727B8AB1DCF2134D0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 42 | 658F062EC1F885619B0D8F882CAFD3A9 /* Pods-GeometricActivityIndicator_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GeometricActivityIndicator_Example.release.xcconfig"; sourceTree = ""; }; 43 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 44 | 6A1B218EDD714A6426D6077A47198110 /* Pods-GeometricActivityIndicator_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-GeometricActivityIndicator_Tests-acknowledgements.markdown"; sourceTree = ""; }; 45 | 7AFA031D56E3035918F0B06C9859C013 /* Pods-GeometricActivityIndicator_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-GeometricActivityIndicator_Tests-dummy.m"; sourceTree = ""; }; 46 | 8957415156ED7137F75FB97939BEC026 /* GeometricActivityIndicator.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GeometricActivityIndicator.framework; path = GeometricActivityIndicator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | 8C546F3851214DE74324E56D0D12F5AA /* Pods-GeometricActivityIndicator_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GeometricActivityIndicator_Example-resources.sh"; sourceTree = ""; }; 48 | 9174AAACBEFD38C4ED4DAD0EBC788828 /* Pods-GeometricActivityIndicator_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GeometricActivityIndicator_Tests-frameworks.sh"; sourceTree = ""; }; 49 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 50 | 948F2E72E8125117321B4029B68EDF4D /* GeometricActivityIndicator-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GeometricActivityIndicator-umbrella.h"; sourceTree = ""; }; 51 | 95B5115F491D121C4CA7E4002F566A44 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 52 | A00C67EE1B3DEA07D8A416F37C44ABFB /* GeometricActivityIndicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GeometricActivityIndicator.swift; path = GeometricActivityIndicator/Classes/GeometricActivityIndicator.swift; sourceTree = ""; }; 53 | AB333EC039419CD2D5653A1E7EC67A5A /* Pods_GeometricActivityIndicator_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_GeometricActivityIndicator_Tests.framework; path = "Pods-GeometricActivityIndicator_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | AF6692513738D1F12DB1DB28EA6A716E /* GeometricActivityIndicator.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GeometricActivityIndicator.xcconfig; sourceTree = ""; }; 55 | B5466BDF41A88168C6AD079998805D6C /* GeometricActivityIndicator-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GeometricActivityIndicator-dummy.m"; sourceTree = ""; }; 56 | B5AA550255B25A26A3EE43092318DCE7 /* Pods-GeometricActivityIndicator_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GeometricActivityIndicator_Tests.debug.xcconfig"; sourceTree = ""; }; 57 | BB65BAEDD94C6D6C71CB4C282BD6BCB4 /* Pods-GeometricActivityIndicator_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-GeometricActivityIndicator_Example-dummy.m"; sourceTree = ""; }; 58 | C2522E928E3A67857A56A4E2CC56DDB7 /* Pods-GeometricActivityIndicator_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-GeometricActivityIndicator_Example.modulemap"; sourceTree = ""; }; 59 | C8AE1E983762ECC8B11C03BF9334FB5A /* Pods-GeometricActivityIndicator_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-GeometricActivityIndicator_Tests.modulemap"; sourceTree = ""; }; 60 | C98B363CCF0469937E04077D738243E9 /* Pods-GeometricActivityIndicator_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-GeometricActivityIndicator_Example-umbrella.h"; sourceTree = ""; }; 61 | CCE5A43E91BC6CC8DA618CBB7452D405 /* Pods-GeometricActivityIndicator_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-GeometricActivityIndicator_Example-acknowledgements.markdown"; sourceTree = ""; }; 62 | CDD19ECA588605E59D7D9593D0A1CF77 /* Pods-GeometricActivityIndicator_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-GeometricActivityIndicator_Tests-umbrella.h"; sourceTree = ""; }; 63 | CEED554F5B2A6BBF3CF15DE18E4892E9 /* Pods-GeometricActivityIndicator_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GeometricActivityIndicator_Example-acknowledgements.plist"; sourceTree = ""; }; 64 | EAA0A67445A5AEB2741C28059E704F56 /* Pods-GeometricActivityIndicator_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GeometricActivityIndicator_Tests-resources.sh"; sourceTree = ""; }; 65 | /* End PBXFileReference section */ 66 | 67 | /* Begin PBXFrameworksBuildPhase section */ 68 | 220A660A377A59B04CB2FED6F1C5F816 /* Frameworks */ = { 69 | isa = PBXFrameworksBuildPhase; 70 | buildActionMask = 2147483647; 71 | files = ( 72 | 86F569C94BB9A6072026DD47B676CEE6 /* Foundation.framework in Frameworks */, 73 | ); 74 | runOnlyForDeploymentPostprocessing = 0; 75 | }; 76 | C0F60598CD728B205704F62CD7550F5A /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | 474F18856560F8B58F08DA5BC2626D6B /* Foundation.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | E5270352F98D7B2C363BB7FDFB1C908D /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | A6A63F6699C4F9F4E5C0C06E9D072B5A /* Foundation.framework in Frameworks */, 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | /* End PBXFrameworksBuildPhase section */ 93 | 94 | /* Begin PBXGroup section */ 95 | 1C3EC9D23B09736A1A025B714E32DB21 /* GeometricActivityIndicator */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | A00C67EE1B3DEA07D8A416F37C44ABFB /* GeometricActivityIndicator.swift */, 99 | 8BF2F0CC137749D66638333872373CCE /* Support Files */, 100 | ); 101 | name = GeometricActivityIndicator; 102 | path = ../..; 103 | sourceTree = ""; 104 | }; 105 | 575C76E9360D41B40E997DA83CE9EE8B /* Targets Support Files */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | E7D73F9FB405CA763FC489078DAE7808 /* Pods-GeometricActivityIndicator_Example */, 109 | B86C948DF048192F7D6FB101D9159BA4 /* Pods-GeometricActivityIndicator_Tests */, 110 | ); 111 | name = "Targets Support Files"; 112 | sourceTree = ""; 113 | }; 114 | 7DB346D0F39D3F0E887471402A8071AB = { 115 | isa = PBXGroup; 116 | children = ( 117 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 118 | B6A7888EAA4B0731F554118F47363A5F /* Development Pods */, 119 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 120 | B6CED5BCCAB0855AD8959259822436BC /* Products */, 121 | 575C76E9360D41B40E997DA83CE9EE8B /* Targets Support Files */, 122 | ); 123 | sourceTree = ""; 124 | }; 125 | 8BF2F0CC137749D66638333872373CCE /* Support Files */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | 171B1C1F8808446C428E20DF9950DB2E /* GeometricActivityIndicator.modulemap */, 129 | AF6692513738D1F12DB1DB28EA6A716E /* GeometricActivityIndicator.xcconfig */, 130 | B5466BDF41A88168C6AD079998805D6C /* GeometricActivityIndicator-dummy.m */, 131 | 3837D7D3B3D5C5C98B99D6D40AD6580F /* GeometricActivityIndicator-prefix.pch */, 132 | 948F2E72E8125117321B4029B68EDF4D /* GeometricActivityIndicator-umbrella.h */, 133 | 95B5115F491D121C4CA7E4002F566A44 /* Info.plist */, 134 | ); 135 | name = "Support Files"; 136 | path = "Example/Pods/Target Support Files/GeometricActivityIndicator"; 137 | sourceTree = ""; 138 | }; 139 | B6A7888EAA4B0731F554118F47363A5F /* Development Pods */ = { 140 | isa = PBXGroup; 141 | children = ( 142 | 1C3EC9D23B09736A1A025B714E32DB21 /* GeometricActivityIndicator */, 143 | ); 144 | name = "Development Pods"; 145 | sourceTree = ""; 146 | }; 147 | B6CED5BCCAB0855AD8959259822436BC /* Products */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | 8957415156ED7137F75FB97939BEC026 /* GeometricActivityIndicator.framework */, 151 | 1B3E4773DF337F08E081641D3C5763D9 /* Pods_GeometricActivityIndicator_Example.framework */, 152 | AB333EC039419CD2D5653A1E7EC67A5A /* Pods_GeometricActivityIndicator_Tests.framework */, 153 | ); 154 | name = Products; 155 | sourceTree = ""; 156 | }; 157 | B86C948DF048192F7D6FB101D9159BA4 /* Pods-GeometricActivityIndicator_Tests */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | 3D38165388E724C43FF36F7BD938338D /* Info.plist */, 161 | C8AE1E983762ECC8B11C03BF9334FB5A /* Pods-GeometricActivityIndicator_Tests.modulemap */, 162 | 6A1B218EDD714A6426D6077A47198110 /* Pods-GeometricActivityIndicator_Tests-acknowledgements.markdown */, 163 | 5A30D8118CCFEA476F88EEC4D0D918FB /* Pods-GeometricActivityIndicator_Tests-acknowledgements.plist */, 164 | 7AFA031D56E3035918F0B06C9859C013 /* Pods-GeometricActivityIndicator_Tests-dummy.m */, 165 | 9174AAACBEFD38C4ED4DAD0EBC788828 /* Pods-GeometricActivityIndicator_Tests-frameworks.sh */, 166 | EAA0A67445A5AEB2741C28059E704F56 /* Pods-GeometricActivityIndicator_Tests-resources.sh */, 167 | CDD19ECA588605E59D7D9593D0A1CF77 /* Pods-GeometricActivityIndicator_Tests-umbrella.h */, 168 | B5AA550255B25A26A3EE43092318DCE7 /* Pods-GeometricActivityIndicator_Tests.debug.xcconfig */, 169 | 346AC416D5FF4328A5BA5EAF6230E948 /* Pods-GeometricActivityIndicator_Tests.release.xcconfig */, 170 | ); 171 | name = "Pods-GeometricActivityIndicator_Tests"; 172 | path = "Target Support Files/Pods-GeometricActivityIndicator_Tests"; 173 | sourceTree = ""; 174 | }; 175 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 176 | isa = PBXGroup; 177 | children = ( 178 | D35AF013A5F0BAD4F32504907A52519E /* iOS */, 179 | ); 180 | name = Frameworks; 181 | sourceTree = ""; 182 | }; 183 | D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, 187 | ); 188 | name = iOS; 189 | sourceTree = ""; 190 | }; 191 | E7D73F9FB405CA763FC489078DAE7808 /* Pods-GeometricActivityIndicator_Example */ = { 192 | isa = PBXGroup; 193 | children = ( 194 | 6428285DD99AEE3727B8AB1DCF2134D0 /* Info.plist */, 195 | C2522E928E3A67857A56A4E2CC56DDB7 /* Pods-GeometricActivityIndicator_Example.modulemap */, 196 | CCE5A43E91BC6CC8DA618CBB7452D405 /* Pods-GeometricActivityIndicator_Example-acknowledgements.markdown */, 197 | CEED554F5B2A6BBF3CF15DE18E4892E9 /* Pods-GeometricActivityIndicator_Example-acknowledgements.plist */, 198 | BB65BAEDD94C6D6C71CB4C282BD6BCB4 /* Pods-GeometricActivityIndicator_Example-dummy.m */, 199 | 4A2EB5069C0578ECC40E2C3B79066CA2 /* Pods-GeometricActivityIndicator_Example-frameworks.sh */, 200 | 8C546F3851214DE74324E56D0D12F5AA /* Pods-GeometricActivityIndicator_Example-resources.sh */, 201 | C98B363CCF0469937E04077D738243E9 /* Pods-GeometricActivityIndicator_Example-umbrella.h */, 202 | 406F561E52677A29334F974532CC33A5 /* Pods-GeometricActivityIndicator_Example.debug.xcconfig */, 203 | 658F062EC1F885619B0D8F882CAFD3A9 /* Pods-GeometricActivityIndicator_Example.release.xcconfig */, 204 | ); 205 | name = "Pods-GeometricActivityIndicator_Example"; 206 | path = "Target Support Files/Pods-GeometricActivityIndicator_Example"; 207 | sourceTree = ""; 208 | }; 209 | /* End PBXGroup section */ 210 | 211 | /* Begin PBXHeadersBuildPhase section */ 212 | 06777C543DC11214308609A33A8B3A09 /* Headers */ = { 213 | isa = PBXHeadersBuildPhase; 214 | buildActionMask = 2147483647; 215 | files = ( 216 | 5D9CD85D584076C43B070A4D869EFFF7 /* GeometricActivityIndicator-umbrella.h in Headers */, 217 | ); 218 | runOnlyForDeploymentPostprocessing = 0; 219 | }; 220 | 2624ECBBEA67CA2BDB64EAB747970C17 /* Headers */ = { 221 | isa = PBXHeadersBuildPhase; 222 | buildActionMask = 2147483647; 223 | files = ( 224 | B84D738F5C93C80ADEF945232263A009 /* Pods-GeometricActivityIndicator_Tests-umbrella.h in Headers */, 225 | ); 226 | runOnlyForDeploymentPostprocessing = 0; 227 | }; 228 | 828BDCEBB05DF6B8C7DDDDB8743A5AA4 /* Headers */ = { 229 | isa = PBXHeadersBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | 040885325299AF7F94659D176C420D6E /* Pods-GeometricActivityIndicator_Example-umbrella.h in Headers */, 233 | ); 234 | runOnlyForDeploymentPostprocessing = 0; 235 | }; 236 | /* End PBXHeadersBuildPhase section */ 237 | 238 | /* Begin PBXNativeTarget section */ 239 | 3410BBF96A2D5E6474DCD0E1CDDBAD68 /* Pods-GeometricActivityIndicator_Example */ = { 240 | isa = PBXNativeTarget; 241 | buildConfigurationList = 6C5EAE927036BCF7CE83B48E64537872 /* Build configuration list for PBXNativeTarget "Pods-GeometricActivityIndicator_Example" */; 242 | buildPhases = ( 243 | CDDE24801658FA79E91B55911E5A9756 /* Sources */, 244 | C0F60598CD728B205704F62CD7550F5A /* Frameworks */, 245 | 828BDCEBB05DF6B8C7DDDDB8743A5AA4 /* Headers */, 246 | ); 247 | buildRules = ( 248 | ); 249 | dependencies = ( 250 | 580EBE8465913288F88ADE8BE5F16096 /* PBXTargetDependency */, 251 | ); 252 | name = "Pods-GeometricActivityIndicator_Example"; 253 | productName = "Pods-GeometricActivityIndicator_Example"; 254 | productReference = 1B3E4773DF337F08E081641D3C5763D9 /* Pods_GeometricActivityIndicator_Example.framework */; 255 | productType = "com.apple.product-type.framework"; 256 | }; 257 | 9DB7E3AE781435D5E6D00FF324AFD7D2 /* GeometricActivityIndicator */ = { 258 | isa = PBXNativeTarget; 259 | buildConfigurationList = C8F3656E3D6C046DAA97DF9264F58425 /* Build configuration list for PBXNativeTarget "GeometricActivityIndicator" */; 260 | buildPhases = ( 261 | B09BAF70154D534B1A9C43900E4D2D98 /* Sources */, 262 | 220A660A377A59B04CB2FED6F1C5F816 /* Frameworks */, 263 | 06777C543DC11214308609A33A8B3A09 /* Headers */, 264 | ); 265 | buildRules = ( 266 | ); 267 | dependencies = ( 268 | ); 269 | name = GeometricActivityIndicator; 270 | productName = GeometricActivityIndicator; 271 | productReference = 8957415156ED7137F75FB97939BEC026 /* GeometricActivityIndicator.framework */; 272 | productType = "com.apple.product-type.framework"; 273 | }; 274 | A02C6C8E48E55170672E39BC4EEEF71C /* Pods-GeometricActivityIndicator_Tests */ = { 275 | isa = PBXNativeTarget; 276 | buildConfigurationList = 6C0264AF874F8BA236DF418B993F3E72 /* Build configuration list for PBXNativeTarget "Pods-GeometricActivityIndicator_Tests" */; 277 | buildPhases = ( 278 | CB25343211F627DD882550C1BEC3594D /* Sources */, 279 | E5270352F98D7B2C363BB7FDFB1C908D /* Frameworks */, 280 | 2624ECBBEA67CA2BDB64EAB747970C17 /* Headers */, 281 | ); 282 | buildRules = ( 283 | ); 284 | dependencies = ( 285 | ); 286 | name = "Pods-GeometricActivityIndicator_Tests"; 287 | productName = "Pods-GeometricActivityIndicator_Tests"; 288 | productReference = AB333EC039419CD2D5653A1E7EC67A5A /* Pods_GeometricActivityIndicator_Tests.framework */; 289 | productType = "com.apple.product-type.framework"; 290 | }; 291 | /* End PBXNativeTarget section */ 292 | 293 | /* Begin PBXProject section */ 294 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 295 | isa = PBXProject; 296 | attributes = { 297 | LastSwiftUpdateCheck = 0830; 298 | LastUpgradeCheck = 0700; 299 | }; 300 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 301 | compatibilityVersion = "Xcode 3.2"; 302 | developmentRegion = English; 303 | hasScannedForEncodings = 0; 304 | knownRegions = ( 305 | en, 306 | ); 307 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 308 | productRefGroup = B6CED5BCCAB0855AD8959259822436BC /* Products */; 309 | projectDirPath = ""; 310 | projectRoot = ""; 311 | targets = ( 312 | 9DB7E3AE781435D5E6D00FF324AFD7D2 /* GeometricActivityIndicator */, 313 | 3410BBF96A2D5E6474DCD0E1CDDBAD68 /* Pods-GeometricActivityIndicator_Example */, 314 | A02C6C8E48E55170672E39BC4EEEF71C /* Pods-GeometricActivityIndicator_Tests */, 315 | ); 316 | }; 317 | /* End PBXProject section */ 318 | 319 | /* Begin PBXSourcesBuildPhase section */ 320 | B09BAF70154D534B1A9C43900E4D2D98 /* Sources */ = { 321 | isa = PBXSourcesBuildPhase; 322 | buildActionMask = 2147483647; 323 | files = ( 324 | 0E1E8EBE550F8489FF13843B2A5AF56D /* GeometricActivityIndicator-dummy.m in Sources */, 325 | 0C68F32C48EA0BBA06D86E434C7D76F7 /* GeometricActivityIndicator.swift in Sources */, 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | }; 329 | CB25343211F627DD882550C1BEC3594D /* Sources */ = { 330 | isa = PBXSourcesBuildPhase; 331 | buildActionMask = 2147483647; 332 | files = ( 333 | 271AE53C0038B594FEBA2390CF868801 /* Pods-GeometricActivityIndicator_Tests-dummy.m in Sources */, 334 | ); 335 | runOnlyForDeploymentPostprocessing = 0; 336 | }; 337 | CDDE24801658FA79E91B55911E5A9756 /* Sources */ = { 338 | isa = PBXSourcesBuildPhase; 339 | buildActionMask = 2147483647; 340 | files = ( 341 | 1BA3188EA5FE56BE28E78452595B526D /* Pods-GeometricActivityIndicator_Example-dummy.m in Sources */, 342 | ); 343 | runOnlyForDeploymentPostprocessing = 0; 344 | }; 345 | /* End PBXSourcesBuildPhase section */ 346 | 347 | /* Begin PBXTargetDependency section */ 348 | 580EBE8465913288F88ADE8BE5F16096 /* PBXTargetDependency */ = { 349 | isa = PBXTargetDependency; 350 | name = GeometricActivityIndicator; 351 | target = 9DB7E3AE781435D5E6D00FF324AFD7D2 /* GeometricActivityIndicator */; 352 | targetProxy = AAA91B5B4853665DC96E85A17755D16E /* PBXContainerItemProxy */; 353 | }; 354 | /* End PBXTargetDependency section */ 355 | 356 | /* Begin XCBuildConfiguration section */ 357 | 054B17351F80A34257B49604FFE4B54F /* Debug */ = { 358 | isa = XCBuildConfiguration; 359 | baseConfigurationReference = AF6692513738D1F12DB1DB28EA6A716E /* GeometricActivityIndicator.xcconfig */; 360 | buildSettings = { 361 | CODE_SIGN_IDENTITY = ""; 362 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 363 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 364 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 365 | CURRENT_PROJECT_VERSION = 1; 366 | DEFINES_MODULE = YES; 367 | DYLIB_COMPATIBILITY_VERSION = 1; 368 | DYLIB_CURRENT_VERSION = 1; 369 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 370 | GCC_PREFIX_HEADER = "Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator-prefix.pch"; 371 | INFOPLIST_FILE = "Target Support Files/GeometricActivityIndicator/Info.plist"; 372 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 373 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 374 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 375 | MODULEMAP_FILE = "Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator.modulemap"; 376 | PRODUCT_NAME = GeometricActivityIndicator; 377 | SDKROOT = iphoneos; 378 | SKIP_INSTALL = YES; 379 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 380 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 381 | SWIFT_VERSION = 4.0; 382 | TARGETED_DEVICE_FAMILY = "1,2"; 383 | VERSIONING_SYSTEM = "apple-generic"; 384 | VERSION_INFO_PREFIX = ""; 385 | }; 386 | name = Debug; 387 | }; 388 | 33DA7F43A1D2FA3C74A8C8FC246E1FA6 /* Debug */ = { 389 | isa = XCBuildConfiguration; 390 | buildSettings = { 391 | ALWAYS_SEARCH_USER_PATHS = NO; 392 | CLANG_ANALYZER_NONNULL = YES; 393 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 394 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 395 | CLANG_CXX_LIBRARY = "libc++"; 396 | CLANG_ENABLE_MODULES = YES; 397 | CLANG_ENABLE_OBJC_ARC = YES; 398 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 399 | CLANG_WARN_BOOL_CONVERSION = YES; 400 | CLANG_WARN_COMMA = YES; 401 | CLANG_WARN_CONSTANT_CONVERSION = YES; 402 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 403 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 404 | CLANG_WARN_EMPTY_BODY = YES; 405 | CLANG_WARN_ENUM_CONVERSION = YES; 406 | CLANG_WARN_INFINITE_RECURSION = YES; 407 | CLANG_WARN_INT_CONVERSION = YES; 408 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 409 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 410 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 411 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 412 | CLANG_WARN_STRICT_PROTOTYPES = YES; 413 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 414 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 415 | CLANG_WARN_UNREACHABLE_CODE = YES; 416 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 417 | CODE_SIGNING_REQUIRED = NO; 418 | COPY_PHASE_STRIP = NO; 419 | DEBUG_INFORMATION_FORMAT = dwarf; 420 | ENABLE_STRICT_OBJC_MSGSEND = YES; 421 | ENABLE_TESTABILITY = YES; 422 | GCC_C_LANGUAGE_STANDARD = gnu11; 423 | GCC_DYNAMIC_NO_PIC = NO; 424 | GCC_NO_COMMON_BLOCKS = YES; 425 | GCC_OPTIMIZATION_LEVEL = 0; 426 | GCC_PREPROCESSOR_DEFINITIONS = ( 427 | "POD_CONFIGURATION_DEBUG=1", 428 | "DEBUG=1", 429 | "$(inherited)", 430 | ); 431 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 432 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 433 | GCC_WARN_UNDECLARED_SELECTOR = YES; 434 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 435 | GCC_WARN_UNUSED_FUNCTION = YES; 436 | GCC_WARN_UNUSED_VARIABLE = YES; 437 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 438 | MTL_ENABLE_DEBUG_INFO = YES; 439 | ONLY_ACTIVE_ARCH = YES; 440 | PRODUCT_NAME = "$(TARGET_NAME)"; 441 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 442 | STRIP_INSTALLED_PRODUCT = NO; 443 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 444 | SYMROOT = "${SRCROOT}/../build"; 445 | }; 446 | name = Debug; 447 | }; 448 | 6CFB655BF5B8644F3A1AA35A7057008A /* Debug */ = { 449 | isa = XCBuildConfiguration; 450 | baseConfigurationReference = B5AA550255B25A26A3EE43092318DCE7 /* Pods-GeometricActivityIndicator_Tests.debug.xcconfig */; 451 | buildSettings = { 452 | CODE_SIGN_IDENTITY = ""; 453 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 454 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 455 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 456 | CURRENT_PROJECT_VERSION = 1; 457 | DEFINES_MODULE = YES; 458 | DYLIB_COMPATIBILITY_VERSION = 1; 459 | DYLIB_CURRENT_VERSION = 1; 460 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 461 | INFOPLIST_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Tests/Info.plist"; 462 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 463 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 464 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 465 | MACH_O_TYPE = staticlib; 466 | MODULEMAP_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests.modulemap"; 467 | OTHER_LDFLAGS = ""; 468 | OTHER_LIBTOOLFLAGS = ""; 469 | PODS_ROOT = "$(SRCROOT)"; 470 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 471 | PRODUCT_NAME = Pods_GeometricActivityIndicator_Tests; 472 | SDKROOT = iphoneos; 473 | SKIP_INSTALL = YES; 474 | TARGETED_DEVICE_FAMILY = "1,2"; 475 | VERSIONING_SYSTEM = "apple-generic"; 476 | VERSION_INFO_PREFIX = ""; 477 | }; 478 | name = Debug; 479 | }; 480 | 731DC216E1A58545B559F6E0A2418060 /* Release */ = { 481 | isa = XCBuildConfiguration; 482 | buildSettings = { 483 | ALWAYS_SEARCH_USER_PATHS = NO; 484 | CLANG_ANALYZER_NONNULL = YES; 485 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 486 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 487 | CLANG_CXX_LIBRARY = "libc++"; 488 | CLANG_ENABLE_MODULES = YES; 489 | CLANG_ENABLE_OBJC_ARC = YES; 490 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 491 | CLANG_WARN_BOOL_CONVERSION = YES; 492 | CLANG_WARN_COMMA = YES; 493 | CLANG_WARN_CONSTANT_CONVERSION = YES; 494 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 495 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 496 | CLANG_WARN_EMPTY_BODY = YES; 497 | CLANG_WARN_ENUM_CONVERSION = YES; 498 | CLANG_WARN_INFINITE_RECURSION = YES; 499 | CLANG_WARN_INT_CONVERSION = YES; 500 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 501 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 502 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 503 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 504 | CLANG_WARN_STRICT_PROTOTYPES = YES; 505 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 506 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 507 | CLANG_WARN_UNREACHABLE_CODE = YES; 508 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 509 | CODE_SIGNING_REQUIRED = NO; 510 | COPY_PHASE_STRIP = NO; 511 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 512 | ENABLE_NS_ASSERTIONS = NO; 513 | ENABLE_STRICT_OBJC_MSGSEND = YES; 514 | GCC_C_LANGUAGE_STANDARD = gnu11; 515 | GCC_NO_COMMON_BLOCKS = YES; 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "POD_CONFIGURATION_RELEASE=1", 518 | "$(inherited)", 519 | ); 520 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 521 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 522 | GCC_WARN_UNDECLARED_SELECTOR = YES; 523 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 524 | GCC_WARN_UNUSED_FUNCTION = YES; 525 | GCC_WARN_UNUSED_VARIABLE = YES; 526 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 527 | MTL_ENABLE_DEBUG_INFO = NO; 528 | PRODUCT_NAME = "$(TARGET_NAME)"; 529 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 530 | STRIP_INSTALLED_PRODUCT = NO; 531 | SYMROOT = "${SRCROOT}/../build"; 532 | }; 533 | name = Release; 534 | }; 535 | 78FE4F377712E820CA06EDBEC8F57A74 /* Debug */ = { 536 | isa = XCBuildConfiguration; 537 | baseConfigurationReference = 406F561E52677A29334F974532CC33A5 /* Pods-GeometricActivityIndicator_Example.debug.xcconfig */; 538 | buildSettings = { 539 | CODE_SIGN_IDENTITY = ""; 540 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 541 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 542 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 543 | CURRENT_PROJECT_VERSION = 1; 544 | DEFINES_MODULE = YES; 545 | DYLIB_COMPATIBILITY_VERSION = 1; 546 | DYLIB_CURRENT_VERSION = 1; 547 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 548 | INFOPLIST_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Example/Info.plist"; 549 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 550 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 551 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 552 | MACH_O_TYPE = staticlib; 553 | MODULEMAP_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example.modulemap"; 554 | OTHER_LDFLAGS = ""; 555 | OTHER_LIBTOOLFLAGS = ""; 556 | PODS_ROOT = "$(SRCROOT)"; 557 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 558 | PRODUCT_NAME = Pods_GeometricActivityIndicator_Example; 559 | SDKROOT = iphoneos; 560 | SKIP_INSTALL = YES; 561 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 562 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 563 | TARGETED_DEVICE_FAMILY = "1,2"; 564 | VERSIONING_SYSTEM = "apple-generic"; 565 | VERSION_INFO_PREFIX = ""; 566 | }; 567 | name = Debug; 568 | }; 569 | 7997867248F84F7F456F4AD72D7FA4D2 /* Release */ = { 570 | isa = XCBuildConfiguration; 571 | baseConfigurationReference = AF6692513738D1F12DB1DB28EA6A716E /* GeometricActivityIndicator.xcconfig */; 572 | buildSettings = { 573 | CODE_SIGN_IDENTITY = ""; 574 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 575 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 576 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 577 | CURRENT_PROJECT_VERSION = 1; 578 | DEFINES_MODULE = YES; 579 | DYLIB_COMPATIBILITY_VERSION = 1; 580 | DYLIB_CURRENT_VERSION = 1; 581 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 582 | GCC_PREFIX_HEADER = "Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator-prefix.pch"; 583 | INFOPLIST_FILE = "Target Support Files/GeometricActivityIndicator/Info.plist"; 584 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 585 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 586 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 587 | MODULEMAP_FILE = "Target Support Files/GeometricActivityIndicator/GeometricActivityIndicator.modulemap"; 588 | PRODUCT_NAME = GeometricActivityIndicator; 589 | SDKROOT = iphoneos; 590 | SKIP_INSTALL = YES; 591 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 592 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 593 | SWIFT_VERSION = 4.0; 594 | TARGETED_DEVICE_FAMILY = "1,2"; 595 | VALIDATE_PRODUCT = YES; 596 | VERSIONING_SYSTEM = "apple-generic"; 597 | VERSION_INFO_PREFIX = ""; 598 | }; 599 | name = Release; 600 | }; 601 | 7BF49BA403E459E832F9EA8F3AFA8D83 /* Release */ = { 602 | isa = XCBuildConfiguration; 603 | baseConfigurationReference = 658F062EC1F885619B0D8F882CAFD3A9 /* Pods-GeometricActivityIndicator_Example.release.xcconfig */; 604 | buildSettings = { 605 | CODE_SIGN_IDENTITY = ""; 606 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 607 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 608 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 609 | CURRENT_PROJECT_VERSION = 1; 610 | DEFINES_MODULE = YES; 611 | DYLIB_COMPATIBILITY_VERSION = 1; 612 | DYLIB_CURRENT_VERSION = 1; 613 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 614 | INFOPLIST_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Example/Info.plist"; 615 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 616 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 617 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 618 | MACH_O_TYPE = staticlib; 619 | MODULEMAP_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Example/Pods-GeometricActivityIndicator_Example.modulemap"; 620 | OTHER_LDFLAGS = ""; 621 | OTHER_LIBTOOLFLAGS = ""; 622 | PODS_ROOT = "$(SRCROOT)"; 623 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 624 | PRODUCT_NAME = Pods_GeometricActivityIndicator_Example; 625 | SDKROOT = iphoneos; 626 | SKIP_INSTALL = YES; 627 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 628 | TARGETED_DEVICE_FAMILY = "1,2"; 629 | VALIDATE_PRODUCT = YES; 630 | VERSIONING_SYSTEM = "apple-generic"; 631 | VERSION_INFO_PREFIX = ""; 632 | }; 633 | name = Release; 634 | }; 635 | A37EF785C561151C2AAD35D0405C6F69 /* Release */ = { 636 | isa = XCBuildConfiguration; 637 | baseConfigurationReference = 346AC416D5FF4328A5BA5EAF6230E948 /* Pods-GeometricActivityIndicator_Tests.release.xcconfig */; 638 | buildSettings = { 639 | CODE_SIGN_IDENTITY = ""; 640 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 641 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 642 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 643 | CURRENT_PROJECT_VERSION = 1; 644 | DEFINES_MODULE = YES; 645 | DYLIB_COMPATIBILITY_VERSION = 1; 646 | DYLIB_CURRENT_VERSION = 1; 647 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 648 | INFOPLIST_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Tests/Info.plist"; 649 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 650 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 651 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 652 | MACH_O_TYPE = staticlib; 653 | MODULEMAP_FILE = "Target Support Files/Pods-GeometricActivityIndicator_Tests/Pods-GeometricActivityIndicator_Tests.modulemap"; 654 | OTHER_LDFLAGS = ""; 655 | OTHER_LIBTOOLFLAGS = ""; 656 | PODS_ROOT = "$(SRCROOT)"; 657 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 658 | PRODUCT_NAME = Pods_GeometricActivityIndicator_Tests; 659 | SDKROOT = iphoneos; 660 | SKIP_INSTALL = YES; 661 | TARGETED_DEVICE_FAMILY = "1,2"; 662 | VALIDATE_PRODUCT = YES; 663 | VERSIONING_SYSTEM = "apple-generic"; 664 | VERSION_INFO_PREFIX = ""; 665 | }; 666 | name = Release; 667 | }; 668 | /* End XCBuildConfiguration section */ 669 | 670 | /* Begin XCConfigurationList section */ 671 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 672 | isa = XCConfigurationList; 673 | buildConfigurations = ( 674 | 33DA7F43A1D2FA3C74A8C8FC246E1FA6 /* Debug */, 675 | 731DC216E1A58545B559F6E0A2418060 /* Release */, 676 | ); 677 | defaultConfigurationIsVisible = 0; 678 | defaultConfigurationName = Release; 679 | }; 680 | 6C0264AF874F8BA236DF418B993F3E72 /* Build configuration list for PBXNativeTarget "Pods-GeometricActivityIndicator_Tests" */ = { 681 | isa = XCConfigurationList; 682 | buildConfigurations = ( 683 | 6CFB655BF5B8644F3A1AA35A7057008A /* Debug */, 684 | A37EF785C561151C2AAD35D0405C6F69 /* Release */, 685 | ); 686 | defaultConfigurationIsVisible = 0; 687 | defaultConfigurationName = Release; 688 | }; 689 | 6C5EAE927036BCF7CE83B48E64537872 /* Build configuration list for PBXNativeTarget "Pods-GeometricActivityIndicator_Example" */ = { 690 | isa = XCConfigurationList; 691 | buildConfigurations = ( 692 | 78FE4F377712E820CA06EDBEC8F57A74 /* Debug */, 693 | 7BF49BA403E459E832F9EA8F3AFA8D83 /* Release */, 694 | ); 695 | defaultConfigurationIsVisible = 0; 696 | defaultConfigurationName = Release; 697 | }; 698 | C8F3656E3D6C046DAA97DF9264F58425 /* Build configuration list for PBXNativeTarget "GeometricActivityIndicator" */ = { 699 | isa = XCConfigurationList; 700 | buildConfigurations = ( 701 | 054B17351F80A34257B49604FFE4B54F /* Debug */, 702 | 7997867248F84F7F456F4AD72D7FA4D2 /* Release */, 703 | ); 704 | defaultConfigurationIsVisible = 0; 705 | defaultConfigurationName = Release; 706 | }; 707 | /* End XCConfigurationList section */ 708 | }; 709 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 710 | } 711 | --------------------------------------------------------------------------------