diff --git a/Demo/SVPulsingAnnotationView.xcodeproj/project.pbxproj b/Demo/SVPulsingAnnotationView.xcodeproj/project.pbxproj index 5c3e278..6184e8b 100644 --- a/Demo/SVPulsingAnnotationView.xcodeproj/project.pbxproj +++ b/Demo/SVPulsingAnnotationView.xcodeproj/project.pbxproj @@ -253,7 +253,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.1; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; }; @@ -277,7 +277,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.1; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; @@ -291,7 +291,7 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "SVPulsingAnnotationView/SVPulsingAnnotationView-Prefix.pch"; INFOPLIST_FILE = "SVPulsingAnnotationView/SVPulsingAnnotationView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; }; @@ -304,7 +304,7 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "SVPulsingAnnotationView/SVPulsingAnnotationView-Prefix.pch"; INFOPLIST_FILE = "SVPulsingAnnotationView/SVPulsingAnnotationView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; }; diff --git a/SVPulsingAnnotationView.podspec b/SVPulsingAnnotationView.podspec index 791d670..c603617 100644 --- a/SVPulsingAnnotationView.podspec +++ b/SVPulsingAnnotationView.podspec @@ -1,13 +1,14 @@ Pod::Spec.new do |s| - s.name = 'SVPulsingAnnotationView' - s.version = '0.3' - s.license = 'MIT' - s.platform = :ios - s.summary = 'A customizable MKUserLocationView replica for your iOS app.' - s.homepage = 'https://github.com/samvermette/SVPulsingAnnotationView' - s.author = { 'Sam Vermette' => 'hello@samvermette.com' } - s.source = { :git => 'https://github.com/samvermette/SVPulsingAnnotationView.git', :tag => s.version.to_s } - s.source_files = 'SVPulsingAnnotationView/*.{h,m}' - s.frameworks = 'QuartzCore', 'MapKit' - s.requires_arc = true + s.name = 'SVPulsingAnnotationView' + s.version = '0.3' + s.license = 'MIT' + s.platform = :ios + s.deployment_target = '9.0' + s.summary = 'A customizable MKUserLocationView replica for your iOS app.' + s.homepage = 'https://github.com/samvermette/SVPulsingAnnotationView' + s.author = { 'Sam Vermette' => 'hello@samvermette.com' } + s.source = { :git => 'https://github.com/samvermette/SVPulsingAnnotationView.git', :tag => s.version.to_s } + s.source_files = 'SVPulsingAnnotationView/*.{h,m}' + s.frameworks = 'QuartzCore', 'MapKit' + s.requires_arc = true end