diff --git a/UAProgressView-Example/Podfile b/UAProgressView-Example/Podfile index 6a2be6c..9f5dfd6 100644 --- a/UAProgressView-Example/Podfile +++ b/UAProgressView-Example/Podfile @@ -1,2 +1,5 @@ -platform :ios, '6.0' -pod 'UAProgressView', :path => '..' \ No newline at end of file +platform :ios, '9.0' + +target 'UAProgressView-Example' do + pod 'UAProgressView', :path => '..' +end diff --git a/UAProgressView-Example/Podfile.lock b/UAProgressView-Example/Podfile.lock index 06ebc4d..622587f 100644 --- a/UAProgressView-Example/Podfile.lock +++ b/UAProgressView-Example/Podfile.lock @@ -1,14 +1,16 @@ PODS: - - UAProgressView (0.1.1) + - UAProgressView (0.1.4) DEPENDENCIES: - UAProgressView (from `..`) EXTERNAL SOURCES: UAProgressView: - :path: .. + :path: ".." SPEC CHECKSUMS: - UAProgressView: 1e1c5e7b6c4327b3e44aef996f4010adb0743d98 + UAProgressView: 6796f5aa05037fb2940521636163b9db40a6c534 -COCOAPODS: 0.33.1 +PODFILE CHECKSUM: b78654b8db0a5b8cf07fb5ea10dae1f06990a9da + +COCOAPODS: 1.11.2 diff --git a/UAProgressView-Example/Pods/BuildHeaders/UAProgressView/UAProgressView.h b/UAProgressView-Example/Pods/BuildHeaders/UAProgressView/UAProgressView.h deleted file mode 100644 index b0cea1d..0000000 --- a/UAProgressView-Example/Pods/BuildHeaders/UAProgressView/UAProgressView.h +++ /dev/null @@ -1,97 +0,0 @@ -// -// UAProgressView.h -// UAProgressView-Example -// -// Created by Matt Coneybeare on 5/25/14. -// Copyright (c) 2014 Urban Apps. All rights reserved. -// - -#import - -@interface UAProgressView : UIView - -/** - * Called when the progress view is filled with tintColor, or removed - * - * Example usage would be to invert the colors on your centralView - */ -@property (nonatomic, copy) void (^fillChangedBlock)(UAProgressView *progressView, BOOL filled, BOOL animated); - -/** - * Called on touchUpInside - * - * Example usage would be to invert the colors on your centralView - */ -@property (nonatomic, copy) void (^didSelectBlock)(UAProgressView *progressView); - -/** - * Called on setProgress - * - * Example usage would be to update any central view labels - */ -@property (nonatomic, copy) void (^progressChangedBlock)(UAProgressView *progressView, CGFloat progress); - -/** - * The view in the center of the progress view. - * - * It will be centered in the view but not resized, so plan accordingly - * - * Can be set to anything you want though, a label with the progress %, a stop button etc... - * Sits above the progressView in the layer heirarchy so it receives first tap. - * - * Defaults to nil. - */ -@property (nonatomic, strong) UIView *centralView; - -/** - * Fills in the circle with the tintColor on touch. - * - * Fills immediately, but fades when touch removed. - * - * Default is YES. - */ -@property (nonatomic, assign) BOOL fillOnTouch UI_APPEARANCE_SELECTOR; - -/** - * The line width of the outer circle - * - * Default is 1.0. - */ -@property (nonatomic, assign) CGFloat borderWidth UI_APPEARANCE_SELECTOR; - -/** - * The line width of the inner circle - * - * Default is 2.0. - */ -@property (nonatomic, assign) CGFloat lineWidth UI_APPEARANCE_SELECTOR; - -/** - * The color of the stroke and border - * - * Defaults to #007aff - */ -@property (nonatomic, strong) UIColor *tintColor; - -/** - * Gets/sets the progress, from 0.0 to 1.0. Progress < 0 is set to 0.0, progress > 1 is set to 1.0 - */ -@property (nonatomic, assign) CGFloat progress; - -/** - * The duration over which to animate the progress set. Default is 0.3 seconds. animationDuration < 0 is ignored - */ -@property (nonatomic, assign) CFTimeInterval animationDuration UI_APPEARANCE_SELECTOR; - -/** - * Changes progress animated. - * - * Progress < 0 is set to 0.0, progress > 1 is set to 1.0 - * The animation will be always linear. - * - * @param progress The new progress value. - * @param animated Specify YES to animate the change or NO if you do not want the change to be animated. - */ -- (void)setProgress:(CGFloat)progress animated:(BOOL)animated; - -@end diff --git a/UAProgressView-Example/Pods/Headers/Private/UAProgressView/UAProgressView.h b/UAProgressView-Example/Pods/Headers/Private/UAProgressView/UAProgressView.h new file mode 120000 index 0000000..6f6598c --- /dev/null +++ b/UAProgressView-Example/Pods/Headers/Private/UAProgressView/UAProgressView.h @@ -0,0 +1 @@ +../../../../../UAProgressView.h \ No newline at end of file diff --git a/UAProgressView-Example/Pods/Headers/Public/UAProgressView/UAProgressView.h b/UAProgressView-Example/Pods/Headers/Public/UAProgressView/UAProgressView.h new file mode 120000 index 0000000..6f6598c --- /dev/null +++ b/UAProgressView-Example/Pods/Headers/Public/UAProgressView/UAProgressView.h @@ -0,0 +1 @@ +../../../../../UAProgressView.h \ No newline at end of file diff --git a/UAProgressView-Example/Pods/Headers/UAProgressView/UAProgressView.h b/UAProgressView-Example/Pods/Headers/UAProgressView/UAProgressView.h deleted file mode 100644 index b0cea1d..0000000 --- a/UAProgressView-Example/Pods/Headers/UAProgressView/UAProgressView.h +++ /dev/null @@ -1,97 +0,0 @@ -// -// UAProgressView.h -// UAProgressView-Example -// -// Created by Matt Coneybeare on 5/25/14. -// Copyright (c) 2014 Urban Apps. All rights reserved. -// - -#import - -@interface UAProgressView : UIView - -/** - * Called when the progress view is filled with tintColor, or removed - * - * Example usage would be to invert the colors on your centralView - */ -@property (nonatomic, copy) void (^fillChangedBlock)(UAProgressView *progressView, BOOL filled, BOOL animated); - -/** - * Called on touchUpInside - * - * Example usage would be to invert the colors on your centralView - */ -@property (nonatomic, copy) void (^didSelectBlock)(UAProgressView *progressView); - -/** - * Called on setProgress - * - * Example usage would be to update any central view labels - */ -@property (nonatomic, copy) void (^progressChangedBlock)(UAProgressView *progressView, CGFloat progress); - -/** - * The view in the center of the progress view. - * - * It will be centered in the view but not resized, so plan accordingly - * - * Can be set to anything you want though, a label with the progress %, a stop button etc... - * Sits above the progressView in the layer heirarchy so it receives first tap. - * - * Defaults to nil. - */ -@property (nonatomic, strong) UIView *centralView; - -/** - * Fills in the circle with the tintColor on touch. - * - * Fills immediately, but fades when touch removed. - * - * Default is YES. - */ -@property (nonatomic, assign) BOOL fillOnTouch UI_APPEARANCE_SELECTOR; - -/** - * The line width of the outer circle - * - * Default is 1.0. - */ -@property (nonatomic, assign) CGFloat borderWidth UI_APPEARANCE_SELECTOR; - -/** - * The line width of the inner circle - * - * Default is 2.0. - */ -@property (nonatomic, assign) CGFloat lineWidth UI_APPEARANCE_SELECTOR; - -/** - * The color of the stroke and border - * - * Defaults to #007aff - */ -@property (nonatomic, strong) UIColor *tintColor; - -/** - * Gets/sets the progress, from 0.0 to 1.0. Progress < 0 is set to 0.0, progress > 1 is set to 1.0 - */ -@property (nonatomic, assign) CGFloat progress; - -/** - * The duration over which to animate the progress set. Default is 0.3 seconds. animationDuration < 0 is ignored - */ -@property (nonatomic, assign) CFTimeInterval animationDuration UI_APPEARANCE_SELECTOR; - -/** - * Changes progress animated. - * - * Progress < 0 is set to 0.0, progress > 1 is set to 1.0 - * The animation will be always linear. - * - * @param progress The new progress value. - * @param animated Specify YES to animate the change or NO if you do not want the change to be animated. - */ -- (void)setProgress:(CGFloat)progress animated:(BOOL)animated; - -@end diff --git a/UAProgressView-Example/Pods/Local Podspecs/UAProgressView.podspec b/UAProgressView-Example/Pods/Local Podspecs/UAProgressView.podspec deleted file mode 100644 index d72f8dd..0000000 --- a/UAProgressView-Example/Pods/Local Podspecs/UAProgressView.podspec +++ /dev/null @@ -1,12 +0,0 @@ -Pod::Spec.new do |s| - s.name = "UAProgressView" - s.version = "0.1.1" - s.summary = "UAProgressView is a simple and lightweight, yet powerful animated circular progress view." - s.homepage = "https://github.com/UrbanApps/UAProgressView" - s.author = { "Matt Coneybeare" => "coneybeare@urbanapps.com" } - s.license = 'MIT' - s.ios.deployment_target = '6.0' - s.requires_arc = true - s.source = { :git => "https://github.com/UrbanApps/UAProgressView.git", :tag => s.version.to_s } - s.source_files = "UAProgressView.{h,m}" -end \ No newline at end of file diff --git a/UAProgressView-Example/Pods/Local Podspecs/UAProgressView.podspec.json b/UAProgressView-Example/Pods/Local Podspecs/UAProgressView.podspec.json new file mode 100644 index 0000000..64e8e37 --- /dev/null +++ b/UAProgressView-Example/Pods/Local Podspecs/UAProgressView.podspec.json @@ -0,0 +1,19 @@ +{ + "name": "UAProgressView", + "version": "0.1.4", + "summary": "UAProgressView is a simple and lightweight, yet powerful animated circular progress view.", + "homepage": "https://github.com/UrbanApps/UAProgressView", + "authors": { + "Matt Coneybeare": "coneybeare@urbanapps.com" + }, + "license": "MIT", + "platforms": { + "ios": "6.0" + }, + "requires_arc": true, + "source": { + "git": "https://github.com/UrbanApps/UAProgressView.git", + "tag": "0.1.4" + }, + "source_files": "UAProgressView.{h,m}" +} diff --git a/UAProgressView-Example/Pods/Manifest.lock b/UAProgressView-Example/Pods/Manifest.lock index 06ebc4d..622587f 100644 --- a/UAProgressView-Example/Pods/Manifest.lock +++ b/UAProgressView-Example/Pods/Manifest.lock @@ -1,14 +1,16 @@ PODS: - - UAProgressView (0.1.1) + - UAProgressView (0.1.4) DEPENDENCIES: - UAProgressView (from `..`) EXTERNAL SOURCES: UAProgressView: - :path: .. + :path: ".." SPEC CHECKSUMS: - UAProgressView: 1e1c5e7b6c4327b3e44aef996f4010adb0743d98 + UAProgressView: 6796f5aa05037fb2940521636163b9db40a6c534 -COCOAPODS: 0.33.1 +PODFILE CHECKSUM: b78654b8db0a5b8cf07fb5ea10dae1f06990a9da + +COCOAPODS: 1.11.2 diff --git a/UAProgressView-Example/Pods/Pods-UAProgressView-Private.xcconfig b/UAProgressView-Example/Pods/Pods-UAProgressView-Private.xcconfig deleted file mode 100644 index 4f77070..0000000 --- a/UAProgressView-Example/Pods/Pods-UAProgressView-Private.xcconfig +++ /dev/null @@ -1,5 +0,0 @@ -#include "Pods-UAProgressView.xcconfig" -GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/BuildHeaders" "${PODS_ROOT}/BuildHeaders/UAProgressView" "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/UAProgressView" -OTHER_LDFLAGS = -ObjC -PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/UAProgressView-Example/Pods/Pods-UAProgressView-dummy.m b/UAProgressView-Example/Pods/Pods-UAProgressView-dummy.m deleted file mode 100644 index 5e16424..0000000 --- a/UAProgressView-Example/Pods/Pods-UAProgressView-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_UAProgressView : NSObject -@end -@implementation PodsDummy_Pods_UAProgressView -@end diff --git a/UAProgressView-Example/Pods/Pods-UAProgressView-prefix.pch b/UAProgressView-Example/Pods/Pods-UAProgressView-prefix.pch deleted file mode 100644 index 95cf11d..0000000 --- a/UAProgressView-Example/Pods/Pods-UAProgressView-prefix.pch +++ /dev/null @@ -1,5 +0,0 @@ -#ifdef __OBJC__ -#import -#endif - -#import "Pods-environment.h" diff --git a/UAProgressView-Example/Pods/Pods-UAProgressView.xcconfig b/UAProgressView-Example/Pods/Pods-UAProgressView.xcconfig deleted file mode 100644 index e69de29..0000000 diff --git a/UAProgressView-Example/Pods/Pods-dummy.m b/UAProgressView-Example/Pods/Pods-dummy.m deleted file mode 100644 index ade64bd..0000000 --- a/UAProgressView-Example/Pods/Pods-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods : NSObject -@end -@implementation PodsDummy_Pods -@end diff --git a/UAProgressView-Example/Pods/Pods-environment.h b/UAProgressView-Example/Pods/Pods-environment.h deleted file mode 100644 index 13bd44b..0000000 --- a/UAProgressView-Example/Pods/Pods-environment.h +++ /dev/null @@ -1,14 +0,0 @@ - -// To check if a library is compiled with CocoaPods you -// can use the `COCOAPODS` macro definition which is -// defined in the xcconfigs so it is available in -// headers also when they are imported in the client -// project. - - -// UAProgressView -#define COCOAPODS_POD_AVAILABLE_UAProgressView -#define COCOAPODS_VERSION_MAJOR_UAProgressView 0 -#define COCOAPODS_VERSION_MINOR_UAProgressView 1 -#define COCOAPODS_VERSION_PATCH_UAProgressView 1 - diff --git a/UAProgressView-Example/Pods/Pods-resources.sh b/UAProgressView-Example/Pods/Pods-resources.sh deleted file mode 100755 index 39c2549..0000000 --- a/UAProgressView-Example/Pods/Pods-resources.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -set -e - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -install_resource() -{ - case $1 in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" - ;; - *.framework) - echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" - ;; - *.xcassets) - ;; - /*) - echo "$1" - echo "$1" >> "$RESOURCES_TO_COPY" - ;; - *) - echo "${PODS_ROOT}/$1" - echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" - ;; - esac -} - -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]]; then - rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi -rm -f "$RESOURCES_TO_COPY" - -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ `xcrun --find actool` ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] -then - case "${TARGETED_DEVICE_FAMILY}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; - esac - find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi diff --git a/UAProgressView-Example/Pods/Pods.xcconfig b/UAProgressView-Example/Pods/Pods.xcconfig deleted file mode 100644 index 730c000..0000000 --- a/UAProgressView-Example/Pods/Pods.xcconfig +++ /dev/null @@ -1,5 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/UAProgressView" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers" -isystem "${PODS_ROOT}/Headers/UAProgressView" -OTHER_LDFLAGS = -ObjC -PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/UAProgressView-Example/Pods/Pods.xcodeproj/project.pbxproj b/UAProgressView-Example/Pods/Pods.xcodeproj/project.pbxproj index ca210f8..43c5d0d 100644 --- a/UAProgressView-Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/UAProgressView-Example/Pods/Pods.xcodeproj/project.pbxproj @@ -1,961 +1,515 @@ - - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 0047FFA493FB4650B1EAC8C5 - - buildConfigurationList - 0FE2D3679D0741B4B3AAACB4 - buildPhases - - 6AED4C82A03349EA957FB726 - 4419216EBB2143E1B895F68D - EFF293B2F8A14DD8945F2B2B - - buildRules - - dependencies - - isa - PBXNativeTarget - name - Pods-UAProgressView - productName - Pods-UAProgressView - productReference - 7CF1A6DBAE4E4D3291B5257B - productType - com.apple.product-type.library.static - - 0120E3440523457798116604 - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - Foundation.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework - sourceTree - DEVELOPER_DIR - - 0E9CA79E3827439B9CC65296 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - Pods-environment.h - sourceTree - <group> - - 0FE2D3679D0741B4B3AAACB4 - - buildConfigurations - - 783447FBFC504AF387846FFC - 821C1A9304004CC69D9750F2 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 13330CF1A3404F0C8AA5A368 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - NO - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES - COPY_PHASE_STRIP - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 6.0 - ONLY_ACTIVE_ARCH - YES - STRIP_INSTALLED_PRODUCT - NO - - isa - XCBuildConfiguration - name - Debug - - 15D81055AFA8416181780C14 - - fileRef - C4DBC88BB3054F2492CC05D4 - isa - PBXBuildFile - - 1E56FAB0E06942E4BBC3FF32 - - buildActionMask - 2147483647 - files - - 632E3D0413A14B38A8FDF53F - C31BB4543F1C4E06A978B6FB - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 2627E7B6C09C40648016A5C1 - - fileRef - E375FC65E33341FC9E6ADB8C - isa - PBXBuildFile - - 288DDF8E89C640D98A425EA5 - - children - - BCE3E9EB432F43D0912B4672 - DA057D533F574D69848A4800 - E375FC65E33341FC9E6ADB8C - E0E1AD65931E4204AFA452A1 - - isa - PBXGroup - name - Support Files - sourceTree - SOURCE_ROOT - - 2D1D49623574407998EE6B7A - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - NO - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES - COPY_PHASE_STRIP - NO - ENABLE_NS_ASSERTIONS - NO - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 6.0 - STRIP_INSTALLED_PRODUCT - NO - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - 32BE7E79441547E5ABAD56B8 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text - name - Podfile - path - ../Podfile - sourceTree - SOURCE_ROOT - xcLanguageSpecificationIdentifier - xcode.lang.ruby - - 376908304F9940839C05D606 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Pods-acknowledgements.plist - sourceTree - <group> - - 37A76F4CC7FD43318DCE313C - - buildConfigurations - - 51598A9EBC4445078F988F1E - 862244CC29CA413BAB595080 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 3B1109BD12E24C6E9BA846A0 - - children - - C1E3DC3308054652B990FFB7 - - isa - PBXGroup - name - Development Pods - sourceTree - <group> - - 3DD647E735794F27BFF14764 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text - path - Pods-acknowledgements.markdown - sourceTree - <group> - - 4419216EBB2143E1B895F68D - - buildActionMask - 2147483647 - files - - E7577BDEC5A44446A3B8038B - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 49D5BC3F854C484E98A247A0 - - children - - 7CE4B0477DBA467BBF0F6472 - - isa - PBXGroup - name - Frameworks - sourceTree - <group> - - 51598A9EBC4445078F988F1E - - baseConfigurationReference - 713BA887390B4776BCF664CE - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - NO - DSTROOT - /tmp/xcodeproj.dst - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_VERSION - com.apple.compilers.llvm.clang.1_0 - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 6.0 - OTHER_LDFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Debug - - 5BAE7D13B6B54253BDC44841 - - children - - E936172E7C5848B88F307E0D - - isa - PBXGroup - name - Targets Support Files - sourceTree - <group> - - 5E9E490D3A414A18B1D0B031 - - fileRef - C66838B5167D4E1195A254DD - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -fobjc-arc - - - 632E3D0413A14B38A8FDF53F - - fileRef - 0120E3440523457798116604 - isa - PBXBuildFile - - 6AED4C82A03349EA957FB726 - - buildActionMask - 2147483647 - files - - 2627E7B6C09C40648016A5C1 - 5E9E490D3A414A18B1D0B031 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 713BA887390B4776BCF664CE - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods.xcconfig - sourceTree - <group> - - 783447FBFC504AF387846FFC - - baseConfigurationReference - DA057D533F574D69848A4800 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - NO - DSTROOT - /tmp/xcodeproj.dst - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Pods-UAProgressView-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_VERSION - com.apple.compilers.llvm.clang.1_0 - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 6.0 - OTHER_LDFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Debug - - 7CE4B0477DBA467BBF0F6472 - - children - - 0120E3440523457798116604 - - isa - PBXGroup - name - iOS - sourceTree - <group> - - 7CF1A6DBAE4E4D3291B5257B - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods-UAProgressView.a - sourceTree - BUILT_PRODUCTS_DIR - - 821C1A9304004CC69D9750F2 - - baseConfigurationReference - DA057D533F574D69848A4800 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Pods-UAProgressView-prefix.pch - GCC_VERSION - com.apple.compilers.llvm.clang.1_0 - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 6.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - 862244CC29CA413BAB595080 - - baseConfigurationReference - 713BA887390B4776BCF664CE - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_VERSION - com.apple.compilers.llvm.clang.1_0 - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 6.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - 86A7AEEF98BC46D0BF7CED3F - - isa - PBXTargetDependency - target - 0047FFA493FB4650B1EAC8C5 - targetProxy - C6A78F7FED6344D388DA91DE - - 8E6CA21F48A14AF3B496F8CF - - children - - B6EFDAF2C91D4A2CBCC0D930 - 7CF1A6DBAE4E4D3291B5257B - - isa - PBXGroup - name - Products - sourceTree - <group> - - B600E12C15AD41EEA0670A59 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.script.sh - path - Pods-resources.sh - sourceTree - <group> - - B6EFDAF2C91D4A2CBCC0D930 - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods.a - sourceTree - BUILT_PRODUCTS_DIR - - BCE3E9EB432F43D0912B4672 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-UAProgressView.xcconfig - sourceTree - <group> - - BD6A7804C12741FE9E7C6D35 - - buildConfigurations - - 13330CF1A3404F0C8AA5A368 - 2D1D49623574407998EE6B7A - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - C0038D10E4ED4171B4BAF477 - - attributes - - LastUpgradeCheck - 0510 - - buildConfigurationList - BD6A7804C12741FE9E7C6D35 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - en - - mainGroup - EE72DE45EB9347B1ACB3F7D2 - productRefGroup - 8E6CA21F48A14AF3B496F8CF - projectDirPath - - projectReferences - - projectRoot - - targets - - E7EE444E5BD348FA81EA20F8 - 0047FFA493FB4650B1EAC8C5 - - - C1E3DC3308054652B990FFB7 - - children - - CEBD41DE3040448EBC64B780 - C66838B5167D4E1195A254DD - 288DDF8E89C640D98A425EA5 - - isa - PBXGroup - name - UAProgressView - path - ../.. - sourceTree - <group> - - C31BB4543F1C4E06A978B6FB - - fileRef - 7CF1A6DBAE4E4D3291B5257B - isa - PBXBuildFile - - C4DBC88BB3054F2492CC05D4 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-dummy.m - sourceTree - <group> - - C66838B5167D4E1195A254DD - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - UAProgressView.m - sourceTree - <group> - - C6A78F7FED6344D388DA91DE - - containerPortal - C0038D10E4ED4171B4BAF477 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 0047FFA493FB4650B1EAC8C5 - remoteInfo - Pods-UAProgressView - - CEBD41DE3040448EBC64B780 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - UAProgressView.h - sourceTree - <group> - - D739950A3E7F436CAAF88DEB - - fileRef - CEBD41DE3040448EBC64B780 - isa - PBXBuildFile - - DA057D533F574D69848A4800 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-UAProgressView-Private.xcconfig - sourceTree - <group> - - E0E1AD65931E4204AFA452A1 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - Pods-UAProgressView-prefix.pch - sourceTree - <group> - - E375FC65E33341FC9E6ADB8C - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-UAProgressView-dummy.m - sourceTree - <group> - - E7577BDEC5A44446A3B8038B - - fileRef - 0120E3440523457798116604 - isa - PBXBuildFile - - E7EE444E5BD348FA81EA20F8 - - buildConfigurationList - 37A76F4CC7FD43318DCE313C - buildPhases - - FB1316035E8D4FFDB3DB42CC - 1E56FAB0E06942E4BBC3FF32 - - buildRules - - dependencies - - 86A7AEEF98BC46D0BF7CED3F - - isa - PBXNativeTarget - name - Pods - productName - Pods - productReference - B6EFDAF2C91D4A2CBCC0D930 - productType - com.apple.product-type.library.static - - E936172E7C5848B88F307E0D - - children - - 713BA887390B4776BCF664CE - 3DD647E735794F27BFF14764 - 376908304F9940839C05D606 - C4DBC88BB3054F2492CC05D4 - 0E9CA79E3827439B9CC65296 - B600E12C15AD41EEA0670A59 - - isa - PBXGroup - name - Pods - sourceTree - <group> - - EE72DE45EB9347B1ACB3F7D2 - - children - - 32BE7E79441547E5ABAD56B8 - 3B1109BD12E24C6E9BA846A0 - 49D5BC3F854C484E98A247A0 - 8E6CA21F48A14AF3B496F8CF - 5BAE7D13B6B54253BDC44841 - - isa - PBXGroup - sourceTree - <group> - - EFF293B2F8A14DD8945F2B2B - - buildActionMask - 2147483647 - files - - D739950A3E7F436CAAF88DEB - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - FB1316035E8D4FFDB3DB42CC - - buildActionMask - 2147483647 - files - - 15D81055AFA8416181780C14 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - - rootObject - C0038D10E4ED4171B4BAF477 - - +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 0FB5C7ADEFC39AAF9A7278BA440DCACD /* UAProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = E6F4E188B66D967D3771CE3E5AD0E7AC /* UAProgressView.m */; }; + 49E56BCACF8F18C5C04EF3CAB695AEFA /* UAProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF921E31255776571C3A38CC298DFAF8 /* UAProgressView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDC0F2D4CB540650E7554AAC9C4EDE91 /* UAProgressView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1AD5BEF60EB7ED2FBB7592A2BD57FE /* UAProgressView-dummy.m */; }; + FD14C194FAE553A473F36F4D3443038F /* Pods-UAProgressView-Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A918AE68507009E2F7F57400E2E5EA1 /* Pods-UAProgressView-Example-dummy.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 954E589F23511B17AE762B61022BB681 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C15C8CABBE88FD581861FC6F4954680; + remoteInfo = UAProgressView; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 192A4158E2933B8B2360A429772BD3F8 /* UAProgressView */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = UAProgressView; path = libUAProgressView.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 4D5278343D554210F1F7D32BE672AF58 /* Pods-UAProgressView-Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-UAProgressView-Example-acknowledgements.plist"; sourceTree = ""; }; + 5A09C2BD16CBB1C413E86E5522EAB2CD /* Pods-UAProgressView-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UAProgressView-Example.release.xcconfig"; sourceTree = ""; }; + 5A918AE68507009E2F7F57400E2E5EA1 /* Pods-UAProgressView-Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-UAProgressView-Example-dummy.m"; sourceTree = ""; }; + 64298A1319B1641DD2D6775106BF21F2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 66113A7CC083570541351F72693928F5 /* UAProgressView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UAProgressView-prefix.pch"; sourceTree = ""; }; + 6EB316C99815A8167DAE806DC51B32FD /* Pods-UAProgressView-Example */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-UAProgressView-Example"; path = "libPods-UAProgressView-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9258E71D6829B31C5A5B20E9F1C4E06C /* Pods-UAProgressView-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-UAProgressView-Example.debug.xcconfig"; sourceTree = ""; }; + 9434FB83DBAEBA8DDF11FCAD934802B2 /* UAProgressView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UAProgressView.debug.xcconfig; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B7535D34BE0B24F523560F5F60506842 /* Pods-UAProgressView-Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-UAProgressView-Example-acknowledgements.markdown"; sourceTree = ""; }; + CC1AD5BEF60EB7ED2FBB7592A2BD57FE /* UAProgressView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UAProgressView-dummy.m"; sourceTree = ""; }; + DE38BF91CB5AA032DDE2FD817F885391 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E6F4E188B66D967D3771CE3E5AD0E7AC /* UAProgressView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UAProgressView.m; sourceTree = ""; }; + E9F6B567150A9E7E64EE28DFD24281A6 /* UAProgressView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UAProgressView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EBFAC0163E705E1BB2AD837599D10E5E /* UAProgressView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UAProgressView.release.xcconfig; sourceTree = ""; }; + FF921E31255776571C3A38CC298DFAF8 /* UAProgressView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UAProgressView.h; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 59BB3FD8DD231090230F7DD0F1A91227 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C76AFD3F1C317E5DFC749CEC6CC52585 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0672DAEEAB641D4F36CCDB2E38627B6C /* UAProgressView */ = { + isa = PBXGroup; + children = ( + FF921E31255776571C3A38CC298DFAF8 /* UAProgressView.h */, + E6F4E188B66D967D3771CE3E5AD0E7AC /* UAProgressView.m */, + A890032EC42B36F3A6DA34A61ACADE1E /* Pod */, + EFB0B60463D0C4F4F1A3640358D9CE7E /* Support Files */, + ); + name = UAProgressView; + path = ../..; + sourceTree = ""; + }; + 8216B9535E9EB66C1436AB250723D0DD /* Pods-UAProgressView-Example */ = { + isa = PBXGroup; + children = ( + B7535D34BE0B24F523560F5F60506842 /* Pods-UAProgressView-Example-acknowledgements.markdown */, + 4D5278343D554210F1F7D32BE672AF58 /* Pods-UAProgressView-Example-acknowledgements.plist */, + 5A918AE68507009E2F7F57400E2E5EA1 /* Pods-UAProgressView-Example-dummy.m */, + 9258E71D6829B31C5A5B20E9F1C4E06C /* Pods-UAProgressView-Example.debug.xcconfig */, + 5A09C2BD16CBB1C413E86E5522EAB2CD /* Pods-UAProgressView-Example.release.xcconfig */, + ); + name = "Pods-UAProgressView-Example"; + path = "Target Support Files/Pods-UAProgressView-Example"; + sourceTree = ""; + }; + 869BA793C4FF0BAC7ED12B6140D3179D /* Products */ = { + isa = PBXGroup; + children = ( + 6EB316C99815A8167DAE806DC51B32FD /* Pods-UAProgressView-Example */, + 192A4158E2933B8B2360A429772BD3F8 /* UAProgressView */, + ); + name = Products; + sourceTree = ""; + }; + A890032EC42B36F3A6DA34A61ACADE1E /* Pod */ = { + isa = PBXGroup; + children = ( + 64298A1319B1641DD2D6775106BF21F2 /* LICENSE */, + DE38BF91CB5AA032DDE2FD817F885391 /* README.md */, + E9F6B567150A9E7E64EE28DFD24281A6 /* UAProgressView.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BE4032BF8BCEF91DE828B4C2A28268D9 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 8216B9535E9EB66C1436AB250723D0DD /* Pods-UAProgressView-Example */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + CF1408CF629C7361332E53B88F7BD30C = { + isa = PBXGroup; + children = ( + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + DD51240A39D81448D679DE83E520A946 /* Development Pods */, + D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, + 869BA793C4FF0BAC7ED12B6140D3179D /* Products */, + BE4032BF8BCEF91DE828B4C2A28268D9 /* Targets Support Files */, + ); + sourceTree = ""; + }; + D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; + DD51240A39D81448D679DE83E520A946 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 0672DAEEAB641D4F36CCDB2E38627B6C /* UAProgressView */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + EFB0B60463D0C4F4F1A3640358D9CE7E /* Support Files */ = { + isa = PBXGroup; + children = ( + CC1AD5BEF60EB7ED2FBB7592A2BD57FE /* UAProgressView-dummy.m */, + 66113A7CC083570541351F72693928F5 /* UAProgressView-prefix.pch */, + 9434FB83DBAEBA8DDF11FCAD934802B2 /* UAProgressView.debug.xcconfig */, + EBFAC0163E705E1BB2AD837599D10E5E /* UAProgressView.release.xcconfig */, + ); + name = "Support Files"; + path = "UAProgressView-Example/Pods/Target Support Files/UAProgressView"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 414EAACD2CABBDDF7AD153F0E53969D2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 49E56BCACF8F18C5C04EF3CAB695AEFA /* UAProgressView.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 515F5C22B90CA8835A06D8F1532C7296 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 6C15C8CABBE88FD581861FC6F4954680 /* UAProgressView */ = { + isa = PBXNativeTarget; + buildConfigurationList = BE82002EAF1774B0ADD883711EF86D6A /* Build configuration list for PBXNativeTarget "UAProgressView" */; + buildPhases = ( + 414EAACD2CABBDDF7AD153F0E53969D2 /* Headers */, + F4D1E6699BABB905B04E6B22C9D6922A /* Sources */, + 59BB3FD8DD231090230F7DD0F1A91227 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = UAProgressView; + productName = UAProgressView; + productReference = 192A4158E2933B8B2360A429772BD3F8 /* UAProgressView */; + productType = "com.apple.product-type.library.static"; + }; + B00855389C8A6614B5743219722B6D3F /* Pods-UAProgressView-Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 674663C5194069D31B0F2D1CCD636643 /* Build configuration list for PBXNativeTarget "Pods-UAProgressView-Example" */; + buildPhases = ( + 515F5C22B90CA8835A06D8F1532C7296 /* Headers */, + EDD236EA5F6D749F2F050EE612D4CC88 /* Sources */, + C76AFD3F1C317E5DFC749CEC6CC52585 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 413135CA41852A7201A0BC57FFCC4F36 /* PBXTargetDependency */, + ); + name = "Pods-UAProgressView-Example"; + productName = "Pods-UAProgressView-Example"; + productReference = 6EB316C99815A8167DAE806DC51B32FD /* Pods-UAProgressView-Example */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1240; + LastUpgradeCheck = 1240; + }; + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = CF1408CF629C7361332E53B88F7BD30C; + productRefGroup = 869BA793C4FF0BAC7ED12B6140D3179D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + B00855389C8A6614B5743219722B6D3F /* Pods-UAProgressView-Example */, + 6C15C8CABBE88FD581861FC6F4954680 /* UAProgressView */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + EDD236EA5F6D749F2F050EE612D4CC88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD14C194FAE553A473F36F4D3443038F /* Pods-UAProgressView-Example-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F4D1E6699BABB905B04E6B22C9D6922A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0FB5C7ADEFC39AAF9A7278BA440DCACD /* UAProgressView.m in Sources */, + CDC0F2D4CB540650E7554AAC9C4EDE91 /* UAProgressView-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 413135CA41852A7201A0BC57FFCC4F36 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UAProgressView; + target = 6C15C8CABBE88FD581861FC6F4954680 /* UAProgressView */; + targetProxy = 954E589F23511B17AE762B61022BB681 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 1EF858DD5E47042894318A3D60C0F558 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EBFAC0163E705E1BB2AD837599D10E5E /* UAProgressView.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UAProgressView/UAProgressView-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UAProgressView; + PRODUCT_NAME = UAProgressView; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 220E73900A383E161D84D0220AC8D658 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5A09C2BD16CBB1C413E86E5522EAB2CD /* Pods-UAProgressView-Example.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 759FD82FBE44F19FB5CE5B491A4E2BCB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9434FB83DBAEBA8DDF11FCAD934802B2 /* UAProgressView.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UAProgressView/UAProgressView-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UAProgressView; + PRODUCT_NAME = UAProgressView; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + DDF33D490FE664925FCA8AC8A856E447 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9258E71D6829B31C5A5B20E9F1C4E06C /* Pods-UAProgressView-Example.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */, + CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 674663C5194069D31B0F2D1CCD636643 /* Build configuration list for PBXNativeTarget "Pods-UAProgressView-Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DDF33D490FE664925FCA8AC8A856E447 /* Debug */, + 220E73900A383E161D84D0220AC8D658 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BE82002EAF1774B0ADD883711EF86D6A /* Build configuration list for PBXNativeTarget "UAProgressView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 759FD82FBE44F19FB5CE5B491A4E2BCB /* Debug */, + 1EF858DD5E47042894318A3D60C0F558 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; +} diff --git a/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/Pods-UAProgressView.xcscheme b/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/Pods-UAProgressView.xcscheme deleted file mode 100644 index 007bcdd..0000000 --- a/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/Pods-UAProgressView.xcscheme +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/Pods.xcscheme b/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/Pods.xcscheme deleted file mode 100644 index e340578..0000000 --- a/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/Pods.xcscheme +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/xcschememanagement.plist b/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 1f8801a..0000000 --- a/UAProgressView-Example/Pods/Pods.xcodeproj/xcuserdata/coneybeare.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - SchemeUserState - - Pods-UAProgressView.xcscheme - - isShown - - - Pods.xcscheme - - isShown - - - - SuppressBuildableAutocreation - - 2102D6DA0329429FB843161E - - primary - - - 4BD46B8888064D43AFD7D099 - - primary - - - - - diff --git a/UAProgressView-Example/Pods/Pods-acknowledgements.markdown b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-acknowledgements.markdown similarity index 96% rename from UAProgressView-Example/Pods/Pods-acknowledgements.markdown rename to UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-acknowledgements.markdown index d394420..1a8df79 100644 --- a/UAProgressView-Example/Pods/Pods-acknowledgements.markdown +++ b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-acknowledgements.markdown @@ -24,4 +24,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -Generated by CocoaPods - http://cocoapods.org +Generated by CocoaPods - https://cocoapods.org diff --git a/UAProgressView-Example/Pods/Pods-acknowledgements.plist b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-acknowledgements.plist similarity index 94% rename from UAProgressView-Example/Pods/Pods-acknowledgements.plist rename to UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-acknowledgements.plist index 888cdc4..80a3d5e 100644 --- a/UAProgressView-Example/Pods/Pods-acknowledgements.plist +++ b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-acknowledgements.plist @@ -35,6 +35,8 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + License + MIT Title UAProgressView Type @@ -42,7 +44,7 @@ SOFTWARE. FooterText - Generated by CocoaPods - http://cocoapods.org + Generated by CocoaPods - https://cocoapods.org Title Type diff --git a/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-dummy.m b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-dummy.m new file mode 100644 index 0000000..351127b --- /dev/null +++ b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_UAProgressView_Example : NSObject +@end +@implementation PodsDummy_Pods_UAProgressView_Example +@end diff --git a/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.debug.xcconfig b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.debug.xcconfig new file mode 100644 index 0000000..1a6a54c --- /dev/null +++ b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.debug.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UAProgressView" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/UAProgressView" +OTHER_LDFLAGS = $(inherited) -ObjC -l"UAProgressView" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.release.xcconfig b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.release.xcconfig new file mode 100644 index 0000000..1a6a54c --- /dev/null +++ b/UAProgressView-Example/Pods/Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.release.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UAProgressView" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/UAProgressView" +OTHER_LDFLAGS = $(inherited) -ObjC -l"UAProgressView" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView-dummy.m b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView-dummy.m new file mode 100644 index 0000000..bdba32c --- /dev/null +++ b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_UAProgressView : NSObject +@end +@implementation PodsDummy_UAProgressView +@end diff --git a/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView-prefix.pch b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView.debug.xcconfig b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView.debug.xcconfig new file mode 100644 index 0000000..2c7917f --- /dev/null +++ b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UAProgressView +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UAProgressView" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UAProgressView" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView.release.xcconfig b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView.release.xcconfig new file mode 100644 index 0000000..2c7917f --- /dev/null +++ b/UAProgressView-Example/Pods/Target Support Files/UAProgressView/UAProgressView.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UAProgressView +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UAProgressView" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UAProgressView" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/UAProgressView-Example/UAProgressView-Example.xcodeproj/project.pbxproj b/UAProgressView-Example/UAProgressView-Example.xcodeproj/project.pbxproj index d959655..cb4fdfe 100644 --- a/UAProgressView-Example/UAProgressView-Example.xcodeproj/project.pbxproj +++ b/UAProgressView-Example/UAProgressView-Example.xcodeproj/project.pbxproj @@ -7,7 +7,7 @@ objects = { /* Begin PBXBuildFile section */ - 97F6DD5ACE3C4CD9B8D29675 /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A04A471157B4134A4EFE3DD /* libPods.a */; }; + 50104A51920B06C7769E9BDC /* libPods-UAProgressView-Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DB52C073FC211D893F67904 /* libPods-UAProgressView-Example.a */; }; E6230C49193296D400669726 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6230C48193296D400669726 /* Foundation.framework */; }; E6230C4B193296D400669726 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6230C4A193296D400669726 /* CoreGraphics.framework */; }; E6230C4D193296D400669726 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6230C4C193296D400669726 /* UIKit.framework */; }; @@ -22,8 +22,9 @@ /* End PBXBuildFile section */ /* Begin PBXFileReference section */ - 12C2C2C73D17407185AA8523 /* Pods.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.xcconfig; path = Pods/Pods.xcconfig; sourceTree = ""; }; - 7A04A471157B4134A4EFE3DD /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3D8D5B1E194330F4CEF0F277 /* Pods-UAProgressView-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UAProgressView-Example.release.xcconfig"; path = "Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.release.xcconfig"; sourceTree = ""; }; + 6DB52C073FC211D893F67904 /* libPods-UAProgressView-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UAProgressView-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C42D7C60E7084847F5F52A47 /* Pods-UAProgressView-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UAProgressView-Example.debug.xcconfig"; path = "Target Support Files/Pods-UAProgressView-Example/Pods-UAProgressView-Example.debug.xcconfig"; sourceTree = ""; }; E6230C45193296D400669726 /* UAProgressView-Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "UAProgressView-Example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; E6230C48193296D400669726 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; E6230C4A193296D400669726 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; @@ -52,7 +53,7 @@ E6230C4B193296D400669726 /* CoreGraphics.framework in Frameworks */, E6230C4D193296D400669726 /* UIKit.framework in Frameworks */, E6230C49193296D400669726 /* Foundation.framework in Frameworks */, - 97F6DD5ACE3C4CD9B8D29675 /* libPods.a in Frameworks */, + 50104A51920B06C7769E9BDC /* libPods-UAProgressView-Example.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -65,7 +66,7 @@ E6230C4E193296D400669726 /* UAProgressView-Example */, E6230C47193296D400669726 /* Frameworks */, E6230C46193296D400669726 /* Products */, - 12C2C2C73D17407185AA8523 /* Pods.xcconfig */, + F61AB00468E98A8677567EEC /* Pods */, ); sourceTree = ""; }; @@ -84,7 +85,7 @@ E6230C4A193296D400669726 /* CoreGraphics.framework */, E6230C4C193296D400669726 /* UIKit.framework */, E6230C67193296D500669726 /* XCTest.framework */, - 7A04A471157B4134A4EFE3DD /* libPods.a */, + 6DB52C073FC211D893F67904 /* libPods-UAProgressView-Example.a */, ); name = Frameworks; sourceTree = ""; @@ -118,6 +119,15 @@ name = "Supporting Files"; sourceTree = ""; }; + F61AB00468E98A8677567EEC /* Pods */ = { + isa = PBXGroup; + children = ( + C42D7C60E7084847F5F52A47 /* Pods-UAProgressView-Example.debug.xcconfig */, + 3D8D5B1E194330F4CEF0F277 /* Pods-UAProgressView-Example.release.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -125,11 +135,10 @@ isa = PBXNativeTarget; buildConfigurationList = E6230C77193296D500669726 /* Build configuration list for PBXNativeTarget "UAProgressView-Example" */; buildPhases = ( - C243989CDACE45349F86910B /* Check Pods Manifest.lock */, + BB6711EE776E532520E4EA92 /* [CP] Check Pods Manifest.lock */, E6230C41193296D400669726 /* Sources */, E6230C42193296D400669726 /* Frameworks */, E6230C43193296D400669726 /* Resources */, - A6468924BA8549A1B9F009AD /* Copy Pods Resources */, ); buildRules = ( ); @@ -155,6 +164,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -183,34 +193,26 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - A6468924BA8549A1B9F009AD /* Copy Pods Resources */ = { + BB6711EE776E532520E4EA92 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); - inputPaths = ( - ); - name = "Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Pods-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - C243989CDACE45349F86910B /* Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( + inputFileListPaths = ( ); inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( ); - name = "Check Pods Manifest.lock"; outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-UAProgressView-Example-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + 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"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -321,14 +323,14 @@ }; E6230C78193296D500669726 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12C2C2C73D17407185AA8523 /* Pods.xcconfig */; + baseConfigurationReference = C42D7C60E7084847F5F52A47 /* Pods-UAProgressView-Example.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "UAProgressView-Example/UAProgressView-Example-Prefix.pch"; INFOPLIST_FILE = "UAProgressView-Example/UAProgressView-Example-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; }; @@ -336,14 +338,14 @@ }; E6230C79193296D500669726 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12C2C2C73D17407185AA8523 /* Pods.xcconfig */; + baseConfigurationReference = 3D8D5B1E194330F4CEF0F277 /* Pods-UAProgressView-Example.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "UAProgressView-Example/UAProgressView-Example-Prefix.pch"; INFOPLIST_FILE = "UAProgressView-Example/UAProgressView-Example-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; };