├── Pod ├── Assets │ ├── .gitkeep │ ├── safari-white.png │ ├── safari-white@2x.png │ ├── safari-white@3x.png │ └── en.lproj │ │ └── safariBlack.pdf └── Classes │ ├── .gitkeep │ ├── URBNSafariActivity.h │ ├── URBNShareKit.m │ ├── URBNImageProvider.h │ ├── URBNImageProvider.m │ ├── URBNShareKit.h │ ├── URBNSafariActivity.m │ ├── URBNBodyProvider.h │ ├── URBNActivityViewController.h │ ├── URBNBodyProvider.m │ └── URBNActivityViewController.m ├── Example ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests.m │ ├── Tests-Prefix.pch │ └── Tests-Info.plist ├── URBNShareKit │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Images.xcassets │ │ ├── Image.imageset │ │ │ ├── safari@2x.png │ │ │ └── Contents.json │ │ ├── ron-swanson.imageset │ │ │ ├── 11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big.jpg │ │ │ ├── 11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-1.jpg │ │ │ ├── 11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-2.jpg │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── URBNShareKitExampleVC.h │ ├── URBNAppDelegate.h │ ├── URBNShareKit-Prefix.pch │ ├── main.m │ ├── URBNShareKit-Info.plist │ ├── URBNAppDelegate.m │ ├── URBNShareKitExampleVC.m │ └── Base.lproj │ │ └── Main.storyboard ├── Pods │ ├── Target Support Files │ │ ├── URBNShareKit │ │ │ ├── URBNShareKit-prefix.pch │ │ │ ├── URBNShareKit.modulemap │ │ │ ├── URBNShareKit-dummy.m │ │ │ ├── URBNShareKit-umbrella.h │ │ │ ├── URBNShareKit.xcconfig │ │ │ ├── ResourceBundle-URBNShareKit-Info.plist │ │ │ └── Info.plist │ │ ├── Pods-Tests │ │ │ ├── Pods-Tests.modulemap │ │ │ ├── Pods-Tests-dummy.m │ │ │ ├── Pods-Tests-acknowledgements.markdown │ │ │ ├── Pods-Tests-umbrella.h │ │ │ ├── Pods-Tests.debug.xcconfig │ │ │ ├── Pods-Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-Tests-acknowledgements.plist │ │ │ ├── Pods-Tests-frameworks.sh │ │ │ └── Pods-Tests-resources.sh │ │ └── Pods-URBNShareKit │ │ │ ├── Pods-URBNShareKit.modulemap │ │ │ ├── Pods-URBNShareKit-dummy.m │ │ │ ├── Pods-URBNShareKit-umbrella.h │ │ │ ├── Pods-URBNShareKit.debug.xcconfig │ │ │ ├── Pods-URBNShareKit.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-URBNShareKit-acknowledgements.markdown │ │ │ ├── Pods-URBNShareKit-acknowledgements.plist │ │ │ ├── Pods-URBNShareKit-frameworks.sh │ │ │ └── Pods-URBNShareKit-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── URBNShareKit.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── URBNShareKit.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── URBNShareKit-Example.xcscheme │ └── project.pbxproj ├── Podfile ├── URBNShareKit.xcworkspace │ └── contents.xcworkspacedata └── Podfile.lock ├── .travis.yml ├── URBNShareKit.podspec ├── .gitignore ├── LICENSE └── README.md /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/URBNShareKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pod/Assets/safari-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Pod/Assets/safari-white.png -------------------------------------------------------------------------------- /Pod/Assets/safari-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Pod/Assets/safari-white@2x.png -------------------------------------------------------------------------------- /Pod/Assets/safari-white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Pod/Assets/safari-white@3x.png -------------------------------------------------------------------------------- /Pod/Assets/en.lproj/safariBlack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Pod/Assets/en.lproj/safariBlack.pdf -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/URBNShareKit/URBNShareKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/URBNShareKit/Images.xcassets/Image.imageset/safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Example/URBNShareKit/Images.xcassets/Image.imageset/safari@2x.png -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Tests { 2 | umbrella header "Pods-Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/URBNShareKit/URBNShareKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module URBNShareKit { 2 | umbrella header "URBNShareKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNShareKitTests.m 3 | // URBNShareKitTests 4 | // 5 | // Created by Ryan Garchinsky on 01/15/2015. 6 | // Copyright (c) 2014 Ryan Garchinsky. All rights reserved. 7 | // 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/URBNShareKit/URBNShareKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_URBNShareKit : NSObject 3 | @end 4 | @implementation PodsDummy_URBNShareKit 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-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/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_URBNShareKit { 2 | umbrella header "Pods-URBNShareKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_URBNShareKit : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_URBNShareKit 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every test case source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double Pods_TestsVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char Pods_TestsVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Example/URBNShareKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | platform :ios, '8.0' 4 | use_frameworks! 5 | 6 | target 'URBNShareKit' do 7 | target 'Tests' do 8 | inherit! :search_paths 9 | end 10 | end 11 | 12 | 13 | pod "URBNShareKit", :path => "../" 14 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double Pods_URBNShareKitVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char Pods_URBNShareKitVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Example/URBNShareKit/Images.xcassets/ron-swanson.imageset/11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Example/URBNShareKit/Images.xcassets/ron-swanson.imageset/11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big.jpg -------------------------------------------------------------------------------- /Example/URBNShareKit/Images.xcassets/ron-swanson.imageset/11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Example/URBNShareKit/Images.xcassets/ron-swanson.imageset/11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-1.jpg -------------------------------------------------------------------------------- /Example/URBNShareKit/Images.xcassets/ron-swanson.imageset/11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urbn/URBNShareKit/HEAD/Example/URBNShareKit/Images.xcassets/ron-swanson.imageset/11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-2.jpg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | osx_image: xcode7.3 2 | language: objective-c 3 | before_install: cd Example && rm -rf Pods && pod install && cd - 4 | script: 5 | - xcodebuild -workspace Example/URBNShareKit.xcworkspace -scheme URBNShareKit-Example clean build -destination "platform=iOS Simulator,name=iPhone 6,OS=latest" -destination-timeout 120 test -------------------------------------------------------------------------------- /Example/URBNShareKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/URBNShareKit/URBNShareKitExampleVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // URBNViewController.h 3 | // URBNShareKit 4 | // 5 | // Created by Ryan Garchinsky on 01/15/2015. 6 | // Copyright (c) 2014 Ryan Garchinsky. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface URBNShareKitExampleVC : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - URBNShareKit (0.2.2) 3 | 4 | DEPENDENCIES: 5 | - URBNShareKit (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | URBNShareKit: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | URBNShareKit: b5684ff97d714f44914755bf8a12d805294695d1 13 | 14 | PODFILE CHECKSUM: 891560d96ea51cde9c5b6cec5bacacc03ded7cca 15 | 16 | COCOAPODS: 1.1.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - URBNShareKit (0.2.2) 3 | 4 | DEPENDENCIES: 5 | - URBNShareKit (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | URBNShareKit: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | URBNShareKit: b5684ff97d714f44914755bf8a12d805294695d1 13 | 14 | PODFILE CHECKSUM: 891560d96ea51cde9c5b6cec5bacacc03ded7cca 15 | 16 | COCOAPODS: 1.1.1 17 | -------------------------------------------------------------------------------- /Pod/Classes/URBNSafariActivity.h: -------------------------------------------------------------------------------- 1 | // 2 | // URBNSafariActivity.h 3 | // Pods 4 | // 5 | // Created by Dustin Bergman on 4/21/15. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface URBNSafariActivity : UIActivity 12 | 13 | @property (nonatomic, strong) UIImage *safariActivityImage; 14 | 15 | - (instancetype)initWithURL:(NSURL *)URL; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pod/Classes/URBNShareKit.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNShareKit.m 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | #import "URBNShareKit.h" 10 | 11 | NSString *const kURBNActivityTypePinterest = @"pinterest.ShareExtension"; 12 | NSString *const kURBNActivityTypeOpenInSafari = @"openInSafari.ShareExtension"; 13 | 14 | @implementation URBNShareKit 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Example/URBNShareKit/URBNAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // URBNAppDelegate.h 3 | // URBNShareKit 4 | // 5 | // Created by CocoaPods on 01/15/2015. 6 | // Copyright (c) 2014 Ryan Garchinsky. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface URBNAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/URBNShareKit/URBNShareKit-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "URBNActivityViewController.h" 6 | #import "URBNBodyProvider.h" 7 | #import "URBNImageProvider.h" 8 | #import "URBNSafariActivity.h" 9 | #import "URBNShareKit.h" 10 | 11 | FOUNDATION_EXPORT double URBNShareKitVersionNumber; 12 | FOUNDATION_EXPORT const unsigned char URBNShareKitVersionString[]; 13 | 14 | -------------------------------------------------------------------------------- /Example/URBNShareKit/Images.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "safari@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/URBNShareKit/URBNShareKit-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/URBNShareKit/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // URBNShareKit 4 | // 5 | // Created by Ryan Garchinsky on 01/15/2015. 6 | // Copyright (c) 2014 Ryan Garchinsky. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "URBNAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([URBNAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/URBNShareKit/URBNShareKit.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/URBNShareKit 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/URBNShareKit" 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/URBNShareKit/URBNShareKit.framework/Headers" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/URBNShareKit" 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/URBNShareKit/URBNShareKit.framework/Headers" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/URBNShareKit" 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/URBNShareKit/URBNShareKit.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "URBNShareKit" 7 | PODS_BUILD_DIR = $BUILD_DIR 8 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/URBNShareKit" 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/URBNShareKit/URBNShareKit.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "URBNShareKit" 7 | PODS_BUILD_DIR = $BUILD_DIR 8 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /URBNShareKit.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "URBNShareKit" 3 | s.version = "0.2.2" 4 | s.summary = "URBNShareKit makes using the UIActivityViewController to share content a breeze. iOS 7+" 5 | s.homepage = "https://github.com/urbn/URBNShareKit" 6 | s.license = 'MIT' 7 | s.author = { "urbn" => "jgrandelli@urbn.com" } 8 | s.source = { :git => "https://github.com/urbn/URBNShareKit.git", :tag => s.version.to_s } 9 | 10 | s.platform = :ios, '7.0' 11 | s.requires_arc = true 12 | 13 | s.source_files = 'Pod/Classes' 14 | s.resource_bundles = { 15 | 'URBNShareKit' => ['Pod/Assets/*'] 16 | } 17 | end 18 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/URBNShareKit.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "URBNShareKit", 3 | "version": "0.2.2", 4 | "summary": "URBNShareKit makes using the UIActivityViewController to share content a breeze. iOS 7+", 5 | "homepage": "https://github.com/urbn/URBNShareKit", 6 | "license": "MIT", 7 | "authors": { 8 | "urbn": "jgrandelli@urbn.com" 9 | }, 10 | "source": { 11 | "git": "https://github.com/urbn/URBNShareKit.git", 12 | "tag": "0.2.2" 13 | }, 14 | "platforms": { 15 | "ios": "7.0" 16 | }, 17 | "requires_arc": true, 18 | "source_files": "Pod/Classes", 19 | "resource_bundles": { 20 | "URBNShareKit": [ 21 | "Pod/Assets/*" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Example/URBNShareKit/Images.xcassets/ron-swanson.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-1.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big.jpg" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "11-reasons-ron-swanson-is-my-perfect-man-1-20397-1374468746-0_big-2.jpg" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /.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 | # We recommend against adding the Pods directory to your .gitignore. However 26 | # you should judge for yourself, the pros and cons are mentioned at: 27 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 28 | # 29 | # Note: if you ignore the Pods directory, make sure to uncomment 30 | # `pod install` in .travis.yml 31 | # 32 | # Pods/ 33 | -------------------------------------------------------------------------------- /Example/Tests/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 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Pod/Classes/URBNImageProvider.h: -------------------------------------------------------------------------------- 1 | // 2 | // URBNImageProvider.h 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface URBNImageProvider : UIActivityItemProvider 12 | 13 | /** 14 | The image you want attached to the share activities 15 | */ 16 | @property (nonatomic, strong) UIImage *image; 17 | 18 | /** 19 | The thumbnail image you want attached to the share activities. 20 | If none is passed, the image is used as the thumbnail 21 | */ 22 | @property (nonatomic, strong) UIImage *thumbnailImage; 23 | 24 | /** 25 | This array should contain the UIActivityTypes you want the image attached to. See all types in URBNShareKit.h 26 | */ 27 | @property (nonatomic, strong) NSArray *activityTypesToDisplayImage; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/URBNShareKit/ResourceBundle-URBNShareKit-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 0.2.2 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-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/URBNShareKit/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.2.2 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/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-Tests/Pods-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 | -------------------------------------------------------------------------------- /Pod/Classes/URBNImageProvider.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNImageProvider.m 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | #import "URBNImageProvider.h" 10 | 11 | @implementation URBNImageProvider 12 | 13 | - (BOOL)shouldReturnImage { 14 | if (self.activityTypesToDisplayImage && self.activityTypesToDisplayImage.count > 0) { 15 | for (NSString *activityType in self.activityTypesToDisplayImage) { 16 | if ([self.activityType isEqualToString:activityType]) { 17 | return YES; 18 | } 19 | } 20 | return NO; 21 | } 22 | return YES; 23 | } 24 | 25 | - (UIImage *)activityViewController:(UIActivityViewController *)activityViewController thumbnailImageForActivityType:(NSString *)activityType suggestedSize:(CGSize)size { 26 | return [self shouldReturnImage] ? (self.thumbnailImage ? self.thumbnailImage : self.image) : nil; 27 | } 28 | 29 | - (id)activityViewController:(UIActivityViewController *)activityViewController itemForActivityType:(NSString *)activityType { 30 | return [self shouldReturnImage] ? self.image : nil; 31 | } 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Ryan Garchinsky 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/URBNShareKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "60x60", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "ipad", 25 | "size" : "29x29", 26 | "scale" : "1x" 27 | }, 28 | { 29 | "idiom" : "ipad", 30 | "size" : "29x29", 31 | "scale" : "2x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "40x40", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "40x40", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "76x76", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "76x76", 51 | "scale" : "2x" 52 | } 53 | ], 54 | "info" : { 55 | "version" : 1, 56 | "author" : "xcode" 57 | } 58 | } -------------------------------------------------------------------------------- /Example/URBNShareKit/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Pod/Classes/URBNShareKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // URBNShareKit.h 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | /** 10 | UIActivityType Constants 11 | 12 | NSString *const UIActivityTypePostToFacebook; 13 | NSString *const UIActivityTypePostToTwitter; 14 | NSString *const UIActivityTypePostToWeibo; 15 | NSString *const UIActivityTypeMessage; 16 | NSString *const UIActivityTypeMail; 17 | NSString *const UIActivityTypePrint; 18 | NSString *const UIActivityTypeCopyToPasteboard; 19 | NSString *const UIActivityTypeAssignToContact; 20 | NSString *const UIActivityTypeSaveToCameraRoll; 21 | NSString *const UIActivityTypeAddToReadingList; 22 | NSString *const UIActivityTypePostToFlickr; 23 | NSString *const UIActivityTypePostToVimeo; 24 | NSString *const UIActivityTypePostToTencentWeibo; 25 | NSString *const UIActivityTypeAirDrop; 26 | NSString *const kURBNActivityTypePinterest; 27 | 28 | Read more about each type here: 29 | https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIActivity_Class/index.html 30 | */ 31 | 32 | #import 33 | #import "URBNActivityViewController.h" 34 | #import "URBNBodyProvider.h" 35 | #import "URBNImageProvider.h" 36 | 37 | extern NSString *const kURBNActivityTypePinterest; 38 | extern NSString *const kURBNActivityTypeOpenInSafari; 39 | 40 | @interface URBNShareKit : NSObject 41 | 42 | @end 43 | -------------------------------------------------------------------------------- /Pod/Classes/URBNSafariActivity.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNSafariActivity.m 3 | // Pods 4 | // 5 | // Created by Dustin Bergman on 4/21/15. 6 | // 7 | // 8 | 9 | #import "URBNSafariActivity.h" 10 | #import "URBNShareKit.h" 11 | 12 | @interface URBNSafariActivity () 13 | 14 | @property (nonatomic, strong) NSURL *url; 15 | 16 | @end 17 | 18 | @implementation URBNSafariActivity 19 | 20 | - (instancetype)initWithURL:(NSURL *)URL { 21 | self = [self init]; 22 | 23 | if (self) { 24 | self.url = URL; 25 | } 26 | 27 | return self; 28 | } 29 | 30 | #pragma mark - Getter methods 31 | + (UIActivityCategory)activityCategory{ 32 | return UIActivityCategoryAction; 33 | } 34 | 35 | - (NSString *)activityType { 36 | return kURBNActivityTypeOpenInSafari; 37 | } 38 | 39 | - (NSString *)activityTitle { 40 | return NSLocalizedString(@"Open in Safari", nil); 41 | } 42 | 43 | - (UIImage *)activityImage { 44 | if (self.safariActivityImage) { 45 | return self.safariActivityImage; 46 | } 47 | 48 | return [UIImage imageNamed:@"URBNShareKit.bundle/safari-white"]; 49 | } 50 | 51 | - (BOOL)canPerformWithActivityItems:(NSArray *)activityItems { 52 | return YES; 53 | } 54 | 55 | - (void)performActivity { 56 | BOOL completed = NO; 57 | completed = [[UIApplication sharedApplication] openURL:self.url]; 58 | [self activityDidFinish:completed]; 59 | } 60 | 61 | @end 62 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## URBNShareKit 5 | 6 | Copyright (c) 2015 Ryan Garchinsky 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 | -------------------------------------------------------------------------------- /Pod/Classes/URBNBodyProvider.h: -------------------------------------------------------------------------------- 1 | // 2 | // URBNCopyProvider.h 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | /* 10 | Notes: 11 | - Pinterest activity does not support body text, only images 12 | */ 13 | 14 | #import 15 | 16 | @interface URBNBodyProvider : UIActivityItemProvider 17 | 18 | /** 19 | This text is used for all body properties that are not set, as well as 20 | activitity types that are not handled 21 | */ 22 | @property (nonatomic, strong) NSString *defaultBody; 23 | 24 | /** 25 | The text passed to the email body field. This can contain HTML tags, 26 | but they must be wrapped in .. to get rendered 27 | */ 28 | @property (nonatomic, strong) NSString *emailBody; 29 | 30 | /** 31 | If an activity type accepts a subject, this is what is passed. 32 | i.e. email subject 33 | */ 34 | @property (nonatomic, strong) NSString *subject; 35 | 36 | /** 37 | The text passed to the message field in a text message 38 | */ 39 | @property (nonatomic, strong) NSString *textMessageBody; 40 | 41 | /** 42 | The text passed to the the Tweet composer sheet 43 | */ 44 | @property (nonatomic, strong) NSString *twitterBody; 45 | 46 | /** 47 | The text passed to the the Facebook post composer sheet 48 | */ 49 | @property (nonatomic, strong) NSString *facebookBody; 50 | 51 | /** 52 | The text passed to the the the devices paste board 53 | */ 54 | @property (nonatomic, strong) NSString *pasteboardBody; 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /Pod/Classes/URBNActivityViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // URBNActivityViewController.h 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | #import 10 | #import "URBNShareKit.h" 11 | 12 | @class URBNImageProvider; 13 | @class URBNBodyProvider; 14 | 15 | @interface URBNActivityViewController : UIActivityViewController 16 | 17 | /** 18 | Created on init. Set various body texts before presenting 19 | */ 20 | @property (nonatomic, strong) URBNBodyProvider *bodyProvider; 21 | 22 | /** 23 | Created on init. Set image to be shared before presenting 24 | */ 25 | @property (nonatomic, strong) URBNImageProvider *imageProvider; 26 | 27 | /** 28 | This array should contain the UIActivityTypes the share sheet will support 29 | */ 30 | 31 | @property (nonatomic, strong) NSArray *includedActivityTypes; 32 | 33 | /** 34 | * This image will override the default Safari Activity Image 35 | */ 36 | 37 | @property (nonatomic, strong) UIImage *openInSafariActivtyImage; 38 | 39 | /** 40 | * Initalizer used when sharing a URL and displaying the `Open In Safari` option on the share sheet 41 | * 42 | * @param defaultBody Body text used for all activities, unless they are set explicity after initialization 43 | * @param url The url you wish to share 44 | * @param canOpenInSafari Whether you wish to display the `Open In Safari` option or not 45 | * 46 | * @return 47 | */ 48 | - (instancetype)initWithDefaultBody:(NSString *)defaultBody url:(NSURL *)url canOpenInSafari:(BOOL)canOpenInSafari NS_DESIGNATED_INITIALIZER; 49 | 50 | @end 51 | -------------------------------------------------------------------------------- /Pod/Classes/URBNBodyProvider.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNCopyProvider.m 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | #import "URBNBodyProvider.h" 10 | #import "URBNShareKit.h" 11 | 12 | @implementation URBNBodyProvider 13 | 14 | - (id)activityViewController:(UIActivityViewController *)activityViewController itemForActivityType:(NSString *)activityType { 15 | // Use the defaultBody for any body property not set, or an activity type not handled here 16 | if (activityType == UIActivityTypeMail) { 17 | return self.emailBody ? self.emailBody : self.defaultBody; 18 | } 19 | else if (activityType == UIActivityTypeMessage) { 20 | return self.textMessageBody ? self.textMessageBody : self.defaultBody; 21 | } 22 | else if (activityType == UIActivityTypePostToFacebook) { 23 | return self.facebookBody ? self.facebookBody : self.defaultBody; 24 | } 25 | else if (activityType == UIActivityTypePostToTwitter) { 26 | return self.twitterBody ? self.twitterBody : self.defaultBody; 27 | } 28 | else if (activityType == UIActivityTypeCopyToPasteboard) { 29 | return self.pasteboardBody ? self.pasteboardBody : self.defaultBody; 30 | } 31 | else { 32 | return self.defaultBody; 33 | } 34 | return nil; 35 | } 36 | 37 | - (id)activityViewControllerPlaceholderItem:(UIActivityViewController *)activityViewController { 38 | return [NSString string]; 39 | } 40 | 41 | - (NSString *)activityViewController:(UIActivityViewController *)activityViewController subjectForActivityType:(NSString *)activityType { 42 | return self.subject; 43 | } 44 | 45 | @end 46 | -------------------------------------------------------------------------------- /Example/URBNShareKit/URBNShareKit-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIMainStoryboardFile 28 | Main 29 | UIMainStoryboardFile~ipad 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/URBNShareKit/URBNAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNAppDelegate.m 3 | // URBNShareKit 4 | // 5 | // Created by CocoaPods on 01/15/2015. 6 | // Copyright (c) 2014 Ryan Garchinsky. All rights reserved. 7 | // 8 | 9 | #import "URBNAppDelegate.h" 10 | 11 | @implementation URBNAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // 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. 22 | // 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. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // 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. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 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 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // 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. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-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) 2015 Ryan Garchinsky <ryang1428@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 | URBNShareKit 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/URBNShareKit/URBNShareKitExampleVC.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNViewController.m 3 | // URBNShareKit 4 | // 5 | // Created by Ryan Garchinsky on 01/15/2015. 6 | // Copyright (c) 2014 Ryan Garchinsky. All rights reserved. 7 | // 8 | 9 | /* 10 | * You will need to run this on a device to see all possible sharing activities. 11 | * The simulator does not support most Activity Types. 12 | */ 13 | 14 | #import "URBNShareKitExampleVC.h" 15 | #import 16 | 17 | @interface URBNShareKitExampleVC () 18 | 19 | @property (strong, nonatomic) IBOutlet UIButton *shareButton; 20 | 21 | @end 22 | 23 | @implementation URBNShareKitExampleVC 24 | 25 | #pragma mark - Actions 26 | - (IBAction)shareButtonTouch:(id)sender { 27 | URBNActivityViewController *urbnActivityController = [[URBNActivityViewController alloc] initWithDefaultBody:@"This text will be set as the body for any activity types undefined by URBNShareKit, and for any support body texts you do not set below." url:[NSURL URLWithString:@"http://www.google.com"] canOpenInSafari:NO]; 28 | 29 | [urbnActivityController setIncludedActivityTypes:@[UIActivityTypeCopyToPasteboard, UIActivityTypeMail, UIActivityTypeMessage, UIActivityTypePostToFacebook, UIActivityTypePostToTwitter, kURBNActivityTypePinterest]]; 30 | 31 | urbnActivityController.bodyProvider.subject = @"My E-Mail Subject"; 32 | urbnActivityController.bodyProvider.emailBody = @"The body of the e-mail can contains HTML tags if you wrap them within HTML tags, doing so will hide the URL you are trying to share though."; 33 | urbnActivityController.bodyProvider.pasteboardBody = @"This was sent to my pasteboard"; 34 | urbnActivityController.bodyProvider.facebookBody = @"Check out my Facebook post"; 35 | urbnActivityController.bodyProvider.twitterBody = @"Tweet tweet"; 36 | urbnActivityController.bodyProvider.textMessageBody = @"This is a great text message"; 37 | 38 | urbnActivityController.imageProvider.activityTypesToDisplayImage = @[UIActivityTypeMail]; 39 | urbnActivityController.imageProvider.image = [UIImage imageNamed:@"ron-swanson"]; 40 | 41 | [self presentViewController:urbnActivityController animated:YES completion:nil]; 42 | } 43 | 44 | - (IBAction)shareUrlButtonTouched:(id)sender { 45 | URBNActivityViewController *urbnActivityController = [[URBNActivityViewController alloc] initWithDefaultBody:@"Testing" url:[NSURL URLWithString:@"http://www.urbanoutfitters.com/"] canOpenInSafari:YES]; 46 | 47 | [urbnActivityController setIncludedActivityTypes:@[UIActivityTypeCopyToPasteboard, UIActivityTypeMail, UIActivityTypeMessage, UIActivityTypePostToFacebook, UIActivityTypePostToTwitter, kURBNActivityTypePinterest, UIActivityTypeAddToReadingList]]; 48 | 49 | urbnActivityController.imageProvider.activityTypesToDisplayImage = @[UIActivityTypeMail]; 50 | urbnActivityController.imageProvider.image = [UIImage imageNamed:@"ron-swanson"]; 51 | 52 | [self presentViewController:urbnActivityController animated:YES completion:nil]; 53 | } 54 | 55 | @end 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![CI Status](http://img.shields.io/travis/urbn/URBNShareKit.svg?style=flat)](https://travis-ci.org/urbn/URBNShareKit) 2 | [![Version](https://img.shields.io/cocoapods/v/URBNShareKit.svg?style=flat)](http://cocoadocs.org/docsets/URBNShareKit) 3 | [![License](https://img.shields.io/cocoapods/l/URBNShareKit.svg?style=flat)](http://cocoadocs.org/docsets/URBNShareKit) 4 | [![Platform](https://img.shields.io/cocoapods/p/URBNShareKit.svg?style=flat)](http://cocoadocs.org/docsets/URBNShareKit) 5 | 6 | # URBNShareKit 7 | 8 | A subclass of UIActivityViewController which makes sharing content using the native iOS share sheet a breeze. 9 | 10 | ## iOS 8.3 Facebook Change 11 | As of iOS 8.3, you can no longer supply 'body' text to the Facebook activity. See more [here](http://stackoverflow.com/a/30020929/480415). You can still supply a link and an image though. 12 | 13 | ## Usage 14 | 15 | After adding URBNShareKit to your projects Podfile, import URBNShareKit using the following import line:
16 | `#import ` 17 | 18 | To use URBNShareKit, create an instance of `URBNActivityViewController`, and init using the designated initializer `initWithDefaultBody:` 19 | 20 | See the [exmaple project](https://github.com/urbn/URBNShareKit/blob/master/Example/URBNShareKit/URBNShareKitExampleVC.m) for more setup code. 21 | 22 | URBNShareKit supports the following activity types: 23 | ```objective-c 24 | NSString *const UIActivityTypePostToFacebook; 25 | NSString *const UIActivityTypePostToTwitter; 26 | NSString *const UIActivityTypePostToWeibo; 27 | NSString *const UIActivityTypeMessage; 28 | NSString *const UIActivityTypeMail; 29 | NSString *const UIActivityTypePrint; 30 | NSString *const UIActivityTypeCopyToPasteboard; 31 | NSString *const UIActivityTypeAssignToContact; 32 | NSString *const UIActivityTypeSaveToCameraRoll; 33 | NSString *const UIActivityTypeAddToReadingList; 34 | NSString *const UIActivityTypePostToFlickr; 35 | NSString *const UIActivityTypePostToVimeo; 36 | NSString *const UIActivityTypePostToTencentWeibo; 37 | NSString *const UIActivityTypeAirDrop; 38 | NSString *const kURBNActivityTypePinterest; 39 | ``` 40 | 41 | Supported UIActivityItemProvider types:
42 | 43 | ##### URBNBodyProvider
44 | Pass this provider body text to share. You can set different body text for different activity types. See [URBNBodyProvider.h](https://github.com/urbn/URBNShareKit/blob/master/Pod/Classes/URBNBodyProvider.h) for more info on supported body types.
45 | ##### URBNImageProvider
46 | Pass this provider an image that will be shared with supported activity types.
47 | ##### URBNUrlProvider
48 | Pass this provider a Url that will be shared with supported activity types.
49 | 50 | ## Requirements 51 | 52 | - iOS 7+ 53 | - Note: 3rd party activity types (ie Pinterest) will only work on devices with iOS 8+. 54 | 55 | ## Installation 56 | 57 | URBNShareKit is available through [CocoaPods](http://cocoapods.org). To install 58 | it, simply add the following line to your Podfile: 59 | 60 | pod "URBNShareKit" 61 | 62 | ## Author 63 | 64 | URBN Mobile Team, mobileteam@urbn.com 65 | 66 | ## License 67 | 68 | URBNShareKit is available under the MIT license. See the LICENSE file for more info. 69 | 70 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-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 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-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 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | 86 | if [[ "$CONFIGURATION" == "Debug" ]]; then 87 | install_framework "$BUILT_PRODUCTS_DIR/URBNShareKit/URBNShareKit.framework" 88 | fi 89 | if [[ "$CONFIGURATION" == "Release" ]]; then 90 | install_framework "$BUILT_PRODUCTS_DIR/URBNShareKit/URBNShareKit.framework" 91 | fi 92 | -------------------------------------------------------------------------------- /Pod/Classes/URBNActivityViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // URBNActivityViewController.m 3 | // Pods 4 | // 5 | // Created by Ryan Garchinsky on 1/15/15. 6 | // 7 | // 8 | 9 | #import "URBNActivityViewController.h" 10 | #import "URBNSafariActivity.h" 11 | 12 | @interface URBNActivityViewController() 13 | 14 | @property (nonatomic, assign) BOOL canOpenInSafari; 15 | @property (nonatomic, strong) URBNSafariActivity *safariActivity; 16 | 17 | @end 18 | 19 | @implementation URBNActivityViewController 20 | 21 | #pragma mark - Initilization 22 | - (instancetype)initWithDefaultBody:(NSString *)defaultBody url:(NSURL *)url canOpenInSafari:(BOOL)canOpenInSafari { 23 | NSAssert(defaultBody, @"You must pass a non-nil defaultBody. Please use the initWithDefaultBody: initalizer and ensure the passed text is not nil"); 24 | 25 | URBNBodyProvider *bodyProvider = [[URBNBodyProvider alloc] initWithPlaceholderItem:[NSString string]]; 26 | URBNImageProvider *imageProvider = [[URBNImageProvider alloc] initWithPlaceholderItem:[UIImage new]]; 27 | self.safariActivity = canOpenInSafari ? [[URBNSafariActivity alloc] initWithURL:url] : nil; 28 | NSArray *applicationActivities = self.safariActivity ? @[self.safariActivity] : nil; 29 | 30 | NSMutableArray *activityItems = [@[bodyProvider, imageProvider] mutableCopy]; 31 | if (url) { 32 | [activityItems addObject:url]; 33 | } 34 | 35 | self = [super initWithActivityItems:activityItems applicationActivities:applicationActivities]; 36 | if (self) { 37 | self.bodyProvider = bodyProvider; 38 | self.bodyProvider.defaultBody = defaultBody; 39 | self.imageProvider = imageProvider; 40 | 41 | self.canOpenInSafari = canOpenInSafari; 42 | } 43 | 44 | return self; 45 | } 46 | 47 | - (instancetype)initWithActivityItems:(NSArray *)activityItems applicationActivities:(NSArray *)applicationActivities { 48 | return [self initWithDefaultBody:nil url:nil canOpenInSafari:NO]; 49 | } 50 | 51 | - (instancetype)init { 52 | return [self initWithDefaultBody:nil url:nil canOpenInSafari:NO]; 53 | } 54 | 55 | - (void)setOpenInSafariActivtyImage:(UIImage *)openInSafariImage { 56 | self.safariActivity.safariActivityImage = openInSafariImage; 57 | } 58 | 59 | #pragma mark - Methods 60 | /** 61 | UIActivityViewController by default accepts a NSArray of excludedActivityTypes. This allows you to 62 | pass an array of included activity types. 63 | */ 64 | - (void)setIncludedActivityTypes:(NSArray *)includedActivityTypesArray { 65 | 66 | 67 | NSArray *activityTypesArray = @[UIActivityTypePostToFacebook, 68 | UIActivityTypePostToTwitter, 69 | UIActivityTypePostToWeibo, 70 | UIActivityTypeMessage, 71 | UIActivityTypeMail, 72 | UIActivityTypePrint, 73 | UIActivityTypeCopyToPasteboard, 74 | UIActivityTypeAssignToContact, 75 | UIActivityTypeSaveToCameraRoll, 76 | UIActivityTypeAddToReadingList, 77 | UIActivityTypePostToFlickr, 78 | UIActivityTypePostToVimeo, 79 | UIActivityTypePostToTencentWeibo, 80 | UIActivityTypeAirDrop, 81 | kURBNActivityTypePinterest, 82 | kURBNActivityTypeOpenInSafari]; 83 | 84 | if (self.canOpenInSafari) { 85 | NSMutableArray *mutable = [NSMutableArray arrayWithArray:includedActivityTypesArray]; 86 | [mutable addObject:kURBNActivityTypeOpenInSafari]; 87 | includedActivityTypesArray = [mutable copy]; 88 | } 89 | 90 | NSMutableSet *typesSet = [NSMutableSet setWithArray:activityTypesArray]; 91 | NSMutableSet *includedTypesSet = [NSMutableSet setWithArray:includedActivityTypesArray]; 92 | [typesSet minusSet:includedTypesSet]; 93 | 94 | self.excludedActivityTypes = typesSet.allObjects; 95 | } 96 | 97 | @end 98 | -------------------------------------------------------------------------------- /Example/URBNShareKit.xcodeproj/xcshareddata/xcschemes/URBNShareKit-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-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 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | install_resource() 27 | { 28 | if [[ "$1" = /* ]] ; then 29 | RESOURCE_PATH="$1" 30 | else 31 | RESOURCE_PATH="${PODS_ROOT}/$1" 32 | fi 33 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 34 | cat << EOM 35 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 36 | EOM 37 | exit 1 38 | fi 39 | case $RESOURCE_PATH in 40 | *.storyboard) 41 | 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}" 42 | 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} 43 | ;; 44 | *.xib) 45 | 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}" 46 | 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} 47 | ;; 48 | *.framework) 49 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 50 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 51 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 52 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | ;; 54 | *.xcdatamodel) 55 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 56 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 57 | ;; 58 | *.xcdatamodeld) 59 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 60 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 61 | ;; 62 | *.xcmappingmodel) 63 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 64 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 65 | ;; 66 | *.xcassets) 67 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 68 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 69 | ;; 70 | *) 71 | echo "$RESOURCE_PATH" 72 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 73 | ;; 74 | esac 75 | } 76 | 77 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 78 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 79 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 80 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | fi 83 | rm -f "$RESOURCES_TO_COPY" 84 | 85 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 86 | then 87 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 88 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 89 | while read line; do 90 | if [[ $line != "${PODS_ROOT}*" ]]; then 91 | XCASSET_FILES+=("$line") 92 | fi 93 | done <<<"$OTHER_XCASSETS" 94 | 95 | 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}" 96 | fi 97 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-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 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | install_resource() 27 | { 28 | if [[ "$1" = /* ]] ; then 29 | RESOURCE_PATH="$1" 30 | else 31 | RESOURCE_PATH="${PODS_ROOT}/$1" 32 | fi 33 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 34 | cat << EOM 35 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 36 | EOM 37 | exit 1 38 | fi 39 | case $RESOURCE_PATH in 40 | *.storyboard) 41 | 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}" 42 | 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} 43 | ;; 44 | *.xib) 45 | 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}" 46 | 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} 47 | ;; 48 | *.framework) 49 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 50 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 51 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 52 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 53 | ;; 54 | *.xcdatamodel) 55 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 56 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 57 | ;; 58 | *.xcdatamodeld) 59 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 60 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 61 | ;; 62 | *.xcmappingmodel) 63 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 64 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 65 | ;; 66 | *.xcassets) 67 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 68 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 69 | ;; 70 | *) 71 | echo "$RESOURCE_PATH" 72 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 73 | ;; 74 | esac 75 | } 76 | 77 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 78 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 79 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 80 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 81 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 82 | fi 83 | rm -f "$RESOURCES_TO_COPY" 84 | 85 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 86 | then 87 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 88 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 89 | while read line; do 90 | if [[ $line != "${PODS_ROOT}*" ]]; then 91 | XCASSET_FILES+=("$line") 92 | fi 93 | done <<<"$OTHER_XCASSETS" 94 | 95 | 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}" 96 | fi 97 | -------------------------------------------------------------------------------- /Example/URBNShareKit/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 | 34 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /Example/URBNShareKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3D043FB85D7C63185482F678 /* Pods_URBNShareKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 202E198C92A69652932C11E3 /* Pods_URBNShareKit.framework */; }; 11 | 3EFCE27F5FCF9125D4239063 /* Pods_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D24F429A451F1202A9ABC4CE /* Pods_Tests.framework */; }; 12 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 13 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 14 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 15 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 16 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 17 | 6003F59E195388D20070C39A /* URBNAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* URBNAppDelegate.m */; }; 18 | 6003F5A1195388D20070C39A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F59F195388D20070C39A /* Main.storyboard */; }; 19 | 6003F5A7195388D20070C39A /* URBNShareKitExampleVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* URBNShareKitExampleVC.m */; }; 20 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 21 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 22 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 23 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 24 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 25 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 6003F582195388D10070C39A /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 6003F589195388D20070C39A; 34 | remoteInfo = URBNShareKit; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 202E198C92A69652932C11E3 /* Pods_URBNShareKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_URBNShareKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 317BB57E59958F1C0B58E088 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 41 | 6003F58A195388D20070C39A /* URBNShareKit.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = URBNShareKit.app; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 43 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 44 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 45 | 6003F595195388D20070C39A /* URBNShareKit-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "URBNShareKit-Info.plist"; sourceTree = ""; }; 46 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 47 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 48 | 6003F59B195388D20070C39A /* URBNShareKit-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "URBNShareKit-Prefix.pch"; sourceTree = ""; }; 49 | 6003F59C195388D20070C39A /* URBNAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = URBNAppDelegate.h; sourceTree = ""; }; 50 | 6003F59D195388D20070C39A /* URBNAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = URBNAppDelegate.m; sourceTree = ""; }; 51 | 6003F5A0195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 52 | 6003F5A5195388D20070C39A /* URBNShareKitExampleVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = URBNShareKitExampleVC.h; sourceTree = ""; }; 53 | 6003F5A6195388D20070C39A /* URBNShareKitExampleVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = URBNShareKitExampleVC.m; sourceTree = ""; }; 54 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 55 | 6003F5AE195388D20070C39A /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 57 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 58 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 59 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 60 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 61 | 633D43971B522EBE963ED131 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 62 | 6C7288D5F818A015BA7239AE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 63 | 70920A2131B9CD858C04F575 /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig"; sourceTree = ""; }; 64 | AFD5BB70DBBF6631F79CA4FE /* Pods-URBNShareKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-URBNShareKit.debug.xcconfig"; path = "Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit.debug.xcconfig"; sourceTree = ""; }; 65 | D24F429A451F1202A9ABC4CE /* Pods_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | D304F1227CF4E250BE77FB2D /* URBNShareKit.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = URBNShareKit.podspec; path = ../URBNShareKit.podspec; sourceTree = ""; }; 67 | E46F564EF63AE63E1D9F2669 /* Pods-URBNShareKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-URBNShareKit.release.xcconfig"; path = "Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit.release.xcconfig"; sourceTree = ""; }; 68 | /* End PBXFileReference section */ 69 | 70 | /* Begin PBXFrameworksBuildPhase section */ 71 | 6003F587195388D20070C39A /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 76 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 77 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 78 | 3D043FB85D7C63185482F678 /* Pods_URBNShareKit.framework in Frameworks */, 79 | ); 80 | runOnlyForDeploymentPostprocessing = 0; 81 | }; 82 | 6003F5AB195388D20070C39A /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 87 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 88 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 89 | 3EFCE27F5FCF9125D4239063 /* Pods_Tests.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | /* End PBXFrameworksBuildPhase section */ 94 | 95 | /* Begin PBXGroup section */ 96 | 6003F581195388D10070C39A = { 97 | isa = PBXGroup; 98 | children = ( 99 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 100 | 6003F593195388D20070C39A /* URBNShareKit */, 101 | 6003F5B5195388D20070C39A /* Tests */, 102 | 6003F58C195388D20070C39A /* Frameworks */, 103 | 6003F58B195388D20070C39A /* Products */, 104 | 95DB4A29C5E758D5923470DD /* Pods */, 105 | ); 106 | sourceTree = ""; 107 | }; 108 | 6003F58B195388D20070C39A /* Products */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 6003F58A195388D20070C39A /* URBNShareKit.app */, 112 | 6003F5AE195388D20070C39A /* Tests.xctest */, 113 | ); 114 | name = Products; 115 | sourceTree = ""; 116 | }; 117 | 6003F58C195388D20070C39A /* Frameworks */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 6003F58D195388D20070C39A /* Foundation.framework */, 121 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 122 | 6003F591195388D20070C39A /* UIKit.framework */, 123 | 6003F5AF195388D20070C39A /* XCTest.framework */, 124 | D24F429A451F1202A9ABC4CE /* Pods_Tests.framework */, 125 | 202E198C92A69652932C11E3 /* Pods_URBNShareKit.framework */, 126 | ); 127 | name = Frameworks; 128 | sourceTree = ""; 129 | }; 130 | 6003F593195388D20070C39A /* URBNShareKit */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 6003F59C195388D20070C39A /* URBNAppDelegate.h */, 134 | 6003F59D195388D20070C39A /* URBNAppDelegate.m */, 135 | 6003F5A5195388D20070C39A /* URBNShareKitExampleVC.h */, 136 | 6003F5A6195388D20070C39A /* URBNShareKitExampleVC.m */, 137 | 6003F5A8195388D20070C39A /* Images.xcassets */, 138 | 6003F59F195388D20070C39A /* Main.storyboard */, 139 | 6003F594195388D20070C39A /* Supporting Files */, 140 | ); 141 | path = URBNShareKit; 142 | sourceTree = ""; 143 | }; 144 | 6003F594195388D20070C39A /* Supporting Files */ = { 145 | isa = PBXGroup; 146 | children = ( 147 | 6003F595195388D20070C39A /* URBNShareKit-Info.plist */, 148 | 6003F596195388D20070C39A /* InfoPlist.strings */, 149 | 6003F599195388D20070C39A /* main.m */, 150 | 6003F59B195388D20070C39A /* URBNShareKit-Prefix.pch */, 151 | ); 152 | name = "Supporting Files"; 153 | sourceTree = ""; 154 | }; 155 | 6003F5B5195388D20070C39A /* Tests */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 6003F5BB195388D20070C39A /* Tests.m */, 159 | 6003F5B6195388D20070C39A /* Supporting Files */, 160 | ); 161 | path = Tests; 162 | sourceTree = ""; 163 | }; 164 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 165 | isa = PBXGroup; 166 | children = ( 167 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 168 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 169 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 170 | ); 171 | name = "Supporting Files"; 172 | sourceTree = ""; 173 | }; 174 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 175 | isa = PBXGroup; 176 | children = ( 177 | D304F1227CF4E250BE77FB2D /* URBNShareKit.podspec */, 178 | 6C7288D5F818A015BA7239AE /* README.md */, 179 | 633D43971B522EBE963ED131 /* LICENSE */, 180 | ); 181 | name = "Podspec Metadata"; 182 | sourceTree = ""; 183 | }; 184 | 95DB4A29C5E758D5923470DD /* Pods */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | 317BB57E59958F1C0B58E088 /* Pods-Tests.debug.xcconfig */, 188 | 70920A2131B9CD858C04F575 /* Pods-Tests.release.xcconfig */, 189 | AFD5BB70DBBF6631F79CA4FE /* Pods-URBNShareKit.debug.xcconfig */, 190 | E46F564EF63AE63E1D9F2669 /* Pods-URBNShareKit.release.xcconfig */, 191 | ); 192 | name = Pods; 193 | sourceTree = ""; 194 | }; 195 | /* End PBXGroup section */ 196 | 197 | /* Begin PBXNativeTarget section */ 198 | 6003F589195388D20070C39A /* URBNShareKit */ = { 199 | isa = PBXNativeTarget; 200 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "URBNShareKit" */; 201 | buildPhases = ( 202 | 297A0ED9D61F6C71CF025E2E /* [CP] Check Pods Manifest.lock */, 203 | 6003F586195388D20070C39A /* Sources */, 204 | 6003F587195388D20070C39A /* Frameworks */, 205 | 6003F588195388D20070C39A /* Resources */, 206 | 00A2F888DAA5E8A1E958F13D /* [CP] Embed Pods Frameworks */, 207 | 0D6E93C610750D4CF38B5171 /* [CP] Copy Pods Resources */, 208 | ); 209 | buildRules = ( 210 | ); 211 | dependencies = ( 212 | ); 213 | name = URBNShareKit; 214 | productName = URBNShareKit; 215 | productReference = 6003F58A195388D20070C39A /* URBNShareKit.app */; 216 | productType = "com.apple.product-type.application"; 217 | }; 218 | 6003F5AD195388D20070C39A /* Tests */ = { 219 | isa = PBXNativeTarget; 220 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */; 221 | buildPhases = ( 222 | E1B329066FCC5E1CFD07E7F3 /* [CP] Check Pods Manifest.lock */, 223 | 6003F5AA195388D20070C39A /* Sources */, 224 | 6003F5AB195388D20070C39A /* Frameworks */, 225 | 6003F5AC195388D20070C39A /* Resources */, 226 | 205687405A07A2E7E3FE1CAB /* [CP] Embed Pods Frameworks */, 227 | 8E67C7D3AC554EA6BEA077A5 /* [CP] Copy Pods Resources */, 228 | ); 229 | buildRules = ( 230 | ); 231 | dependencies = ( 232 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 233 | ); 234 | name = Tests; 235 | productName = URBNShareKitTests; 236 | productReference = 6003F5AE195388D20070C39A /* Tests.xctest */; 237 | productType = "com.apple.product-type.bundle.unit-test"; 238 | }; 239 | /* End PBXNativeTarget section */ 240 | 241 | /* Begin PBXProject section */ 242 | 6003F582195388D10070C39A /* Project object */ = { 243 | isa = PBXProject; 244 | attributes = { 245 | CLASSPREFIX = URBN; 246 | LastUpgradeCheck = 0800; 247 | ORGANIZATIONNAME = "Ryan Garchinsky"; 248 | TargetAttributes = { 249 | 6003F5AD195388D20070C39A = { 250 | TestTargetID = 6003F589195388D20070C39A; 251 | }; 252 | }; 253 | }; 254 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "URBNShareKit" */; 255 | compatibilityVersion = "Xcode 3.2"; 256 | developmentRegion = English; 257 | hasScannedForEncodings = 0; 258 | knownRegions = ( 259 | en, 260 | Base, 261 | ); 262 | mainGroup = 6003F581195388D10070C39A; 263 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 264 | projectDirPath = ""; 265 | projectRoot = ""; 266 | targets = ( 267 | 6003F589195388D20070C39A /* URBNShareKit */, 268 | 6003F5AD195388D20070C39A /* Tests */, 269 | ); 270 | }; 271 | /* End PBXProject section */ 272 | 273 | /* Begin PBXResourcesBuildPhase section */ 274 | 6003F588195388D20070C39A /* Resources */ = { 275 | isa = PBXResourcesBuildPhase; 276 | buildActionMask = 2147483647; 277 | files = ( 278 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 279 | 6003F5A1195388D20070C39A /* Main.storyboard in Resources */, 280 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | }; 284 | 6003F5AC195388D20070C39A /* Resources */ = { 285 | isa = PBXResourcesBuildPhase; 286 | buildActionMask = 2147483647; 287 | files = ( 288 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | }; 292 | /* End PBXResourcesBuildPhase section */ 293 | 294 | /* Begin PBXShellScriptBuildPhase section */ 295 | 00A2F888DAA5E8A1E958F13D /* [CP] Embed Pods Frameworks */ = { 296 | isa = PBXShellScriptBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | ); 300 | inputPaths = ( 301 | ); 302 | name = "[CP] Embed Pods Frameworks"; 303 | outputPaths = ( 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | shellPath = /bin/sh; 307 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-frameworks.sh\"\n"; 308 | showEnvVarsInLog = 0; 309 | }; 310 | 0D6E93C610750D4CF38B5171 /* [CP] Copy Pods Resources */ = { 311 | isa = PBXShellScriptBuildPhase; 312 | buildActionMask = 2147483647; 313 | files = ( 314 | ); 315 | inputPaths = ( 316 | ); 317 | name = "[CP] Copy Pods Resources"; 318 | outputPaths = ( 319 | ); 320 | runOnlyForDeploymentPostprocessing = 0; 321 | shellPath = /bin/sh; 322 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit-resources.sh\"\n"; 323 | showEnvVarsInLog = 0; 324 | }; 325 | 205687405A07A2E7E3FE1CAB /* [CP] Embed Pods Frameworks */ = { 326 | isa = PBXShellScriptBuildPhase; 327 | buildActionMask = 2147483647; 328 | files = ( 329 | ); 330 | inputPaths = ( 331 | ); 332 | name = "[CP] Embed Pods Frameworks"; 333 | outputPaths = ( 334 | ); 335 | runOnlyForDeploymentPostprocessing = 0; 336 | shellPath = /bin/sh; 337 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Tests/Pods-Tests-frameworks.sh\"\n"; 338 | showEnvVarsInLog = 0; 339 | }; 340 | 297A0ED9D61F6C71CF025E2E /* [CP] Check Pods Manifest.lock */ = { 341 | isa = PBXShellScriptBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | ); 345 | inputPaths = ( 346 | ); 347 | name = "[CP] Check Pods Manifest.lock"; 348 | outputPaths = ( 349 | ); 350 | runOnlyForDeploymentPostprocessing = 0; 351 | shellPath = /bin/sh; 352 | shellScript = "diff \"${PODS_ROOT}/../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"; 353 | showEnvVarsInLog = 0; 354 | }; 355 | 8E67C7D3AC554EA6BEA077A5 /* [CP] Copy Pods Resources */ = { 356 | isa = PBXShellScriptBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | ); 360 | inputPaths = ( 361 | ); 362 | name = "[CP] Copy Pods Resources"; 363 | outputPaths = ( 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | shellPath = /bin/sh; 367 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh\"\n"; 368 | showEnvVarsInLog = 0; 369 | }; 370 | E1B329066FCC5E1CFD07E7F3 /* [CP] Check Pods Manifest.lock */ = { 371 | isa = PBXShellScriptBuildPhase; 372 | buildActionMask = 2147483647; 373 | files = ( 374 | ); 375 | inputPaths = ( 376 | ); 377 | name = "[CP] Check Pods Manifest.lock"; 378 | outputPaths = ( 379 | ); 380 | runOnlyForDeploymentPostprocessing = 0; 381 | shellPath = /bin/sh; 382 | shellScript = "diff \"${PODS_ROOT}/../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"; 383 | showEnvVarsInLog = 0; 384 | }; 385 | /* End PBXShellScriptBuildPhase section */ 386 | 387 | /* Begin PBXSourcesBuildPhase section */ 388 | 6003F586195388D20070C39A /* Sources */ = { 389 | isa = PBXSourcesBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 6003F59E195388D20070C39A /* URBNAppDelegate.m in Sources */, 393 | 6003F5A7195388D20070C39A /* URBNShareKitExampleVC.m in Sources */, 394 | 6003F59A195388D20070C39A /* main.m in Sources */, 395 | ); 396 | runOnlyForDeploymentPostprocessing = 0; 397 | }; 398 | 6003F5AA195388D20070C39A /* Sources */ = { 399 | isa = PBXSourcesBuildPhase; 400 | buildActionMask = 2147483647; 401 | files = ( 402 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 403 | ); 404 | runOnlyForDeploymentPostprocessing = 0; 405 | }; 406 | /* End PBXSourcesBuildPhase section */ 407 | 408 | /* Begin PBXTargetDependency section */ 409 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 410 | isa = PBXTargetDependency; 411 | target = 6003F589195388D20070C39A /* URBNShareKit */; 412 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 413 | }; 414 | /* End PBXTargetDependency section */ 415 | 416 | /* Begin PBXVariantGroup section */ 417 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 418 | isa = PBXVariantGroup; 419 | children = ( 420 | 6003F597195388D20070C39A /* en */, 421 | ); 422 | name = InfoPlist.strings; 423 | sourceTree = ""; 424 | }; 425 | 6003F59F195388D20070C39A /* Main.storyboard */ = { 426 | isa = PBXVariantGroup; 427 | children = ( 428 | 6003F5A0195388D20070C39A /* Base */, 429 | ); 430 | name = Main.storyboard; 431 | sourceTree = ""; 432 | }; 433 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 434 | isa = PBXVariantGroup; 435 | children = ( 436 | 6003F5B9195388D20070C39A /* en */, 437 | ); 438 | name = InfoPlist.strings; 439 | sourceTree = ""; 440 | }; 441 | /* End PBXVariantGroup section */ 442 | 443 | /* Begin XCBuildConfiguration section */ 444 | 6003F5BD195388D20070C39A /* Debug */ = { 445 | isa = XCBuildConfiguration; 446 | buildSettings = { 447 | ALWAYS_SEARCH_USER_PATHS = NO; 448 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 449 | CLANG_CXX_LIBRARY = "libc++"; 450 | CLANG_ENABLE_MODULES = YES; 451 | CLANG_ENABLE_OBJC_ARC = YES; 452 | CLANG_WARN_BOOL_CONVERSION = YES; 453 | CLANG_WARN_CONSTANT_CONVERSION = YES; 454 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 455 | CLANG_WARN_EMPTY_BODY = YES; 456 | CLANG_WARN_ENUM_CONVERSION = YES; 457 | CLANG_WARN_INFINITE_RECURSION = YES; 458 | CLANG_WARN_INT_CONVERSION = YES; 459 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 460 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 461 | CLANG_WARN_UNREACHABLE_CODE = YES; 462 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 463 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 464 | COPY_PHASE_STRIP = NO; 465 | ENABLE_STRICT_OBJC_MSGSEND = YES; 466 | ENABLE_TESTABILITY = YES; 467 | GCC_C_LANGUAGE_STANDARD = gnu99; 468 | GCC_DYNAMIC_NO_PIC = NO; 469 | GCC_NO_COMMON_BLOCKS = YES; 470 | GCC_OPTIMIZATION_LEVEL = 0; 471 | GCC_PREPROCESSOR_DEFINITIONS = ( 472 | "DEBUG=1", 473 | "$(inherited)", 474 | ); 475 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 476 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 477 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 478 | GCC_WARN_UNDECLARED_SELECTOR = YES; 479 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 480 | GCC_WARN_UNUSED_FUNCTION = YES; 481 | GCC_WARN_UNUSED_VARIABLE = YES; 482 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 483 | ONLY_ACTIVE_ARCH = YES; 484 | SDKROOT = iphoneos; 485 | TARGETED_DEVICE_FAMILY = "1,2"; 486 | }; 487 | name = Debug; 488 | }; 489 | 6003F5BE195388D20070C39A /* Release */ = { 490 | isa = XCBuildConfiguration; 491 | buildSettings = { 492 | ALWAYS_SEARCH_USER_PATHS = NO; 493 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 494 | CLANG_CXX_LIBRARY = "libc++"; 495 | CLANG_ENABLE_MODULES = YES; 496 | CLANG_ENABLE_OBJC_ARC = YES; 497 | CLANG_WARN_BOOL_CONVERSION = YES; 498 | CLANG_WARN_CONSTANT_CONVERSION = YES; 499 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 500 | CLANG_WARN_EMPTY_BODY = YES; 501 | CLANG_WARN_ENUM_CONVERSION = YES; 502 | CLANG_WARN_INFINITE_RECURSION = YES; 503 | CLANG_WARN_INT_CONVERSION = YES; 504 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 505 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 506 | CLANG_WARN_UNREACHABLE_CODE = YES; 507 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 508 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 509 | COPY_PHASE_STRIP = YES; 510 | ENABLE_NS_ASSERTIONS = NO; 511 | ENABLE_STRICT_OBJC_MSGSEND = YES; 512 | GCC_C_LANGUAGE_STANDARD = gnu99; 513 | GCC_NO_COMMON_BLOCKS = YES; 514 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 515 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 516 | GCC_WARN_UNDECLARED_SELECTOR = YES; 517 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 518 | GCC_WARN_UNUSED_FUNCTION = YES; 519 | GCC_WARN_UNUSED_VARIABLE = YES; 520 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 521 | SDKROOT = iphoneos; 522 | TARGETED_DEVICE_FAMILY = "1,2"; 523 | VALIDATE_PRODUCT = YES; 524 | }; 525 | name = Release; 526 | }; 527 | 6003F5C0195388D20070C39A /* Debug */ = { 528 | isa = XCBuildConfiguration; 529 | baseConfigurationReference = AFD5BB70DBBF6631F79CA4FE /* Pods-URBNShareKit.debug.xcconfig */; 530 | buildSettings = { 531 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 532 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 533 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 534 | GCC_PREFIX_HEADER = "URBNShareKit/URBNShareKit-Prefix.pch"; 535 | INFOPLIST_FILE = "URBNShareKit/URBNShareKit-Info.plist"; 536 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | WRAPPER_EXTENSION = app; 539 | }; 540 | name = Debug; 541 | }; 542 | 6003F5C1195388D20070C39A /* Release */ = { 543 | isa = XCBuildConfiguration; 544 | baseConfigurationReference = E46F564EF63AE63E1D9F2669 /* Pods-URBNShareKit.release.xcconfig */; 545 | buildSettings = { 546 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 547 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 548 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 549 | GCC_PREFIX_HEADER = "URBNShareKit/URBNShareKit-Prefix.pch"; 550 | INFOPLIST_FILE = "URBNShareKit/URBNShareKit-Info.plist"; 551 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 552 | PRODUCT_NAME = "$(TARGET_NAME)"; 553 | WRAPPER_EXTENSION = app; 554 | }; 555 | name = Release; 556 | }; 557 | 6003F5C3195388D20070C39A /* Debug */ = { 558 | isa = XCBuildConfiguration; 559 | baseConfigurationReference = 317BB57E59958F1C0B58E088 /* Pods-Tests.debug.xcconfig */; 560 | buildSettings = { 561 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/URBNShareKit.app/URBNShareKit"; 562 | FRAMEWORK_SEARCH_PATHS = ( 563 | "$(SDKROOT)/Developer/Library/Frameworks", 564 | "$(inherited)", 565 | "$(DEVELOPER_FRAMEWORKS_DIR)", 566 | ); 567 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 568 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 569 | GCC_PREPROCESSOR_DEFINITIONS = ( 570 | "DEBUG=1", 571 | "$(inherited)", 572 | ); 573 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 574 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 575 | PRODUCT_NAME = "$(TARGET_NAME)"; 576 | TEST_HOST = "$(BUNDLE_LOADER)"; 577 | WRAPPER_EXTENSION = xctest; 578 | }; 579 | name = Debug; 580 | }; 581 | 6003F5C4195388D20070C39A /* Release */ = { 582 | isa = XCBuildConfiguration; 583 | baseConfigurationReference = 70920A2131B9CD858C04F575 /* Pods-Tests.release.xcconfig */; 584 | buildSettings = { 585 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/URBNShareKit.app/URBNShareKit"; 586 | FRAMEWORK_SEARCH_PATHS = ( 587 | "$(SDKROOT)/Developer/Library/Frameworks", 588 | "$(inherited)", 589 | "$(DEVELOPER_FRAMEWORKS_DIR)", 590 | ); 591 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 592 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 593 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 594 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 595 | PRODUCT_NAME = "$(TARGET_NAME)"; 596 | TEST_HOST = "$(BUNDLE_LOADER)"; 597 | WRAPPER_EXTENSION = xctest; 598 | }; 599 | name = Release; 600 | }; 601 | /* End XCBuildConfiguration section */ 602 | 603 | /* Begin XCConfigurationList section */ 604 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "URBNShareKit" */ = { 605 | isa = XCConfigurationList; 606 | buildConfigurations = ( 607 | 6003F5BD195388D20070C39A /* Debug */, 608 | 6003F5BE195388D20070C39A /* Release */, 609 | ); 610 | defaultConfigurationIsVisible = 0; 611 | defaultConfigurationName = Release; 612 | }; 613 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "URBNShareKit" */ = { 614 | isa = XCConfigurationList; 615 | buildConfigurations = ( 616 | 6003F5C0195388D20070C39A /* Debug */, 617 | 6003F5C1195388D20070C39A /* Release */, 618 | ); 619 | defaultConfigurationIsVisible = 0; 620 | defaultConfigurationName = Release; 621 | }; 622 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */ = { 623 | isa = XCConfigurationList; 624 | buildConfigurations = ( 625 | 6003F5C3195388D20070C39A /* Debug */, 626 | 6003F5C4195388D20070C39A /* Release */, 627 | ); 628 | defaultConfigurationIsVisible = 0; 629 | defaultConfigurationName = Release; 630 | }; 631 | /* End XCConfigurationList section */ 632 | }; 633 | rootObject = 6003F582195388D10070C39A /* Project object */; 634 | } 635 | -------------------------------------------------------------------------------- /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 | 00124A3F9DD05E337B30DAF54F4DCE26 /* Pods-URBNShareKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95A8E198F958B2D5BDC324468F2D72BE /* Pods-URBNShareKit-dummy.m */; }; 11 | 040E111E59C418DC6EB68FD0719B7A1C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 12 | 075CDA41EBFCFE80DB7FCD69633EDBE7 /* URBNBodyProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = CBDD4330C9ACFC3DC1AF65E153EE0DAB /* URBNBodyProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 16BA18E09B0F87B4686BCAC674DA5473 /* URBNImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FEBFC11565FB570C2B9344B48D1C9BAE /* URBNImageProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 2CF97E257AB930F62424C5E8047C60EB /* URBNShareKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 80115C6FE558D2995A1EA57DB317629D /* URBNShareKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 3B8EF040B065438BFF6AC6E28462CB13 /* URBNSafariActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1BBFCEA4738598EC6D0549F2D0EED0 /* URBNSafariActivity.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 3F9D37B50205CBAD5043A5B228A0C896 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 17 | 42F79A56CB7D9CB314A9EDC19BBF86B7 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = BEF4CF046C578DBE80D652ED459634E9 /* en.lproj */; }; 18 | 4C4D663D129460B9E0556F6DAAC0C50D /* URBNBodyProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = F7A4D88ED8DC6C3320A67D8B6C9674A6 /* URBNBodyProvider.m */; }; 19 | 5F10D051EC0C57A371A89F8707CA5C5D /* safari-white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6B68CB50CFDFD50FDE353B8519AA36FF /* safari-white@2x.png */; }; 20 | 62F4F0FE525074887791A755EC766F39 /* URBNShareKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C91794F80F51643C85C3FD5C975427D /* URBNShareKit-dummy.m */; }; 21 | 65472460E715443473AC1FCF100620A0 /* safari-white@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = A4E7E460ABE8EDE801106FE0CA3B3338 /* safari-white@3x.png */; }; 22 | 6F9B9879598F230108297447080665E6 /* URBNImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DD758728F98B6B202C9A3870E0C4E8CA /* URBNImageProvider.m */; }; 23 | 70FC235EB9136DFFEFB40BA1E296144E /* Pods-Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7DDC7E75A3384D4D3A8B01A3BC1A1D /* Pods-Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 24 | 756A5038DA55E2BF91264FD4CBE20FFB /* Pods-Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9FDD39C2BF2BD94691C1FCFE88D3B7A /* Pods-Tests-dummy.m */; }; 25 | 9195D51457EF7702F519DAD3E1CF4F21 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */; }; 26 | 9F34E5B8F3923A59B9DBE6B52C9A8301 /* URBNShareKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3480EF191D916123B0CE3B639A7411AD /* URBNShareKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 27 | CCD7CBD6C98CA6951E519C16F93F7AA9 /* URBNSafariActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 12B7A1D1BC21E656CAC3B7E9F1583D0C /* URBNSafariActivity.m */; }; 28 | D7B7749F7B4652D23A9F005BFF45484F /* URBNActivityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E7F26798AF1A4FF4A0366FFE30E838FF /* URBNActivityViewController.m */; }; 29 | EB8A2295EE70F84E9A806D326FEB7F79 /* Pods-URBNShareKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FD95B5D92E12849EBB8BD8C22918D172 /* Pods-URBNShareKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 30 | ECEF8F7912920C2DA3E860EDB401D9F2 /* safari-white.png in Resources */ = {isa = PBXBuildFile; fileRef = 7870F9CCD772301E7A6832591045B8C3 /* safari-white.png */; }; 31 | EFCC83EB5EDE81E5B6BE8AB00B2DF9A6 /* URBNShareKit.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D561315E5B2900BE164CD3AC0C822095 /* URBNShareKit.bundle */; }; 32 | FEF264AF05EEEE8B482933BDFDBEF3FF /* URBNActivityViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4861806D03B9056AA35997C4991CFC /* URBNActivityViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 33 | FF010AE8A7139968D714C93A16271574 /* URBNShareKit.m in Sources */ = {isa = PBXBuildFile; fileRef = E0EDB6224863D8E1D70133359C0E2479 /* URBNShareKit.m */; }; 34 | /* End PBXBuildFile section */ 35 | 36 | /* Begin PBXContainerItemProxy section */ 37 | 2622EA6494636A1DEA5364ACFAA545B0 /* PBXContainerItemProxy */ = { 38 | isa = PBXContainerItemProxy; 39 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 40 | proxyType = 1; 41 | remoteGlobalIDString = 0F5DAE06E974C9B6BCFA1361D2612A1E; 42 | remoteInfo = URBNShareKit; 43 | }; 44 | EC91ED6FC59BB150A90AF0D35C70249B /* PBXContainerItemProxy */ = { 45 | isa = PBXContainerItemProxy; 46 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 47 | proxyType = 1; 48 | remoteGlobalIDString = 8E3C5EBCB8E8C6F60A1EE32670A85F78; 49 | remoteInfo = "URBNShareKit-URBNShareKit"; 50 | }; 51 | /* End PBXContainerItemProxy section */ 52 | 53 | /* Begin PBXFileReference section */ 54 | 0315C0944259C30DC7D954905DFF73DF /* Pods-URBNShareKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-URBNShareKit.debug.xcconfig"; sourceTree = ""; }; 55 | 12B7A1D1BC21E656CAC3B7E9F1583D0C /* URBNSafariActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = URBNSafariActivity.m; sourceTree = ""; }; 56 | 184DE0A81FAB503A5378C89795140C08 /* URBNShareKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = URBNShareKit.xcconfig; sourceTree = ""; }; 57 | 1C91794F80F51643C85C3FD5C975427D /* URBNShareKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "URBNShareKit-dummy.m"; sourceTree = ""; }; 58 | 1D1BBFCEA4738598EC6D0549F2D0EED0 /* URBNSafariActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = URBNSafariActivity.h; sourceTree = ""; }; 59 | 1FF843EFACDD09026ECE5916B86D6C3F /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.release.xcconfig"; sourceTree = ""; }; 60 | 2A546C1C442D77FBA07513AF4367BDD8 /* Pods-URBNShareKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-URBNShareKit.modulemap"; sourceTree = ""; }; 61 | 2C012BEC3D7F91957D228A09EB1EB9F9 /* Pods_URBNShareKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_URBNShareKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | 30AFD323F22D9658604C7839F96DD9A3 /* Pods-URBNShareKit-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-URBNShareKit-acknowledgements.markdown"; sourceTree = ""; }; 63 | 32DEE94A37850352F7A77CF0608AE12F /* Pods-Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Tests.modulemap"; sourceTree = ""; }; 64 | 3480EF191D916123B0CE3B639A7411AD /* URBNShareKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URBNShareKit-umbrella.h"; sourceTree = ""; }; 65 | 49CC32AB2EE7AC53C7DCDEE5BDA1DC1E /* Pods-URBNShareKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-URBNShareKit.release.xcconfig"; sourceTree = ""; }; 66 | 58E58DEE67642445CA3BFE5FF780CDF8 /* URBNShareKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URBNShareKit-prefix.pch"; sourceTree = ""; }; 67 | 5D39267B63533F47D106436B037B3D00 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 68 | 6B68CB50CFDFD50FDE353B8519AA36FF /* safari-white@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "safari-white@2x.png"; sourceTree = ""; }; 69 | 7870F9CCD772301E7A6832591045B8C3 /* safari-white.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "safari-white.png"; sourceTree = ""; }; 70 | 7925D9D50CCF52953F48BC7977B023E8 /* Pods-URBNShareKit-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-URBNShareKit-frameworks.sh"; sourceTree = ""; }; 71 | 7C335A150BC8A9377E6C5FD835FD5C83 /* Pods-URBNShareKit-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-URBNShareKit-resources.sh"; sourceTree = ""; }; 72 | 80115C6FE558D2995A1EA57DB317629D /* URBNShareKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = URBNShareKit.h; sourceTree = ""; }; 73 | 84AE7B1DA38F3EFB48FF772D5C939112 /* Pods-Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-resources.sh"; sourceTree = ""; }; 74 | 8C4861806D03B9056AA35997C4991CFC /* URBNActivityViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = URBNActivityViewController.h; sourceTree = ""; }; 75 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 76 | 95A8E198F958B2D5BDC324468F2D72BE /* Pods-URBNShareKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-URBNShareKit-dummy.m"; sourceTree = ""; }; 77 | 9F65B0D5F454E749602497E96B54FDE3 /* Pods-Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-frameworks.sh"; sourceTree = ""; }; 78 | A4E7E460ABE8EDE801106FE0CA3B3338 /* safari-white@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "safari-white@3x.png"; sourceTree = ""; }; 79 | A6A4367615E161715A02752F4ACA5FD5 /* ResourceBundle-URBNShareKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-URBNShareKit-Info.plist"; sourceTree = ""; }; 80 | AF581F2C56C2B76B607C6230C148394B /* URBNShareKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = URBNShareKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 81 | B380EF1C36D4AA55AD5D66E748E375C5 /* Pods-URBNShareKit-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-URBNShareKit-acknowledgements.plist"; sourceTree = ""; }; 82 | B71C036D9A34E9ECCF25D533517E753F /* Pods-Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-acknowledgements.markdown"; sourceTree = ""; }; 83 | BEF4CF046C578DBE80D652ED459634E9 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; path = en.lproj; sourceTree = ""; }; 84 | BF8686E8129D8A78A9EEE7819F72437B /* Pods-Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-acknowledgements.plist"; sourceTree = ""; }; 85 | CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 86 | CBDD4330C9ACFC3DC1AF65E153EE0DAB /* URBNBodyProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = URBNBodyProvider.h; sourceTree = ""; }; 87 | CFD3AEBBEAC2D0773D1DE37730C8B2EC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 88 | D561315E5B2900BE164CD3AC0C822095 /* URBNShareKit.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = URBNShareKit.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 89 | DD758728F98B6B202C9A3870E0C4E8CA /* URBNImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = URBNImageProvider.m; sourceTree = ""; }; 90 | DF8D06EDE91DFC23035F77DC3765DB28 /* URBNShareKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = URBNShareKit.modulemap; sourceTree = ""; }; 91 | E0EDB6224863D8E1D70133359C0E2479 /* URBNShareKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = URBNShareKit.m; sourceTree = ""; }; 92 | E7F26798AF1A4FF4A0366FFE30E838FF /* URBNActivityViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = URBNActivityViewController.m; sourceTree = ""; }; 93 | E9FDD39C2BF2BD94691C1FCFE88D3B7A /* Pods-Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-dummy.m"; sourceTree = ""; }; 94 | EA7DDC7E75A3384D4D3A8B01A3BC1A1D /* Pods-Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-umbrella.h"; sourceTree = ""; }; 95 | EDEED365D6D0893CAB2C6550FA736457 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 96 | F0E1CDEFC144F40C3157BB193BD6269E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 97 | F11D747C2832B506FB66FEAD1F606858 /* Pods_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 98 | F7A4D88ED8DC6C3320A67D8B6C9674A6 /* URBNBodyProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = URBNBodyProvider.m; sourceTree = ""; }; 99 | FD95B5D92E12849EBB8BD8C22918D172 /* Pods-URBNShareKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-URBNShareKit-umbrella.h"; sourceTree = ""; }; 100 | FEBFC11565FB570C2B9344B48D1C9BAE /* URBNImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = URBNImageProvider.h; sourceTree = ""; }; 101 | /* End PBXFileReference section */ 102 | 103 | /* Begin PBXFrameworksBuildPhase section */ 104 | 02CB973EF35386EA8BE572627C6CDA19 /* Frameworks */ = { 105 | isa = PBXFrameworksBuildPhase; 106 | buildActionMask = 2147483647; 107 | files = ( 108 | 3F9D37B50205CBAD5043A5B228A0C896 /* Foundation.framework in Frameworks */, 109 | ); 110 | runOnlyForDeploymentPostprocessing = 0; 111 | }; 112 | 0ED479AB44533BD76B1FB3E77071969F /* Frameworks */ = { 113 | isa = PBXFrameworksBuildPhase; 114 | buildActionMask = 2147483647; 115 | files = ( 116 | ); 117 | runOnlyForDeploymentPostprocessing = 0; 118 | }; 119 | 22E63A121596C9AA2413EF69B41FBAA8 /* Frameworks */ = { 120 | isa = PBXFrameworksBuildPhase; 121 | buildActionMask = 2147483647; 122 | files = ( 123 | 040E111E59C418DC6EB68FD0719B7A1C /* Foundation.framework in Frameworks */, 124 | ); 125 | runOnlyForDeploymentPostprocessing = 0; 126 | }; 127 | 5A91462CD326CB63182695ECDDE0E014 /* Frameworks */ = { 128 | isa = PBXFrameworksBuildPhase; 129 | buildActionMask = 2147483647; 130 | files = ( 131 | 9195D51457EF7702F519DAD3E1CF4F21 /* Foundation.framework in Frameworks */, 132 | ); 133 | runOnlyForDeploymentPostprocessing = 0; 134 | }; 135 | /* End PBXFrameworksBuildPhase section */ 136 | 137 | /* Begin PBXGroup section */ 138 | 21810D681A0B82B3AE066710A168FE97 /* Products */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | F11D747C2832B506FB66FEAD1F606858 /* Pods_Tests.framework */, 142 | 2C012BEC3D7F91957D228A09EB1EB9F9 /* Pods_URBNShareKit.framework */, 143 | D561315E5B2900BE164CD3AC0C822095 /* URBNShareKit.bundle */, 144 | AF581F2C56C2B76B607C6230C148394B /* URBNShareKit.framework */, 145 | ); 146 | name = Products; 147 | sourceTree = ""; 148 | }; 149 | 3947276E11C95655227C1BE95B7E0A2F /* Development Pods */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 7CBA6AC29909D66DFABD4FD1B6FB617C /* URBNShareKit */, 153 | ); 154 | name = "Development Pods"; 155 | sourceTree = ""; 156 | }; 157 | 409A19ACA5960B3E797355627E757E26 /* Pod */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | D1262271178856C5F91E757710E2367E /* Assets */, 161 | ); 162 | path = Pod; 163 | sourceTree = ""; 164 | }; 165 | 41CCAB273B2CC99902D939E6048CD931 /* Pods-Tests */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 5D39267B63533F47D106436B037B3D00 /* Info.plist */, 169 | 32DEE94A37850352F7A77CF0608AE12F /* Pods-Tests.modulemap */, 170 | B71C036D9A34E9ECCF25D533517E753F /* Pods-Tests-acknowledgements.markdown */, 171 | BF8686E8129D8A78A9EEE7819F72437B /* Pods-Tests-acknowledgements.plist */, 172 | E9FDD39C2BF2BD94691C1FCFE88D3B7A /* Pods-Tests-dummy.m */, 173 | 9F65B0D5F454E749602497E96B54FDE3 /* Pods-Tests-frameworks.sh */, 174 | 84AE7B1DA38F3EFB48FF772D5C939112 /* Pods-Tests-resources.sh */, 175 | EA7DDC7E75A3384D4D3A8B01A3BC1A1D /* Pods-Tests-umbrella.h */, 176 | EDEED365D6D0893CAB2C6550FA736457 /* Pods-Tests.debug.xcconfig */, 177 | 1FF843EFACDD09026ECE5916B86D6C3F /* Pods-Tests.release.xcconfig */, 178 | ); 179 | name = "Pods-Tests"; 180 | path = "Target Support Files/Pods-Tests"; 181 | sourceTree = ""; 182 | }; 183 | 514236A6AD090B80151BAC5EBAEA15C6 /* Targets Support Files */ = { 184 | isa = PBXGroup; 185 | children = ( 186 | 41CCAB273B2CC99902D939E6048CD931 /* Pods-Tests */, 187 | FF24D303D511B40A16C89F8A54F13746 /* Pods-URBNShareKit */, 188 | ); 189 | name = "Targets Support Files"; 190 | sourceTree = ""; 191 | }; 192 | 7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */ = { 193 | isa = PBXGroup; 194 | children = ( 195 | CBB3DE36805AF21409EC968A9691732F /* Foundation.framework */, 196 | ); 197 | name = iOS; 198 | sourceTree = ""; 199 | }; 200 | 7CBA6AC29909D66DFABD4FD1B6FB617C /* URBNShareKit */ = { 201 | isa = PBXGroup; 202 | children = ( 203 | A57D020799FF0E9129E4837EC5750C18 /* Pod */, 204 | 7F74E830FAFFAE71CC21F878FC18BB9B /* Resources */, 205 | A309C00FA745F304F85558BAE0977265 /* Support Files */, 206 | ); 207 | name = URBNShareKit; 208 | path = ../..; 209 | sourceTree = ""; 210 | }; 211 | 7DB346D0F39D3F0E887471402A8071AB = { 212 | isa = PBXGroup; 213 | children = ( 214 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 215 | 3947276E11C95655227C1BE95B7E0A2F /* Development Pods */, 216 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 217 | 21810D681A0B82B3AE066710A168FE97 /* Products */, 218 | 514236A6AD090B80151BAC5EBAEA15C6 /* Targets Support Files */, 219 | ); 220 | sourceTree = ""; 221 | }; 222 | 7F74E830FAFFAE71CC21F878FC18BB9B /* Resources */ = { 223 | isa = PBXGroup; 224 | children = ( 225 | 409A19ACA5960B3E797355627E757E26 /* Pod */, 226 | ); 227 | name = Resources; 228 | sourceTree = ""; 229 | }; 230 | A309C00FA745F304F85558BAE0977265 /* Support Files */ = { 231 | isa = PBXGroup; 232 | children = ( 233 | CFD3AEBBEAC2D0773D1DE37730C8B2EC /* Info.plist */, 234 | A6A4367615E161715A02752F4ACA5FD5 /* ResourceBundle-URBNShareKit-Info.plist */, 235 | DF8D06EDE91DFC23035F77DC3765DB28 /* URBNShareKit.modulemap */, 236 | 184DE0A81FAB503A5378C89795140C08 /* URBNShareKit.xcconfig */, 237 | 1C91794F80F51643C85C3FD5C975427D /* URBNShareKit-dummy.m */, 238 | 58E58DEE67642445CA3BFE5FF780CDF8 /* URBNShareKit-prefix.pch */, 239 | 3480EF191D916123B0CE3B639A7411AD /* URBNShareKit-umbrella.h */, 240 | ); 241 | name = "Support Files"; 242 | path = "Example/Pods/Target Support Files/URBNShareKit"; 243 | sourceTree = ""; 244 | }; 245 | A57D020799FF0E9129E4837EC5750C18 /* Pod */ = { 246 | isa = PBXGroup; 247 | children = ( 248 | E7EA5A52D08EA09FD552752BFD6B4494 /* Classes */, 249 | ); 250 | path = Pod; 251 | sourceTree = ""; 252 | }; 253 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 254 | isa = PBXGroup; 255 | children = ( 256 | 7531C8F8DE19F1AA3C8A7AC97A91DC29 /* iOS */, 257 | ); 258 | name = Frameworks; 259 | sourceTree = ""; 260 | }; 261 | D1262271178856C5F91E757710E2367E /* Assets */ = { 262 | isa = PBXGroup; 263 | children = ( 264 | BEF4CF046C578DBE80D652ED459634E9 /* en.lproj */, 265 | 7870F9CCD772301E7A6832591045B8C3 /* safari-white.png */, 266 | 6B68CB50CFDFD50FDE353B8519AA36FF /* safari-white@2x.png */, 267 | A4E7E460ABE8EDE801106FE0CA3B3338 /* safari-white@3x.png */, 268 | ); 269 | path = Assets; 270 | sourceTree = ""; 271 | }; 272 | E7EA5A52D08EA09FD552752BFD6B4494 /* Classes */ = { 273 | isa = PBXGroup; 274 | children = ( 275 | 8C4861806D03B9056AA35997C4991CFC /* URBNActivityViewController.h */, 276 | E7F26798AF1A4FF4A0366FFE30E838FF /* URBNActivityViewController.m */, 277 | CBDD4330C9ACFC3DC1AF65E153EE0DAB /* URBNBodyProvider.h */, 278 | F7A4D88ED8DC6C3320A67D8B6C9674A6 /* URBNBodyProvider.m */, 279 | FEBFC11565FB570C2B9344B48D1C9BAE /* URBNImageProvider.h */, 280 | DD758728F98B6B202C9A3870E0C4E8CA /* URBNImageProvider.m */, 281 | 1D1BBFCEA4738598EC6D0549F2D0EED0 /* URBNSafariActivity.h */, 282 | 12B7A1D1BC21E656CAC3B7E9F1583D0C /* URBNSafariActivity.m */, 283 | 80115C6FE558D2995A1EA57DB317629D /* URBNShareKit.h */, 284 | E0EDB6224863D8E1D70133359C0E2479 /* URBNShareKit.m */, 285 | ); 286 | path = Classes; 287 | sourceTree = ""; 288 | }; 289 | FF24D303D511B40A16C89F8A54F13746 /* Pods-URBNShareKit */ = { 290 | isa = PBXGroup; 291 | children = ( 292 | F0E1CDEFC144F40C3157BB193BD6269E /* Info.plist */, 293 | 2A546C1C442D77FBA07513AF4367BDD8 /* Pods-URBNShareKit.modulemap */, 294 | 30AFD323F22D9658604C7839F96DD9A3 /* Pods-URBNShareKit-acknowledgements.markdown */, 295 | B380EF1C36D4AA55AD5D66E748E375C5 /* Pods-URBNShareKit-acknowledgements.plist */, 296 | 95A8E198F958B2D5BDC324468F2D72BE /* Pods-URBNShareKit-dummy.m */, 297 | 7925D9D50CCF52953F48BC7977B023E8 /* Pods-URBNShareKit-frameworks.sh */, 298 | 7C335A150BC8A9377E6C5FD835FD5C83 /* Pods-URBNShareKit-resources.sh */, 299 | FD95B5D92E12849EBB8BD8C22918D172 /* Pods-URBNShareKit-umbrella.h */, 300 | 0315C0944259C30DC7D954905DFF73DF /* Pods-URBNShareKit.debug.xcconfig */, 301 | 49CC32AB2EE7AC53C7DCDEE5BDA1DC1E /* Pods-URBNShareKit.release.xcconfig */, 302 | ); 303 | name = "Pods-URBNShareKit"; 304 | path = "Target Support Files/Pods-URBNShareKit"; 305 | sourceTree = ""; 306 | }; 307 | /* End PBXGroup section */ 308 | 309 | /* Begin PBXHeadersBuildPhase section */ 310 | 071668012B572FC9AF0A7584B1269649 /* Headers */ = { 311 | isa = PBXHeadersBuildPhase; 312 | buildActionMask = 2147483647; 313 | files = ( 314 | FEF264AF05EEEE8B482933BDFDBEF3FF /* URBNActivityViewController.h in Headers */, 315 | 075CDA41EBFCFE80DB7FCD69633EDBE7 /* URBNBodyProvider.h in Headers */, 316 | 16BA18E09B0F87B4686BCAC674DA5473 /* URBNImageProvider.h in Headers */, 317 | 3B8EF040B065438BFF6AC6E28462CB13 /* URBNSafariActivity.h in Headers */, 318 | 9F34E5B8F3923A59B9DBE6B52C9A8301 /* URBNShareKit-umbrella.h in Headers */, 319 | 2CF97E257AB930F62424C5E8047C60EB /* URBNShareKit.h in Headers */, 320 | ); 321 | runOnlyForDeploymentPostprocessing = 0; 322 | }; 323 | 5E429A19B93886C58300995D9208C3C7 /* Headers */ = { 324 | isa = PBXHeadersBuildPhase; 325 | buildActionMask = 2147483647; 326 | files = ( 327 | 70FC235EB9136DFFEFB40BA1E296144E /* Pods-Tests-umbrella.h in Headers */, 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | }; 331 | 89BCED9D06D9C6CCADDB54F7CA67F12E /* Headers */ = { 332 | isa = PBXHeadersBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | EB8A2295EE70F84E9A806D326FEB7F79 /* Pods-URBNShareKit-umbrella.h in Headers */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | /* End PBXHeadersBuildPhase section */ 340 | 341 | /* Begin PBXNativeTarget section */ 342 | 0F5DAE06E974C9B6BCFA1361D2612A1E /* URBNShareKit */ = { 343 | isa = PBXNativeTarget; 344 | buildConfigurationList = 9ADC4CF30D97FBBE5BAC874FA3D518C6 /* Build configuration list for PBXNativeTarget "URBNShareKit" */; 345 | buildPhases = ( 346 | B01FCF8059A4AC0DA9482BE1401407F7 /* Sources */, 347 | 22E63A121596C9AA2413EF69B41FBAA8 /* Frameworks */, 348 | B3D691A7594852D3525917F7D7726B3A /* Resources */, 349 | 071668012B572FC9AF0A7584B1269649 /* Headers */, 350 | ); 351 | buildRules = ( 352 | ); 353 | dependencies = ( 354 | CAE1C5FC5F493748CCE34A448AAB4CA7 /* PBXTargetDependency */, 355 | ); 356 | name = URBNShareKit; 357 | productName = URBNShareKit; 358 | productReference = AF581F2C56C2B76B607C6230C148394B /* URBNShareKit.framework */; 359 | productType = "com.apple.product-type.framework"; 360 | }; 361 | 5C3F284A2A9BDEA256235319DA9BEC58 /* Pods-Tests */ = { 362 | isa = PBXNativeTarget; 363 | buildConfigurationList = 9A56A4FB0089530668DACE21D38874A5 /* Build configuration list for PBXNativeTarget "Pods-Tests" */; 364 | buildPhases = ( 365 | C1EC4CEC2758F7B4789BF4ADA0D3FC1C /* Sources */, 366 | 5A91462CD326CB63182695ECDDE0E014 /* Frameworks */, 367 | 5E429A19B93886C58300995D9208C3C7 /* Headers */, 368 | ); 369 | buildRules = ( 370 | ); 371 | dependencies = ( 372 | ); 373 | name = "Pods-Tests"; 374 | productName = "Pods-Tests"; 375 | productReference = F11D747C2832B506FB66FEAD1F606858 /* Pods_Tests.framework */; 376 | productType = "com.apple.product-type.framework"; 377 | }; 378 | 8E3C5EBCB8E8C6F60A1EE32670A85F78 /* URBNShareKit-URBNShareKit */ = { 379 | isa = PBXNativeTarget; 380 | buildConfigurationList = 541D1C9B9B151F8809B87680EB42F448 /* Build configuration list for PBXNativeTarget "URBNShareKit-URBNShareKit" */; 381 | buildPhases = ( 382 | 3EC722FC8B59997047AE99B5F08077C4 /* Sources */, 383 | 0ED479AB44533BD76B1FB3E77071969F /* Frameworks */, 384 | 1125B9EC8AC6E1457A80F586064432C8 /* Resources */, 385 | ); 386 | buildRules = ( 387 | ); 388 | dependencies = ( 389 | ); 390 | name = "URBNShareKit-URBNShareKit"; 391 | productName = "URBNShareKit-URBNShareKit"; 392 | productReference = D561315E5B2900BE164CD3AC0C822095 /* URBNShareKit.bundle */; 393 | productType = "com.apple.product-type.bundle"; 394 | }; 395 | A035F730623A996A8EB2D11492D1E123 /* Pods-URBNShareKit */ = { 396 | isa = PBXNativeTarget; 397 | buildConfigurationList = 29F9F217C5449E4F2A44ADBB915CA516 /* Build configuration list for PBXNativeTarget "Pods-URBNShareKit" */; 398 | buildPhases = ( 399 | 97D96C97136E637D466ACED2E17B3578 /* Sources */, 400 | 02CB973EF35386EA8BE572627C6CDA19 /* Frameworks */, 401 | 89BCED9D06D9C6CCADDB54F7CA67F12E /* Headers */, 402 | ); 403 | buildRules = ( 404 | ); 405 | dependencies = ( 406 | 8FE6212735648AA1726F572500B73BD8 /* PBXTargetDependency */, 407 | ); 408 | name = "Pods-URBNShareKit"; 409 | productName = "Pods-URBNShareKit"; 410 | productReference = 2C012BEC3D7F91957D228A09EB1EB9F9 /* Pods_URBNShareKit.framework */; 411 | productType = "com.apple.product-type.framework"; 412 | }; 413 | /* End PBXNativeTarget section */ 414 | 415 | /* Begin PBXProject section */ 416 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 417 | isa = PBXProject; 418 | attributes = { 419 | LastSwiftUpdateCheck = 0730; 420 | LastUpgradeCheck = 0700; 421 | }; 422 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 423 | compatibilityVersion = "Xcode 3.2"; 424 | developmentRegion = English; 425 | hasScannedForEncodings = 0; 426 | knownRegions = ( 427 | en, 428 | ); 429 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 430 | productRefGroup = 21810D681A0B82B3AE066710A168FE97 /* Products */; 431 | projectDirPath = ""; 432 | projectRoot = ""; 433 | targets = ( 434 | 5C3F284A2A9BDEA256235319DA9BEC58 /* Pods-Tests */, 435 | A035F730623A996A8EB2D11492D1E123 /* Pods-URBNShareKit */, 436 | 0F5DAE06E974C9B6BCFA1361D2612A1E /* URBNShareKit */, 437 | 8E3C5EBCB8E8C6F60A1EE32670A85F78 /* URBNShareKit-URBNShareKit */, 438 | ); 439 | }; 440 | /* End PBXProject section */ 441 | 442 | /* Begin PBXResourcesBuildPhase section */ 443 | 1125B9EC8AC6E1457A80F586064432C8 /* Resources */ = { 444 | isa = PBXResourcesBuildPhase; 445 | buildActionMask = 2147483647; 446 | files = ( 447 | 42F79A56CB7D9CB314A9EDC19BBF86B7 /* en.lproj in Resources */, 448 | ECEF8F7912920C2DA3E860EDB401D9F2 /* safari-white.png in Resources */, 449 | 5F10D051EC0C57A371A89F8707CA5C5D /* safari-white@2x.png in Resources */, 450 | 65472460E715443473AC1FCF100620A0 /* safari-white@3x.png in Resources */, 451 | ); 452 | runOnlyForDeploymentPostprocessing = 0; 453 | }; 454 | B3D691A7594852D3525917F7D7726B3A /* Resources */ = { 455 | isa = PBXResourcesBuildPhase; 456 | buildActionMask = 2147483647; 457 | files = ( 458 | EFCC83EB5EDE81E5B6BE8AB00B2DF9A6 /* URBNShareKit.bundle in Resources */, 459 | ); 460 | runOnlyForDeploymentPostprocessing = 0; 461 | }; 462 | /* End PBXResourcesBuildPhase section */ 463 | 464 | /* Begin PBXSourcesBuildPhase section */ 465 | 3EC722FC8B59997047AE99B5F08077C4 /* Sources */ = { 466 | isa = PBXSourcesBuildPhase; 467 | buildActionMask = 2147483647; 468 | files = ( 469 | ); 470 | runOnlyForDeploymentPostprocessing = 0; 471 | }; 472 | 97D96C97136E637D466ACED2E17B3578 /* Sources */ = { 473 | isa = PBXSourcesBuildPhase; 474 | buildActionMask = 2147483647; 475 | files = ( 476 | 00124A3F9DD05E337B30DAF54F4DCE26 /* Pods-URBNShareKit-dummy.m in Sources */, 477 | ); 478 | runOnlyForDeploymentPostprocessing = 0; 479 | }; 480 | B01FCF8059A4AC0DA9482BE1401407F7 /* Sources */ = { 481 | isa = PBXSourcesBuildPhase; 482 | buildActionMask = 2147483647; 483 | files = ( 484 | D7B7749F7B4652D23A9F005BFF45484F /* URBNActivityViewController.m in Sources */, 485 | 4C4D663D129460B9E0556F6DAAC0C50D /* URBNBodyProvider.m in Sources */, 486 | 6F9B9879598F230108297447080665E6 /* URBNImageProvider.m in Sources */, 487 | CCD7CBD6C98CA6951E519C16F93F7AA9 /* URBNSafariActivity.m in Sources */, 488 | 62F4F0FE525074887791A755EC766F39 /* URBNShareKit-dummy.m in Sources */, 489 | FF010AE8A7139968D714C93A16271574 /* URBNShareKit.m in Sources */, 490 | ); 491 | runOnlyForDeploymentPostprocessing = 0; 492 | }; 493 | C1EC4CEC2758F7B4789BF4ADA0D3FC1C /* Sources */ = { 494 | isa = PBXSourcesBuildPhase; 495 | buildActionMask = 2147483647; 496 | files = ( 497 | 756A5038DA55E2BF91264FD4CBE20FFB /* Pods-Tests-dummy.m in Sources */, 498 | ); 499 | runOnlyForDeploymentPostprocessing = 0; 500 | }; 501 | /* End PBXSourcesBuildPhase section */ 502 | 503 | /* Begin PBXTargetDependency section */ 504 | 8FE6212735648AA1726F572500B73BD8 /* PBXTargetDependency */ = { 505 | isa = PBXTargetDependency; 506 | name = URBNShareKit; 507 | target = 0F5DAE06E974C9B6BCFA1361D2612A1E /* URBNShareKit */; 508 | targetProxy = 2622EA6494636A1DEA5364ACFAA545B0 /* PBXContainerItemProxy */; 509 | }; 510 | CAE1C5FC5F493748CCE34A448AAB4CA7 /* PBXTargetDependency */ = { 511 | isa = PBXTargetDependency; 512 | name = "URBNShareKit-URBNShareKit"; 513 | target = 8E3C5EBCB8E8C6F60A1EE32670A85F78 /* URBNShareKit-URBNShareKit */; 514 | targetProxy = EC91ED6FC59BB150A90AF0D35C70249B /* PBXContainerItemProxy */; 515 | }; 516 | /* End PBXTargetDependency section */ 517 | 518 | /* Begin XCBuildConfiguration section */ 519 | 015A368F878AC3E2CEAE21DDE8026304 /* Debug */ = { 520 | isa = XCBuildConfiguration; 521 | buildSettings = { 522 | ALWAYS_SEARCH_USER_PATHS = NO; 523 | CLANG_ANALYZER_NONNULL = YES; 524 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 525 | CLANG_CXX_LIBRARY = "libc++"; 526 | CLANG_ENABLE_MODULES = YES; 527 | CLANG_ENABLE_OBJC_ARC = YES; 528 | CLANG_WARN_BOOL_CONVERSION = YES; 529 | CLANG_WARN_CONSTANT_CONVERSION = YES; 530 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 531 | CLANG_WARN_EMPTY_BODY = YES; 532 | CLANG_WARN_ENUM_CONVERSION = YES; 533 | CLANG_WARN_INT_CONVERSION = YES; 534 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 535 | CLANG_WARN_UNREACHABLE_CODE = YES; 536 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 537 | CODE_SIGNING_REQUIRED = NO; 538 | COPY_PHASE_STRIP = NO; 539 | ENABLE_TESTABILITY = YES; 540 | GCC_C_LANGUAGE_STANDARD = gnu99; 541 | GCC_DYNAMIC_NO_PIC = NO; 542 | GCC_OPTIMIZATION_LEVEL = 0; 543 | GCC_PREPROCESSOR_DEFINITIONS = ( 544 | "POD_CONFIGURATION_DEBUG=1", 545 | "DEBUG=1", 546 | "$(inherited)", 547 | ); 548 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 549 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 550 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 551 | GCC_WARN_UNDECLARED_SELECTOR = YES; 552 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 553 | GCC_WARN_UNUSED_FUNCTION = YES; 554 | GCC_WARN_UNUSED_VARIABLE = YES; 555 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 556 | ONLY_ACTIVE_ARCH = YES; 557 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 558 | STRIP_INSTALLED_PRODUCT = NO; 559 | SYMROOT = "${SRCROOT}/../build"; 560 | }; 561 | name = Debug; 562 | }; 563 | 335291BCFFD274B4B12CE7CD2D27E6D8 /* Release */ = { 564 | isa = XCBuildConfiguration; 565 | baseConfigurationReference = 1FF843EFACDD09026ECE5916B86D6C3F /* Pods-Tests.release.xcconfig */; 566 | buildSettings = { 567 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 568 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 569 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 570 | CURRENT_PROJECT_VERSION = 1; 571 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 572 | DEFINES_MODULE = YES; 573 | DYLIB_COMPATIBILITY_VERSION = 1; 574 | DYLIB_CURRENT_VERSION = 1; 575 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 576 | ENABLE_STRICT_OBJC_MSGSEND = YES; 577 | GCC_NO_COMMON_BLOCKS = YES; 578 | INFOPLIST_FILE = "Target Support Files/Pods-Tests/Info.plist"; 579 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 580 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 581 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 582 | MACH_O_TYPE = staticlib; 583 | MODULEMAP_FILE = "Target Support Files/Pods-Tests/Pods-Tests.modulemap"; 584 | MTL_ENABLE_DEBUG_INFO = NO; 585 | OTHER_LDFLAGS = ""; 586 | OTHER_LIBTOOLFLAGS = ""; 587 | PODS_ROOT = "$(SRCROOT)"; 588 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 589 | PRODUCT_NAME = Pods_Tests; 590 | SDKROOT = iphoneos; 591 | SKIP_INSTALL = YES; 592 | TARGETED_DEVICE_FAMILY = "1,2"; 593 | VERSIONING_SYSTEM = "apple-generic"; 594 | VERSION_INFO_PREFIX = ""; 595 | }; 596 | name = Release; 597 | }; 598 | 412EFE450D3B7A09975F9E77622007AB /* Debug */ = { 599 | isa = XCBuildConfiguration; 600 | baseConfigurationReference = 184DE0A81FAB503A5378C89795140C08 /* URBNShareKit.xcconfig */; 601 | buildSettings = { 602 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 603 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 604 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 605 | CURRENT_PROJECT_VERSION = 1; 606 | DEBUG_INFORMATION_FORMAT = dwarf; 607 | DEFINES_MODULE = YES; 608 | DYLIB_COMPATIBILITY_VERSION = 1; 609 | DYLIB_CURRENT_VERSION = 1; 610 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 611 | ENABLE_STRICT_OBJC_MSGSEND = YES; 612 | GCC_NO_COMMON_BLOCKS = YES; 613 | GCC_PREFIX_HEADER = "Target Support Files/URBNShareKit/URBNShareKit-prefix.pch"; 614 | INFOPLIST_FILE = "Target Support Files/URBNShareKit/Info.plist"; 615 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 616 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 617 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 618 | MODULEMAP_FILE = "Target Support Files/URBNShareKit/URBNShareKit.modulemap"; 619 | MTL_ENABLE_DEBUG_INFO = YES; 620 | PRODUCT_NAME = URBNShareKit; 621 | SDKROOT = iphoneos; 622 | SKIP_INSTALL = YES; 623 | TARGETED_DEVICE_FAMILY = "1,2"; 624 | VERSIONING_SYSTEM = "apple-generic"; 625 | VERSION_INFO_PREFIX = ""; 626 | }; 627 | name = Debug; 628 | }; 629 | 44CDBB6D11DE06DB64D6268622BDC47E /* Release */ = { 630 | isa = XCBuildConfiguration; 631 | buildSettings = { 632 | ALWAYS_SEARCH_USER_PATHS = NO; 633 | CLANG_ANALYZER_NONNULL = YES; 634 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 635 | CLANG_CXX_LIBRARY = "libc++"; 636 | CLANG_ENABLE_MODULES = YES; 637 | CLANG_ENABLE_OBJC_ARC = YES; 638 | CLANG_WARN_BOOL_CONVERSION = YES; 639 | CLANG_WARN_CONSTANT_CONVERSION = YES; 640 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 641 | CLANG_WARN_EMPTY_BODY = YES; 642 | CLANG_WARN_ENUM_CONVERSION = YES; 643 | CLANG_WARN_INT_CONVERSION = YES; 644 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 645 | CLANG_WARN_UNREACHABLE_CODE = YES; 646 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 647 | CODE_SIGNING_REQUIRED = NO; 648 | COPY_PHASE_STRIP = YES; 649 | ENABLE_NS_ASSERTIONS = NO; 650 | GCC_C_LANGUAGE_STANDARD = gnu99; 651 | GCC_PREPROCESSOR_DEFINITIONS = ( 652 | "POD_CONFIGURATION_RELEASE=1", 653 | "$(inherited)", 654 | ); 655 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 656 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 657 | GCC_WARN_UNDECLARED_SELECTOR = YES; 658 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 659 | GCC_WARN_UNUSED_FUNCTION = YES; 660 | GCC_WARN_UNUSED_VARIABLE = YES; 661 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 662 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 663 | STRIP_INSTALLED_PRODUCT = NO; 664 | SYMROOT = "${SRCROOT}/../build"; 665 | VALIDATE_PRODUCT = YES; 666 | }; 667 | name = Release; 668 | }; 669 | 7DFE15191B2A241B99AA3AAAFC82F855 /* Debug */ = { 670 | isa = XCBuildConfiguration; 671 | baseConfigurationReference = 184DE0A81FAB503A5378C89795140C08 /* URBNShareKit.xcconfig */; 672 | buildSettings = { 673 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/URBNShareKit"; 674 | ENABLE_STRICT_OBJC_MSGSEND = YES; 675 | GCC_NO_COMMON_BLOCKS = YES; 676 | INFOPLIST_FILE = "Target Support Files/URBNShareKit/ResourceBundle-URBNShareKit-Info.plist"; 677 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 678 | PRODUCT_NAME = URBNShareKit; 679 | SDKROOT = iphoneos; 680 | SKIP_INSTALL = YES; 681 | TARGETED_DEVICE_FAMILY = "1,2"; 682 | WRAPPER_EXTENSION = bundle; 683 | }; 684 | name = Debug; 685 | }; 686 | D0FD7DE0E94FD6895D1570B83FC28A41 /* Release */ = { 687 | isa = XCBuildConfiguration; 688 | baseConfigurationReference = 184DE0A81FAB503A5378C89795140C08 /* URBNShareKit.xcconfig */; 689 | buildSettings = { 690 | CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/URBNShareKit"; 691 | ENABLE_STRICT_OBJC_MSGSEND = YES; 692 | GCC_NO_COMMON_BLOCKS = YES; 693 | INFOPLIST_FILE = "Target Support Files/URBNShareKit/ResourceBundle-URBNShareKit-Info.plist"; 694 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 695 | PRODUCT_NAME = URBNShareKit; 696 | SDKROOT = iphoneos; 697 | SKIP_INSTALL = YES; 698 | TARGETED_DEVICE_FAMILY = "1,2"; 699 | WRAPPER_EXTENSION = bundle; 700 | }; 701 | name = Release; 702 | }; 703 | D86CF83D2D504133E4551599ED155AD6 /* Release */ = { 704 | isa = XCBuildConfiguration; 705 | baseConfigurationReference = 49CC32AB2EE7AC53C7DCDEE5BDA1DC1E /* Pods-URBNShareKit.release.xcconfig */; 706 | buildSettings = { 707 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 708 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 709 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 710 | CURRENT_PROJECT_VERSION = 1; 711 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 712 | DEFINES_MODULE = YES; 713 | DYLIB_COMPATIBILITY_VERSION = 1; 714 | DYLIB_CURRENT_VERSION = 1; 715 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 716 | ENABLE_STRICT_OBJC_MSGSEND = YES; 717 | GCC_NO_COMMON_BLOCKS = YES; 718 | INFOPLIST_FILE = "Target Support Files/Pods-URBNShareKit/Info.plist"; 719 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 720 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 721 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 722 | MACH_O_TYPE = staticlib; 723 | MODULEMAP_FILE = "Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit.modulemap"; 724 | MTL_ENABLE_DEBUG_INFO = NO; 725 | OTHER_LDFLAGS = ""; 726 | OTHER_LIBTOOLFLAGS = ""; 727 | PODS_ROOT = "$(SRCROOT)"; 728 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 729 | PRODUCT_NAME = Pods_URBNShareKit; 730 | SDKROOT = iphoneos; 731 | SKIP_INSTALL = YES; 732 | TARGETED_DEVICE_FAMILY = "1,2"; 733 | VERSIONING_SYSTEM = "apple-generic"; 734 | VERSION_INFO_PREFIX = ""; 735 | }; 736 | name = Release; 737 | }; 738 | E8F353DA42648279B2E4D3523FD10729 /* Debug */ = { 739 | isa = XCBuildConfiguration; 740 | baseConfigurationReference = EDEED365D6D0893CAB2C6550FA736457 /* Pods-Tests.debug.xcconfig */; 741 | buildSettings = { 742 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 743 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 744 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 745 | CURRENT_PROJECT_VERSION = 1; 746 | DEBUG_INFORMATION_FORMAT = dwarf; 747 | DEFINES_MODULE = YES; 748 | DYLIB_COMPATIBILITY_VERSION = 1; 749 | DYLIB_CURRENT_VERSION = 1; 750 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 751 | ENABLE_STRICT_OBJC_MSGSEND = YES; 752 | GCC_NO_COMMON_BLOCKS = YES; 753 | INFOPLIST_FILE = "Target Support Files/Pods-Tests/Info.plist"; 754 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 755 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 756 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 757 | MACH_O_TYPE = staticlib; 758 | MODULEMAP_FILE = "Target Support Files/Pods-Tests/Pods-Tests.modulemap"; 759 | MTL_ENABLE_DEBUG_INFO = YES; 760 | OTHER_LDFLAGS = ""; 761 | OTHER_LIBTOOLFLAGS = ""; 762 | PODS_ROOT = "$(SRCROOT)"; 763 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 764 | PRODUCT_NAME = Pods_Tests; 765 | SDKROOT = iphoneos; 766 | SKIP_INSTALL = YES; 767 | TARGETED_DEVICE_FAMILY = "1,2"; 768 | VERSIONING_SYSTEM = "apple-generic"; 769 | VERSION_INFO_PREFIX = ""; 770 | }; 771 | name = Debug; 772 | }; 773 | F86EC3789705BCB9BAE9EDFDD130E446 /* Release */ = { 774 | isa = XCBuildConfiguration; 775 | baseConfigurationReference = 184DE0A81FAB503A5378C89795140C08 /* URBNShareKit.xcconfig */; 776 | buildSettings = { 777 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 778 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 779 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 780 | CURRENT_PROJECT_VERSION = 1; 781 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 782 | DEFINES_MODULE = YES; 783 | DYLIB_COMPATIBILITY_VERSION = 1; 784 | DYLIB_CURRENT_VERSION = 1; 785 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 786 | ENABLE_STRICT_OBJC_MSGSEND = YES; 787 | GCC_NO_COMMON_BLOCKS = YES; 788 | GCC_PREFIX_HEADER = "Target Support Files/URBNShareKit/URBNShareKit-prefix.pch"; 789 | INFOPLIST_FILE = "Target Support Files/URBNShareKit/Info.plist"; 790 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 791 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 792 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 793 | MODULEMAP_FILE = "Target Support Files/URBNShareKit/URBNShareKit.modulemap"; 794 | MTL_ENABLE_DEBUG_INFO = NO; 795 | PRODUCT_NAME = URBNShareKit; 796 | SDKROOT = iphoneos; 797 | SKIP_INSTALL = YES; 798 | TARGETED_DEVICE_FAMILY = "1,2"; 799 | VERSIONING_SYSTEM = "apple-generic"; 800 | VERSION_INFO_PREFIX = ""; 801 | }; 802 | name = Release; 803 | }; 804 | FAC47106D031E063552B5B79059CC4D9 /* Debug */ = { 805 | isa = XCBuildConfiguration; 806 | baseConfigurationReference = 0315C0944259C30DC7D954905DFF73DF /* Pods-URBNShareKit.debug.xcconfig */; 807 | buildSettings = { 808 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 809 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 810 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 811 | CURRENT_PROJECT_VERSION = 1; 812 | DEBUG_INFORMATION_FORMAT = dwarf; 813 | DEFINES_MODULE = YES; 814 | DYLIB_COMPATIBILITY_VERSION = 1; 815 | DYLIB_CURRENT_VERSION = 1; 816 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 817 | ENABLE_STRICT_OBJC_MSGSEND = YES; 818 | GCC_NO_COMMON_BLOCKS = YES; 819 | INFOPLIST_FILE = "Target Support Files/Pods-URBNShareKit/Info.plist"; 820 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 821 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 822 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 823 | MACH_O_TYPE = staticlib; 824 | MODULEMAP_FILE = "Target Support Files/Pods-URBNShareKit/Pods-URBNShareKit.modulemap"; 825 | MTL_ENABLE_DEBUG_INFO = YES; 826 | OTHER_LDFLAGS = ""; 827 | OTHER_LIBTOOLFLAGS = ""; 828 | PODS_ROOT = "$(SRCROOT)"; 829 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 830 | PRODUCT_NAME = Pods_URBNShareKit; 831 | SDKROOT = iphoneos; 832 | SKIP_INSTALL = YES; 833 | TARGETED_DEVICE_FAMILY = "1,2"; 834 | VERSIONING_SYSTEM = "apple-generic"; 835 | VERSION_INFO_PREFIX = ""; 836 | }; 837 | name = Debug; 838 | }; 839 | /* End XCBuildConfiguration section */ 840 | 841 | /* Begin XCConfigurationList section */ 842 | 29F9F217C5449E4F2A44ADBB915CA516 /* Build configuration list for PBXNativeTarget "Pods-URBNShareKit" */ = { 843 | isa = XCConfigurationList; 844 | buildConfigurations = ( 845 | FAC47106D031E063552B5B79059CC4D9 /* Debug */, 846 | D86CF83D2D504133E4551599ED155AD6 /* Release */, 847 | ); 848 | defaultConfigurationIsVisible = 0; 849 | defaultConfigurationName = Release; 850 | }; 851 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 852 | isa = XCConfigurationList; 853 | buildConfigurations = ( 854 | 015A368F878AC3E2CEAE21DDE8026304 /* Debug */, 855 | 44CDBB6D11DE06DB64D6268622BDC47E /* Release */, 856 | ); 857 | defaultConfigurationIsVisible = 0; 858 | defaultConfigurationName = Release; 859 | }; 860 | 541D1C9B9B151F8809B87680EB42F448 /* Build configuration list for PBXNativeTarget "URBNShareKit-URBNShareKit" */ = { 861 | isa = XCConfigurationList; 862 | buildConfigurations = ( 863 | 7DFE15191B2A241B99AA3AAAFC82F855 /* Debug */, 864 | D0FD7DE0E94FD6895D1570B83FC28A41 /* Release */, 865 | ); 866 | defaultConfigurationIsVisible = 0; 867 | defaultConfigurationName = Release; 868 | }; 869 | 9A56A4FB0089530668DACE21D38874A5 /* Build configuration list for PBXNativeTarget "Pods-Tests" */ = { 870 | isa = XCConfigurationList; 871 | buildConfigurations = ( 872 | E8F353DA42648279B2E4D3523FD10729 /* Debug */, 873 | 335291BCFFD274B4B12CE7CD2D27E6D8 /* Release */, 874 | ); 875 | defaultConfigurationIsVisible = 0; 876 | defaultConfigurationName = Release; 877 | }; 878 | 9ADC4CF30D97FBBE5BAC874FA3D518C6 /* Build configuration list for PBXNativeTarget "URBNShareKit" */ = { 879 | isa = XCConfigurationList; 880 | buildConfigurations = ( 881 | 412EFE450D3B7A09975F9E77622007AB /* Debug */, 882 | F86EC3789705BCB9BAE9EDFDD130E446 /* Release */, 883 | ); 884 | defaultConfigurationIsVisible = 0; 885 | defaultConfigurationName = Release; 886 | }; 887 | /* End XCConfigurationList section */ 888 | }; 889 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 890 | } 891 | --------------------------------------------------------------------------------