├── SampleActionExtensionApp
├── Images.xcassets
│ ├── AppIconExtension.appiconset
│ │ ├── ActionSoundIcon.png
│ │ └── Contents.json
│ ├── LaunchImage.launchimage
│ │ └── Contents.json
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── ViewController.h
├── AppDelegate.h
├── main.m
├── ViewController.m
├── Info.plist
├── AppDelegate.m
└── Base.lproj
│ ├── LaunchScreen.xib
│ └── Main.storyboard
├── SampleActionExtensionApp.xcodeproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ │ └── lukaspetr.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
├── xcuserdata
│ └── lukaspetr.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ ├── ReadItAction.xcscheme
│ │ └── SampleActionExtensionApp.xcscheme
└── project.pbxproj
├── ReadItAction
├── ActionViewController.h
├── Info.plist
├── ActionViewController.m
└── MainInterface.storyboard
├── README.md
└── SampleActionExtensionAppTests
├── Info.plist
└── SampleActionExtensionAppTests.m
/SampleActionExtensionApp/Images.xcassets/AppIconExtension.appiconset/ActionSoundIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tutsplus/iOS8-BuildActionExtension/HEAD/SampleActionExtensionApp/Images.xcassets/AppIconExtension.appiconset/ActionSoundIcon.png
--------------------------------------------------------------------------------
/SampleActionExtensionApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp.xcodeproj/project.xcworkspace/xcuserdata/lukaspetr.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tutsplus/iOS8-BuildActionExtension/HEAD/SampleActionExtensionApp.xcodeproj/project.xcworkspace/xcuserdata/lukaspetr.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/ReadItAction/ActionViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // ActionViewController.h
3 | // ReadItAction
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface ActionViewController : UIViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/ViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.h
3 | // SampleActionExtensionApp
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface ViewController : UIViewController
12 |
13 |
14 | @end
15 |
16 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/AppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.h
3 | // SampleActionExtensionApp
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface AppDelegate : UIResponder
12 |
13 | @property (strong, nonatomic) UIWindow *window;
14 |
15 |
16 | @end
17 |
18 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // SampleActionExtensionApp
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/Images.xcassets/LaunchImage.launchimage/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "orientation" : "portrait",
5 | "idiom" : "iphone",
6 | "minimum-system-version" : "7.0",
7 | "scale" : "2x"
8 | },
9 | {
10 | "orientation" : "portrait",
11 | "idiom" : "iphone",
12 | "minimum-system-version" : "7.0",
13 | "subtype" : "retina4",
14 | "scale" : "2x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ### Tuts+ Tutorial: iOS 8: How to Build a Simple Action Extension
2 |
3 | #### Instructor: Lukas Petr
4 |
5 | Are you excited about extensions in iOS 8? Want to learn how to build an extension for your own iOS app? Then join us in this simple tutorial that will get you up to speed on Action extensions. We'll build a simple app and extension from scratch, and walk you through the whole process so you can start experimenting with your own ideas.
6 |
7 | Source files for the Tuts+ tutorial: [iOS 8: How to Build a Simple Action Extension](http://code.tutsplus.com/tutorials/ios-8-how-to-build-a-simple-action-extension--cms-22794)
8 |
9 | **Read this tutorial on [Tuts+](https://code.tutsplus.com)**
10 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/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" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/SampleActionExtensionApp/Images.xcassets/AppIconExtension.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "size" : "60x60",
25 | "idiom" : "iphone",
26 | "filename" : "ActionSoundIcon.png",
27 | "scale" : "2x"
28 | },
29 | {
30 | "idiom" : "iphone",
31 | "size" : "60x60",
32 | "scale" : "3x"
33 | }
34 | ],
35 | "info" : {
36 | "version" : 1,
37 | "author" : "xcode"
38 | }
39 | }
--------------------------------------------------------------------------------
/SampleActionExtensionAppTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | com.glimsoft.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | ReadItAction.xcscheme
8 |
9 | orderHint
10 | 1
11 |
12 | SampleActionExtensionApp.xcscheme
13 |
14 | orderHint
15 | 0
16 |
17 |
18 | SuppressBuildableAutocreation
19 |
20 | 16F966DE1A28EEE2003371C5
21 |
22 | primary
23 |
24 |
25 | 16F966F71A28EEE2003371C5
26 |
27 | primary
28 |
29 |
30 | 16F9670B1A28F06F003371C5
31 |
32 | primary
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/ViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.m
3 | // SampleActionExtensionApp
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import "ViewController.h"
10 |
11 | @interface ViewController ()
12 | @property (nonatomic, weak) IBOutlet UITextView *textView;
13 | @end
14 |
15 |
16 | @implementation ViewController
17 |
18 | - (IBAction)actionButtonPressed:(id)sender {
19 | UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:@[self.textView.text]
20 | applicationActivities:nil];
21 | [self presentViewController:activityVC animated:YES completion:nil];
22 | }
23 |
24 | - (void)viewDidLoad {
25 | [super viewDidLoad];
26 | // Do any additional setup after loading the view, typically from a nib.
27 | }
28 |
29 | - (void)didReceiveMemoryWarning {
30 | [super didReceiveMemoryWarning];
31 | // Dispose of any resources that can be recreated.
32 | }
33 |
34 | @end
35 |
--------------------------------------------------------------------------------
/SampleActionExtensionAppTests/SampleActionExtensionAppTests.m:
--------------------------------------------------------------------------------
1 | //
2 | // SampleActionExtensionAppTests.m
3 | // SampleActionExtensionAppTests
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface SampleActionExtensionAppTests : XCTestCase
13 |
14 | @end
15 |
16 | @implementation SampleActionExtensionAppTests
17 |
18 | - (void)setUp {
19 | [super setUp];
20 | // Put setup code here. This method is called before the invocation of each test method in the class.
21 | }
22 |
23 | - (void)tearDown {
24 | // Put teardown code here. This method is called after the invocation of each test method in the class.
25 | [super tearDown];
26 | }
27 |
28 | - (void)testExample {
29 | // This is an example of a functional test case.
30 | XCTAssert(YES, @"Pass");
31 | }
32 |
33 | - (void)testPerformanceExample {
34 | // This is an example of a performance test case.
35 | [self measureBlock:^{
36 | // Put the code you want to measure the time of here.
37 | }];
38 | }
39 |
40 | @end
41 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | com.glimsoft.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIMainStoryboardFile
28 | Main
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/ReadItAction/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | Read it
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIcons
12 |
13 | CFBundleIcons~ipad
14 |
15 | CFBundleIdentifier
16 | com.glimsoft.SampleActionExtensionApp.$(PRODUCT_NAME:rfc1034identifier)
17 | CFBundleInfoDictionaryVersion
18 | 6.0
19 | CFBundleName
20 | $(PRODUCT_NAME)
21 | CFBundlePackageType
22 | XPC!
23 | CFBundleShortVersionString
24 | 1.0
25 | CFBundleSignature
26 | ????
27 | CFBundleVersion
28 | 1
29 | NSExtension
30 |
31 | NSExtensionAttributes
32 |
33 | NSExtensionActivationRule
34 |
35 | NSExtensionActivationSupportsText
36 |
37 |
38 |
39 | NSExtensionMainStoryboard
40 | MainInterface
41 | NSExtensionPointIdentifier
42 | com.apple.ui-services
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/AppDelegate.m:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.m
3 | // SampleActionExtensionApp
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import "AppDelegate.h"
10 |
11 | @interface AppDelegate ()
12 |
13 | @end
14 |
15 | @implementation AppDelegate
16 |
17 |
18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
19 | // Override point for customization after application launch.
20 | return YES;
21 | }
22 |
23 | - (void)applicationWillResignActive:(UIApplication *)application {
24 | // 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.
25 | // 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.
26 | }
27 |
28 | - (void)applicationDidEnterBackground:(UIApplication *)application {
29 | // 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.
30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
31 | }
32 |
33 | - (void)applicationWillEnterForeground:(UIApplication *)application {
34 | // 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.
35 | }
36 |
37 | - (void)applicationDidBecomeActive:(UIApplication *)application {
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 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
43 | }
44 |
45 | @end
46 |
--------------------------------------------------------------------------------
/ReadItAction/ActionViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // ActionViewController.m
3 | // ReadItAction
4 | //
5 | // Created by Lukas Petr on 11/28/14.
6 | // Copyright (c) 2014 Glimsoft. All rights reserved.
7 | //
8 |
9 | #import "ActionViewController.h"
10 | #import
11 |
12 | @import AVFoundation;
13 |
14 |
15 | @interface ActionViewController ()
16 |
17 | @property (nonatomic, strong) IBOutlet UITextView *textView;
18 |
19 | @end
20 |
21 | @implementation ActionViewController
22 |
23 | - (void)viewDidLoad {
24 | [super viewDidLoad];
25 |
26 | // Get the item[s] we're handling from the extension context.
27 | // In our action extension, we only need one input item (text), so we use the first item from the array.
28 | NSExtensionItem *item = self.extensionContext.inputItems[0];
29 | NSItemProvider *itemProvider = item.attachments[0];
30 |
31 | if ([itemProvider hasItemConformingToTypeIdentifier:(NSString *)kUTTypePlainText]) {
32 |
33 | // It's a plain text!
34 | __weak UITextView *textView = self.textView;
35 |
36 | [itemProvider loadItemForTypeIdentifier:(NSString *)kUTTypePlainText options:nil completionHandler:^(NSString *item, NSError *error) {
37 |
38 | if (item) {
39 | [[NSOperationQueue mainQueue] addOperationWithBlock:^{
40 |
41 | [textView setText:item];
42 |
43 | // Set up speech synthesizer and start it
44 | AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc]init];
45 | AVSpeechUtterance *utterance = [AVSpeechUtterance speechUtteranceWithString:textView.text];
46 | [utterance setRate:0.1];
47 | [synthesizer speakUtterance:utterance];
48 | }];
49 | }
50 | }];
51 | }
52 | }
53 |
54 | - (void)didReceiveMemoryWarning {
55 | [super didReceiveMemoryWarning];
56 | // Dispose of any resources that can be recreated.
57 | }
58 |
59 | - (IBAction)done {
60 | // Return any edited content to the host app.
61 | // This template doesn't do anything, so we just echo the passed in items.
62 | [self.extensionContext completeRequestReturningItems:self.extensionContext.inputItems completionHandler:nil];
63 | }
64 |
65 | @end
66 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
20 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | Tap the action button to invoke activity view controller. Then select 'Read it' action and this text will be read by our sample action extension.
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/ReadItAction.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
6 |
9 |
10 |
16 |
22 |
23 |
24 |
30 |
36 |
37 |
38 |
39 |
40 |
45 |
46 |
47 |
48 |
54 |
55 |
56 |
57 |
67 |
68 |
74 |
75 |
76 |
77 |
78 |
79 |
86 |
87 |
93 |
94 |
95 |
96 |
98 |
99 |
102 |
103 |
104 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp.xcodeproj/xcuserdata/lukaspetr.xcuserdatad/xcschemes/SampleActionExtensionApp.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
38 |
39 |
44 |
45 |
47 |
53 |
54 |
55 |
56 |
57 |
63 |
64 |
65 |
66 |
75 |
76 |
82 |
83 |
84 |
85 |
86 |
87 |
93 |
94 |
100 |
101 |
102 |
103 |
105 |
106 |
109 |
110 |
111 |
--------------------------------------------------------------------------------
/ReadItAction/MainInterface.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/SampleActionExtensionApp.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 16F966E51A28EEE2003371C5 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F966E41A28EEE2003371C5 /* main.m */; };
11 | 16F966E81A28EEE2003371C5 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F966E71A28EEE2003371C5 /* AppDelegate.m */; };
12 | 16F966EB1A28EEE2003371C5 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F966EA1A28EEE2003371C5 /* ViewController.m */; };
13 | 16F966EE1A28EEE2003371C5 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 16F966EC1A28EEE2003371C5 /* Main.storyboard */; };
14 | 16F966F01A28EEE2003371C5 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 16F966EF1A28EEE2003371C5 /* Images.xcassets */; };
15 | 16F966F31A28EEE2003371C5 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 16F966F11A28EEE2003371C5 /* LaunchScreen.xib */; };
16 | 16F966FF1A28EEE2003371C5 /* SampleActionExtensionAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F966FE1A28EEE2003371C5 /* SampleActionExtensionAppTests.m */; };
17 | 16F967121A28F06F003371C5 /* ActionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F967111A28F06F003371C5 /* ActionViewController.m */; };
18 | 16F967141A28F06F003371C5 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 16F967131A28F06F003371C5 /* MainInterface.storyboard */; };
19 | 16F967171A28F06F003371C5 /* ReadItAction.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 16F9670C1A28F06F003371C5 /* ReadItAction.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
20 | 16F9671E1A291B3C003371C5 /* ActionSoundIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 16F9671D1A291B3C003371C5 /* ActionSoundIcon.png */; };
21 | 16F967201A291BF5003371C5 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 16F966EF1A28EEE2003371C5 /* Images.xcassets */; };
22 | /* End PBXBuildFile section */
23 |
24 | /* Begin PBXContainerItemProxy section */
25 | 16F966F91A28EEE2003371C5 /* PBXContainerItemProxy */ = {
26 | isa = PBXContainerItemProxy;
27 | containerPortal = 16F966D71A28EEE2003371C5 /* Project object */;
28 | proxyType = 1;
29 | remoteGlobalIDString = 16F966DE1A28EEE2003371C5;
30 | remoteInfo = SampleActionExtensionApp;
31 | };
32 | 16F967151A28F06F003371C5 /* PBXContainerItemProxy */ = {
33 | isa = PBXContainerItemProxy;
34 | containerPortal = 16F966D71A28EEE2003371C5 /* Project object */;
35 | proxyType = 1;
36 | remoteGlobalIDString = 16F9670B1A28F06F003371C5;
37 | remoteInfo = ReadItAction;
38 | };
39 | /* End PBXContainerItemProxy section */
40 |
41 | /* Begin PBXCopyFilesBuildPhase section */
42 | 16F9671B1A28F06F003371C5 /* Embed App Extensions */ = {
43 | isa = PBXCopyFilesBuildPhase;
44 | buildActionMask = 2147483647;
45 | dstPath = "";
46 | dstSubfolderSpec = 13;
47 | files = (
48 | 16F967171A28F06F003371C5 /* ReadItAction.appex in Embed App Extensions */,
49 | );
50 | name = "Embed App Extensions";
51 | runOnlyForDeploymentPostprocessing = 0;
52 | };
53 | /* End PBXCopyFilesBuildPhase section */
54 |
55 | /* Begin PBXFileReference section */
56 | 16F966DF1A28EEE2003371C5 /* SampleActionExtensionApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleActionExtensionApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
57 | 16F966E31A28EEE2003371C5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
58 | 16F966E41A28EEE2003371C5 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
59 | 16F966E61A28EEE2003371C5 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; };
60 | 16F966E71A28EEE2003371C5 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; };
61 | 16F966E91A28EEE2003371C5 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; };
62 | 16F966EA1A28EEE2003371C5 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; };
63 | 16F966ED1A28EEE2003371C5 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
64 | 16F966EF1A28EEE2003371C5 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
65 | 16F966F21A28EEE2003371C5 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
66 | 16F966F81A28EEE2003371C5 /* SampleActionExtensionAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SampleActionExtensionAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
67 | 16F966FD1A28EEE2003371C5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
68 | 16F966FE1A28EEE2003371C5 /* SampleActionExtensionAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SampleActionExtensionAppTests.m; sourceTree = ""; };
69 | 16F9670C1A28F06F003371C5 /* ReadItAction.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ReadItAction.appex; sourceTree = BUILT_PRODUCTS_DIR; };
70 | 16F9670F1A28F06F003371C5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
71 | 16F967101A28F06F003371C5 /* ActionViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ActionViewController.h; sourceTree = ""; };
72 | 16F967111A28F06F003371C5 /* ActionViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ActionViewController.m; sourceTree = ""; };
73 | 16F967131A28F06F003371C5 /* MainInterface.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = MainInterface.storyboard; sourceTree = ""; };
74 | 16F9671D1A291B3C003371C5 /* ActionSoundIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ActionSoundIcon.png; path = ../ActionSoundIcon.png; sourceTree = ""; };
75 | /* End PBXFileReference section */
76 |
77 | /* Begin PBXFrameworksBuildPhase section */
78 | 16F966DC1A28EEE2003371C5 /* Frameworks */ = {
79 | isa = PBXFrameworksBuildPhase;
80 | buildActionMask = 2147483647;
81 | files = (
82 | );
83 | runOnlyForDeploymentPostprocessing = 0;
84 | };
85 | 16F966F51A28EEE2003371C5 /* Frameworks */ = {
86 | isa = PBXFrameworksBuildPhase;
87 | buildActionMask = 2147483647;
88 | files = (
89 | );
90 | runOnlyForDeploymentPostprocessing = 0;
91 | };
92 | 16F967091A28F06F003371C5 /* Frameworks */ = {
93 | isa = PBXFrameworksBuildPhase;
94 | buildActionMask = 2147483647;
95 | files = (
96 | );
97 | runOnlyForDeploymentPostprocessing = 0;
98 | };
99 | /* End PBXFrameworksBuildPhase section */
100 |
101 | /* Begin PBXGroup section */
102 | 16F966D61A28EEE2003371C5 = {
103 | isa = PBXGroup;
104 | children = (
105 | 16F966E11A28EEE2003371C5 /* SampleActionExtensionApp */,
106 | 16F966FB1A28EEE2003371C5 /* SampleActionExtensionAppTests */,
107 | 16F9670D1A28F06F003371C5 /* ReadItAction */,
108 | 16F9671C1A291B2C003371C5 /* Resources */,
109 | 16F966E01A28EEE2003371C5 /* Products */,
110 | );
111 | sourceTree = "";
112 | };
113 | 16F966E01A28EEE2003371C5 /* Products */ = {
114 | isa = PBXGroup;
115 | children = (
116 | 16F966DF1A28EEE2003371C5 /* SampleActionExtensionApp.app */,
117 | 16F966F81A28EEE2003371C5 /* SampleActionExtensionAppTests.xctest */,
118 | 16F9670C1A28F06F003371C5 /* ReadItAction.appex */,
119 | );
120 | name = Products;
121 | sourceTree = "";
122 | };
123 | 16F966E11A28EEE2003371C5 /* SampleActionExtensionApp */ = {
124 | isa = PBXGroup;
125 | children = (
126 | 16F966E61A28EEE2003371C5 /* AppDelegate.h */,
127 | 16F966E71A28EEE2003371C5 /* AppDelegate.m */,
128 | 16F966E91A28EEE2003371C5 /* ViewController.h */,
129 | 16F966EA1A28EEE2003371C5 /* ViewController.m */,
130 | 16F966EC1A28EEE2003371C5 /* Main.storyboard */,
131 | 16F966EF1A28EEE2003371C5 /* Images.xcassets */,
132 | 16F966F11A28EEE2003371C5 /* LaunchScreen.xib */,
133 | 16F966E21A28EEE2003371C5 /* Supporting Files */,
134 | );
135 | path = SampleActionExtensionApp;
136 | sourceTree = "";
137 | };
138 | 16F966E21A28EEE2003371C5 /* Supporting Files */ = {
139 | isa = PBXGroup;
140 | children = (
141 | 16F966E31A28EEE2003371C5 /* Info.plist */,
142 | 16F966E41A28EEE2003371C5 /* main.m */,
143 | );
144 | name = "Supporting Files";
145 | sourceTree = "";
146 | };
147 | 16F966FB1A28EEE2003371C5 /* SampleActionExtensionAppTests */ = {
148 | isa = PBXGroup;
149 | children = (
150 | 16F966FE1A28EEE2003371C5 /* SampleActionExtensionAppTests.m */,
151 | 16F966FC1A28EEE2003371C5 /* Supporting Files */,
152 | );
153 | path = SampleActionExtensionAppTests;
154 | sourceTree = "";
155 | };
156 | 16F966FC1A28EEE2003371C5 /* Supporting Files */ = {
157 | isa = PBXGroup;
158 | children = (
159 | 16F966FD1A28EEE2003371C5 /* Info.plist */,
160 | );
161 | name = "Supporting Files";
162 | sourceTree = "";
163 | };
164 | 16F9670D1A28F06F003371C5 /* ReadItAction */ = {
165 | isa = PBXGroup;
166 | children = (
167 | 16F967101A28F06F003371C5 /* ActionViewController.h */,
168 | 16F967111A28F06F003371C5 /* ActionViewController.m */,
169 | 16F967131A28F06F003371C5 /* MainInterface.storyboard */,
170 | 16F9670E1A28F06F003371C5 /* Supporting Files */,
171 | );
172 | path = ReadItAction;
173 | sourceTree = "";
174 | };
175 | 16F9670E1A28F06F003371C5 /* Supporting Files */ = {
176 | isa = PBXGroup;
177 | children = (
178 | 16F9670F1A28F06F003371C5 /* Info.plist */,
179 | );
180 | name = "Supporting Files";
181 | sourceTree = "";
182 | };
183 | 16F9671C1A291B2C003371C5 /* Resources */ = {
184 | isa = PBXGroup;
185 | children = (
186 | 16F9671D1A291B3C003371C5 /* ActionSoundIcon.png */,
187 | );
188 | name = Resources;
189 | sourceTree = "";
190 | };
191 | /* End PBXGroup section */
192 |
193 | /* Begin PBXNativeTarget section */
194 | 16F966DE1A28EEE2003371C5 /* SampleActionExtensionApp */ = {
195 | isa = PBXNativeTarget;
196 | buildConfigurationList = 16F967021A28EEE2003371C5 /* Build configuration list for PBXNativeTarget "SampleActionExtensionApp" */;
197 | buildPhases = (
198 | 16F966DB1A28EEE2003371C5 /* Sources */,
199 | 16F966DC1A28EEE2003371C5 /* Frameworks */,
200 | 16F966DD1A28EEE2003371C5 /* Resources */,
201 | 16F9671B1A28F06F003371C5 /* Embed App Extensions */,
202 | );
203 | buildRules = (
204 | );
205 | dependencies = (
206 | 16F967161A28F06F003371C5 /* PBXTargetDependency */,
207 | );
208 | name = SampleActionExtensionApp;
209 | productName = SampleActionExtensionApp;
210 | productReference = 16F966DF1A28EEE2003371C5 /* SampleActionExtensionApp.app */;
211 | productType = "com.apple.product-type.application";
212 | };
213 | 16F966F71A28EEE2003371C5 /* SampleActionExtensionAppTests */ = {
214 | isa = PBXNativeTarget;
215 | buildConfigurationList = 16F967051A28EEE2003371C5 /* Build configuration list for PBXNativeTarget "SampleActionExtensionAppTests" */;
216 | buildPhases = (
217 | 16F966F41A28EEE2003371C5 /* Sources */,
218 | 16F966F51A28EEE2003371C5 /* Frameworks */,
219 | 16F966F61A28EEE2003371C5 /* Resources */,
220 | );
221 | buildRules = (
222 | );
223 | dependencies = (
224 | 16F966FA1A28EEE2003371C5 /* PBXTargetDependency */,
225 | );
226 | name = SampleActionExtensionAppTests;
227 | productName = SampleActionExtensionAppTests;
228 | productReference = 16F966F81A28EEE2003371C5 /* SampleActionExtensionAppTests.xctest */;
229 | productType = "com.apple.product-type.bundle.unit-test";
230 | };
231 | 16F9670B1A28F06F003371C5 /* ReadItAction */ = {
232 | isa = PBXNativeTarget;
233 | buildConfigurationList = 16F967181A28F06F003371C5 /* Build configuration list for PBXNativeTarget "ReadItAction" */;
234 | buildPhases = (
235 | 16F967081A28F06F003371C5 /* Sources */,
236 | 16F967091A28F06F003371C5 /* Frameworks */,
237 | 16F9670A1A28F06F003371C5 /* Resources */,
238 | );
239 | buildRules = (
240 | );
241 | dependencies = (
242 | );
243 | name = ReadItAction;
244 | productName = ReadItAction;
245 | productReference = 16F9670C1A28F06F003371C5 /* ReadItAction.appex */;
246 | productType = "com.apple.product-type.app-extension";
247 | };
248 | /* End PBXNativeTarget section */
249 |
250 | /* Begin PBXProject section */
251 | 16F966D71A28EEE2003371C5 /* Project object */ = {
252 | isa = PBXProject;
253 | attributes = {
254 | LastUpgradeCheck = 0610;
255 | ORGANIZATIONNAME = Glimsoft;
256 | TargetAttributes = {
257 | 16F966DE1A28EEE2003371C5 = {
258 | CreatedOnToolsVersion = 6.1;
259 | };
260 | 16F966F71A28EEE2003371C5 = {
261 | CreatedOnToolsVersion = 6.1;
262 | TestTargetID = 16F966DE1A28EEE2003371C5;
263 | };
264 | 16F9670B1A28F06F003371C5 = {
265 | CreatedOnToolsVersion = 6.1;
266 | };
267 | };
268 | };
269 | buildConfigurationList = 16F966DA1A28EEE2003371C5 /* Build configuration list for PBXProject "SampleActionExtensionApp" */;
270 | compatibilityVersion = "Xcode 3.2";
271 | developmentRegion = English;
272 | hasScannedForEncodings = 0;
273 | knownRegions = (
274 | en,
275 | Base,
276 | );
277 | mainGroup = 16F966D61A28EEE2003371C5;
278 | productRefGroup = 16F966E01A28EEE2003371C5 /* Products */;
279 | projectDirPath = "";
280 | projectRoot = "";
281 | targets = (
282 | 16F966DE1A28EEE2003371C5 /* SampleActionExtensionApp */,
283 | 16F966F71A28EEE2003371C5 /* SampleActionExtensionAppTests */,
284 | 16F9670B1A28F06F003371C5 /* ReadItAction */,
285 | );
286 | };
287 | /* End PBXProject section */
288 |
289 | /* Begin PBXResourcesBuildPhase section */
290 | 16F966DD1A28EEE2003371C5 /* Resources */ = {
291 | isa = PBXResourcesBuildPhase;
292 | buildActionMask = 2147483647;
293 | files = (
294 | 16F966EE1A28EEE2003371C5 /* Main.storyboard in Resources */,
295 | 16F966F31A28EEE2003371C5 /* LaunchScreen.xib in Resources */,
296 | 16F9671E1A291B3C003371C5 /* ActionSoundIcon.png in Resources */,
297 | 16F966F01A28EEE2003371C5 /* Images.xcassets in Resources */,
298 | );
299 | runOnlyForDeploymentPostprocessing = 0;
300 | };
301 | 16F966F61A28EEE2003371C5 /* Resources */ = {
302 | isa = PBXResourcesBuildPhase;
303 | buildActionMask = 2147483647;
304 | files = (
305 | );
306 | runOnlyForDeploymentPostprocessing = 0;
307 | };
308 | 16F9670A1A28F06F003371C5 /* Resources */ = {
309 | isa = PBXResourcesBuildPhase;
310 | buildActionMask = 2147483647;
311 | files = (
312 | 16F967201A291BF5003371C5 /* Images.xcassets in Resources */,
313 | 16F967141A28F06F003371C5 /* MainInterface.storyboard in Resources */,
314 | );
315 | runOnlyForDeploymentPostprocessing = 0;
316 | };
317 | /* End PBXResourcesBuildPhase section */
318 |
319 | /* Begin PBXSourcesBuildPhase section */
320 | 16F966DB1A28EEE2003371C5 /* Sources */ = {
321 | isa = PBXSourcesBuildPhase;
322 | buildActionMask = 2147483647;
323 | files = (
324 | 16F966EB1A28EEE2003371C5 /* ViewController.m in Sources */,
325 | 16F966E81A28EEE2003371C5 /* AppDelegate.m in Sources */,
326 | 16F966E51A28EEE2003371C5 /* main.m in Sources */,
327 | );
328 | runOnlyForDeploymentPostprocessing = 0;
329 | };
330 | 16F966F41A28EEE2003371C5 /* Sources */ = {
331 | isa = PBXSourcesBuildPhase;
332 | buildActionMask = 2147483647;
333 | files = (
334 | 16F966FF1A28EEE2003371C5 /* SampleActionExtensionAppTests.m in Sources */,
335 | );
336 | runOnlyForDeploymentPostprocessing = 0;
337 | };
338 | 16F967081A28F06F003371C5 /* Sources */ = {
339 | isa = PBXSourcesBuildPhase;
340 | buildActionMask = 2147483647;
341 | files = (
342 | 16F967121A28F06F003371C5 /* ActionViewController.m in Sources */,
343 | );
344 | runOnlyForDeploymentPostprocessing = 0;
345 | };
346 | /* End PBXSourcesBuildPhase section */
347 |
348 | /* Begin PBXTargetDependency section */
349 | 16F966FA1A28EEE2003371C5 /* PBXTargetDependency */ = {
350 | isa = PBXTargetDependency;
351 | target = 16F966DE1A28EEE2003371C5 /* SampleActionExtensionApp */;
352 | targetProxy = 16F966F91A28EEE2003371C5 /* PBXContainerItemProxy */;
353 | };
354 | 16F967161A28F06F003371C5 /* PBXTargetDependency */ = {
355 | isa = PBXTargetDependency;
356 | target = 16F9670B1A28F06F003371C5 /* ReadItAction */;
357 | targetProxy = 16F967151A28F06F003371C5 /* PBXContainerItemProxy */;
358 | };
359 | /* End PBXTargetDependency section */
360 |
361 | /* Begin PBXVariantGroup section */
362 | 16F966EC1A28EEE2003371C5 /* Main.storyboard */ = {
363 | isa = PBXVariantGroup;
364 | children = (
365 | 16F966ED1A28EEE2003371C5 /* Base */,
366 | );
367 | name = Main.storyboard;
368 | sourceTree = "";
369 | };
370 | 16F966F11A28EEE2003371C5 /* LaunchScreen.xib */ = {
371 | isa = PBXVariantGroup;
372 | children = (
373 | 16F966F21A28EEE2003371C5 /* Base */,
374 | );
375 | name = LaunchScreen.xib;
376 | sourceTree = "";
377 | };
378 | /* End PBXVariantGroup section */
379 |
380 | /* Begin XCBuildConfiguration section */
381 | 16F967001A28EEE2003371C5 /* Debug */ = {
382 | isa = XCBuildConfiguration;
383 | buildSettings = {
384 | ALWAYS_SEARCH_USER_PATHS = NO;
385 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
386 | CLANG_CXX_LIBRARY = "libc++";
387 | CLANG_ENABLE_MODULES = YES;
388 | CLANG_ENABLE_OBJC_ARC = YES;
389 | CLANG_WARN_BOOL_CONVERSION = YES;
390 | CLANG_WARN_CONSTANT_CONVERSION = YES;
391 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
392 | CLANG_WARN_EMPTY_BODY = YES;
393 | CLANG_WARN_ENUM_CONVERSION = YES;
394 | CLANG_WARN_INT_CONVERSION = YES;
395 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
396 | CLANG_WARN_UNREACHABLE_CODE = YES;
397 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
398 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
399 | COPY_PHASE_STRIP = NO;
400 | ENABLE_STRICT_OBJC_MSGSEND = YES;
401 | GCC_C_LANGUAGE_STANDARD = gnu99;
402 | GCC_DYNAMIC_NO_PIC = NO;
403 | GCC_OPTIMIZATION_LEVEL = 0;
404 | GCC_PREPROCESSOR_DEFINITIONS = (
405 | "DEBUG=1",
406 | "$(inherited)",
407 | );
408 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
409 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
410 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
411 | GCC_WARN_UNDECLARED_SELECTOR = YES;
412 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
413 | GCC_WARN_UNUSED_FUNCTION = YES;
414 | GCC_WARN_UNUSED_VARIABLE = YES;
415 | IPHONEOS_DEPLOYMENT_TARGET = 8.1;
416 | MTL_ENABLE_DEBUG_INFO = YES;
417 | ONLY_ACTIVE_ARCH = YES;
418 | SDKROOT = iphoneos;
419 | };
420 | name = Debug;
421 | };
422 | 16F967011A28EEE2003371C5 /* Release */ = {
423 | isa = XCBuildConfiguration;
424 | buildSettings = {
425 | ALWAYS_SEARCH_USER_PATHS = NO;
426 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
427 | CLANG_CXX_LIBRARY = "libc++";
428 | CLANG_ENABLE_MODULES = YES;
429 | CLANG_ENABLE_OBJC_ARC = YES;
430 | CLANG_WARN_BOOL_CONVERSION = YES;
431 | CLANG_WARN_CONSTANT_CONVERSION = YES;
432 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
433 | CLANG_WARN_EMPTY_BODY = YES;
434 | CLANG_WARN_ENUM_CONVERSION = YES;
435 | CLANG_WARN_INT_CONVERSION = YES;
436 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
437 | CLANG_WARN_UNREACHABLE_CODE = YES;
438 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
439 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
440 | COPY_PHASE_STRIP = YES;
441 | ENABLE_NS_ASSERTIONS = NO;
442 | ENABLE_STRICT_OBJC_MSGSEND = YES;
443 | GCC_C_LANGUAGE_STANDARD = gnu99;
444 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
445 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
446 | GCC_WARN_UNDECLARED_SELECTOR = YES;
447 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
448 | GCC_WARN_UNUSED_FUNCTION = YES;
449 | GCC_WARN_UNUSED_VARIABLE = YES;
450 | IPHONEOS_DEPLOYMENT_TARGET = 8.1;
451 | MTL_ENABLE_DEBUG_INFO = NO;
452 | SDKROOT = iphoneos;
453 | VALIDATE_PRODUCT = YES;
454 | };
455 | name = Release;
456 | };
457 | 16F967031A28EEE2003371C5 /* Debug */ = {
458 | isa = XCBuildConfiguration;
459 | buildSettings = {
460 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
461 | INFOPLIST_FILE = SampleActionExtensionApp/Info.plist;
462 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
463 | PRODUCT_NAME = "$(TARGET_NAME)";
464 | };
465 | name = Debug;
466 | };
467 | 16F967041A28EEE2003371C5 /* Release */ = {
468 | isa = XCBuildConfiguration;
469 | buildSettings = {
470 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
471 | INFOPLIST_FILE = SampleActionExtensionApp/Info.plist;
472 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
473 | PRODUCT_NAME = "$(TARGET_NAME)";
474 | };
475 | name = Release;
476 | };
477 | 16F967061A28EEE2003371C5 /* Debug */ = {
478 | isa = XCBuildConfiguration;
479 | buildSettings = {
480 | BUNDLE_LOADER = "$(TEST_HOST)";
481 | FRAMEWORK_SEARCH_PATHS = (
482 | "$(SDKROOT)/Developer/Library/Frameworks",
483 | "$(inherited)",
484 | );
485 | GCC_PREPROCESSOR_DEFINITIONS = (
486 | "DEBUG=1",
487 | "$(inherited)",
488 | );
489 | INFOPLIST_FILE = SampleActionExtensionAppTests/Info.plist;
490 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
491 | PRODUCT_NAME = "$(TARGET_NAME)";
492 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SampleActionExtensionApp.app/SampleActionExtensionApp";
493 | };
494 | name = Debug;
495 | };
496 | 16F967071A28EEE2003371C5 /* Release */ = {
497 | isa = XCBuildConfiguration;
498 | buildSettings = {
499 | BUNDLE_LOADER = "$(TEST_HOST)";
500 | FRAMEWORK_SEARCH_PATHS = (
501 | "$(SDKROOT)/Developer/Library/Frameworks",
502 | "$(inherited)",
503 | );
504 | INFOPLIST_FILE = SampleActionExtensionAppTests/Info.plist;
505 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
506 | PRODUCT_NAME = "$(TARGET_NAME)";
507 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SampleActionExtensionApp.app/SampleActionExtensionApp";
508 | };
509 | name = Release;
510 | };
511 | 16F967191A28F06F003371C5 /* Debug */ = {
512 | isa = XCBuildConfiguration;
513 | buildSettings = {
514 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIconExtension;
515 | GCC_PREPROCESSOR_DEFINITIONS = (
516 | "DEBUG=1",
517 | "$(inherited)",
518 | );
519 | INFOPLIST_FILE = ReadItAction/Info.plist;
520 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
521 | PRODUCT_NAME = "$(TARGET_NAME)";
522 | SKIP_INSTALL = YES;
523 | };
524 | name = Debug;
525 | };
526 | 16F9671A1A28F06F003371C5 /* Release */ = {
527 | isa = XCBuildConfiguration;
528 | buildSettings = {
529 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIconExtension;
530 | INFOPLIST_FILE = ReadItAction/Info.plist;
531 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
532 | PRODUCT_NAME = "$(TARGET_NAME)";
533 | SKIP_INSTALL = YES;
534 | };
535 | name = Release;
536 | };
537 | /* End XCBuildConfiguration section */
538 |
539 | /* Begin XCConfigurationList section */
540 | 16F966DA1A28EEE2003371C5 /* Build configuration list for PBXProject "SampleActionExtensionApp" */ = {
541 | isa = XCConfigurationList;
542 | buildConfigurations = (
543 | 16F967001A28EEE2003371C5 /* Debug */,
544 | 16F967011A28EEE2003371C5 /* Release */,
545 | );
546 | defaultConfigurationIsVisible = 0;
547 | defaultConfigurationName = Release;
548 | };
549 | 16F967021A28EEE2003371C5 /* Build configuration list for PBXNativeTarget "SampleActionExtensionApp" */ = {
550 | isa = XCConfigurationList;
551 | buildConfigurations = (
552 | 16F967031A28EEE2003371C5 /* Debug */,
553 | 16F967041A28EEE2003371C5 /* Release */,
554 | );
555 | defaultConfigurationIsVisible = 0;
556 | defaultConfigurationName = Release;
557 | };
558 | 16F967051A28EEE2003371C5 /* Build configuration list for PBXNativeTarget "SampleActionExtensionAppTests" */ = {
559 | isa = XCConfigurationList;
560 | buildConfigurations = (
561 | 16F967061A28EEE2003371C5 /* Debug */,
562 | 16F967071A28EEE2003371C5 /* Release */,
563 | );
564 | defaultConfigurationIsVisible = 0;
565 | defaultConfigurationName = Release;
566 | };
567 | 16F967181A28F06F003371C5 /* Build configuration list for PBXNativeTarget "ReadItAction" */ = {
568 | isa = XCConfigurationList;
569 | buildConfigurations = (
570 | 16F967191A28F06F003371C5 /* Debug */,
571 | 16F9671A1A28F06F003371C5 /* Release */,
572 | );
573 | defaultConfigurationIsVisible = 0;
574 | defaultConfigurationName = Release;
575 | };
576 | /* End XCConfigurationList section */
577 | };
578 | rootObject = 16F966D71A28EEE2003371C5 /* Project object */;
579 | }
580 |
--------------------------------------------------------------------------------