Skip to content

Commit

Permalink
updating deployment target to iOS 8
Browse files Browse the repository at this point in the history
  • Loading branch information
u10int committed Mar 1, 2016
1 parent 6c8fa8f commit 8a440bd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down Expand Up @@ -312,7 +312,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
Expand All @@ -329,7 +329,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "URBMediaFocusViewControllerDemo/URBMediaFocusViewControllerDemo-Prefix.pch";
INFOPLIST_FILE = "URBMediaFocusViewControllerDemo/URBMediaFocusViewControllerDemo-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app;
Expand All @@ -346,7 +346,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "URBMediaFocusViewControllerDemo/URBMediaFocusViewControllerDemo-Prefix.pch";
INFOPLIST_FILE = "URBMediaFocusViewControllerDemo/URBMediaFocusViewControllerDemo-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
WRAPPER_EXTENSION = app;
Expand Down
10 changes: 5 additions & 5 deletions URBMediaFocusViewController.podspec
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Pod::Spec.new do |s|
s.name = 'URBMediaFocusViewController'
s.version = '0.5.8'
s.version = '0.9.0'
s.summary = 'A view controller that focuses images to their full size with physics similar to Tweetbot 3.'
s.description = 'URBMediaFocusViewController is an experiment to recreate the view used to enlarge photos and videos from their thumbnail previews as seen in Tweetbot 3 for iOS 7 using the new UIDynamics API available in iOS 7.'
s.description = 'URBMediaFocusViewController is an experiment to recreate the view used to enlarge photos and videos from their thumbnail previews as seen in Tweetbot 3 using the UIDynamics API introduced in iOS 7.'
s.homepage = 'https://github.com/u10int/URBMediaFocusViewController'
s.author = {
'Nicholas Shipes' => 'nshipes@urban10.com', 'Ahmed Khalaf' => 'ahmed@arkuana.co'
'Nicholas Shipes' => 'nshipes@urban10.com'
}
s.source = {
:git => 'https://github.com/u10int/URBMediaFocusViewController.git',
:tag => s.version.to_s
}
s.platform = :ios, '7.0'
s.platform = :ios, '8.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.requires_arc = true
s.source_files = 'URBMediaFocusViewController.{h,m}'
s.frameworks = 'UIKit', 'Foundation', 'CoreGraphics', 'QuartzCore', 'AssetsLibrary'
s.ios.deployment_target = '7.0'
s.ios.deployment_target = '8.0'
end

0 comments on commit 8a440bd

Please sign in to comment.