Ifd_Mobile 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/Ifd_Mobile/lib_web.rb +118 -106
- data/lib/Ifd_Mobile/methods/IFD_Assertion.rb +44 -44
- data/lib/Ifd_Mobile/methods/core.rb +243 -231
- data/lib/Ifd_Mobile/methods/lib_var.rb +53 -53
- data/lib/Ifd_Mobile/version.rb +5 -5
- data/project/Gemfile +9 -9
- data/project/apps/TestApp/Test App 2/GestureTestViewController.h +18 -18
- data/project/apps/TestApp/Test App 2/GestureTestViewController.m +48 -48
- data/project/apps/TestApp/Test App 2/GestureTestViewController.xib +46 -46
- data/project/apps/TestApp/Test App 2/MyViewControllerViewController.h +42 -42
- data/project/apps/TestApp/Test App 2/MyViewControllerViewController.m +193 -193
- data/project/apps/TestApp/Test App 2/TA2AppDelegate.h +28 -28
- data/project/apps/TestApp/Test App 2/TA2AppDelegate.m +85 -85
- data/project/apps/TestApp/Test App 2/TestApp-Info.plist +40 -40
- data/project/apps/TestApp/Test App 2/TestApp-Prefix.pch +29 -29
- data/project/apps/TestApp/Test App 2/en.lproj/InfoPlist.strings +21 -21
- data/project/apps/TestApp/Test App 2/en.lproj/MyViewControllerViewController.xib +175 -175
- data/project/apps/TestApp/Test App 2/main.m +31 -31
- data/project/apps/TestApp/TestApp.xcodeproj/project.pbxproj +336 -336
- data/project/apps/TestApp/TestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -7
- data/project/apps/TestApp/TestApp.xcodeproj/xcuserdata/anhpham.xcuserdatad/xcschemes/TestApp.xcscheme +88 -88
- data/project/apps/TestApp/TestApp.xcodeproj/xcuserdata/anhpham.xcuserdatad/xcschemes/xcschememanagement.plist +22 -22
- data/project/features/android/Android_test1.feature +14 -14
- data/project/features/android/Android_test2.feature +14 -14
- data/project/features/iOS/iOS_test.feature +15 -17
- data/project/features/step_definitions/lib_steps/PolyClaim_homepage.rb +2 -2
- data/project/features/step_definitions/lib_steps/PolyClaim_loginpage.rb +3 -3
- data/project/features/step_definitions/repositories/android_ob_test.rb +9 -9
- data/project/features/step_definitions/repositories/ios_ob_test.rb +6 -6
- data/project/features/support/env.rb +36 -36
- data/project/features/support/hooks.rb +8 -8
- data/project/features/support/project_env.rb +42 -42
- metadata +40 -40
@@ -1,31 +1,31 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright 2012 Appium Committers
|
3
|
-
*
|
4
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
5
|
-
* or more contributor license agreements. See the NOTICE file
|
6
|
-
* distributed with this work for additional information
|
7
|
-
* regarding copyright ownership. The ASF licenses this file
|
8
|
-
* to you under the Apache License, Version 2.0 (the
|
9
|
-
* "License"); you may not use this file except in compliance
|
10
|
-
* with the License. You may obtain a copy of the License at
|
11
|
-
*
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
13
|
-
*
|
14
|
-
* Unless required by applicable law or agreed to in writing,
|
15
|
-
* software distributed under the License is distributed on an
|
16
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
17
|
-
* KIND, either express or implied. See the License for the
|
18
|
-
* specific language governing permissions and limitations
|
19
|
-
* under the License.
|
20
|
-
*/
|
21
|
-
|
22
|
-
#import <UIKit/UIKit.h>
|
23
|
-
|
24
|
-
#import "TA2AppDelegate.h"
|
25
|
-
|
26
|
-
int main(int argc, char *argv[])
|
27
|
-
{
|
28
|
-
@autoreleasepool {
|
29
|
-
return UIApplicationMain(argc, argv, nil, NSStringFromClass([TA2AppDelegate class]));
|
30
|
-
}
|
31
|
-
}
|
1
|
+
/**
|
2
|
+
* Copyright 2012 Appium Committers
|
3
|
+
*
|
4
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
5
|
+
* or more contributor license agreements. See the NOTICE file
|
6
|
+
* distributed with this work for additional information
|
7
|
+
* regarding copyright ownership. The ASF licenses this file
|
8
|
+
* to you under the Apache License, Version 2.0 (the
|
9
|
+
* "License"); you may not use this file except in compliance
|
10
|
+
* with the License. You may obtain a copy of the License at
|
11
|
+
*
|
12
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
*
|
14
|
+
* Unless required by applicable law or agreed to in writing,
|
15
|
+
* software distributed under the License is distributed on an
|
16
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
17
|
+
* KIND, either express or implied. See the License for the
|
18
|
+
* specific language governing permissions and limitations
|
19
|
+
* under the License.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#import <UIKit/UIKit.h>
|
23
|
+
|
24
|
+
#import "TA2AppDelegate.h"
|
25
|
+
|
26
|
+
int main(int argc, char *argv[])
|
27
|
+
{
|
28
|
+
@autoreleasepool {
|
29
|
+
return UIApplicationMain(argc, argv, nil, NSStringFromClass([TA2AppDelegate class]));
|
30
|
+
}
|
31
|
+
}
|
@@ -1,336 +1,336 @@
|
|
1
|
-
// !$*UTF8*$!
|
2
|
-
{
|
3
|
-
archiveVersion = 1;
|
4
|
-
classes = {
|
5
|
-
};
|
6
|
-
objectVersion = 46;
|
7
|
-
objects = {
|
8
|
-
|
9
|
-
/* Begin PBXBuildFile section */
|
10
|
-
0FD861CB19A2933400F753B7 /* MyViewControllerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */; };
|
11
|
-
1BB2B952189053DC00D0591D /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BB2B951189053DC00D0591D /* CoreLocation.framework */; };
|
12
|
-
255BAFEC1790223300DE7158 /* GestureTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 255BAFEA1790223300DE7158 /* GestureTestViewController.m */; };
|
13
|
-
255BAFED1790223300DE7158 /* GestureTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 255BAFEB1790223300DE7158 /* GestureTestViewController.xib */; };
|
14
|
-
255BAFEF1790249F00DE7158 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 255BAFEE1790249F00DE7158 /* MapKit.framework */; };
|
15
|
-
3647AE1315CA0082006F70D6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1215CA0082006F70D6 /* UIKit.framework */; };
|
16
|
-
3647AE1515CA0082006F70D6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1415CA0082006F70D6 /* Foundation.framework */; };
|
17
|
-
3647AE1715CA0082006F70D6 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1615CA0082006F70D6 /* CoreGraphics.framework */; };
|
18
|
-
3647AE1D15CA0082006F70D6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 3647AE1B15CA0082006F70D6 /* InfoPlist.strings */; };
|
19
|
-
3647AE1F15CA0082006F70D6 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE1E15CA0082006F70D6 /* main.m */; };
|
20
|
-
3647AE2315CA0082006F70D6 /* TA2AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */; };
|
21
|
-
3647AE2C15CA00D5006F70D6 /* MyViewControllerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */; };
|
22
|
-
36FEEFEE1656DD6000100C04 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 36FEEFED1656DD6000100C04 /* Default-568h@2x.png */; };
|
23
|
-
ABB96E8E192ECF150022BE43 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = ABB96E8C192ECF150022BE43 /* Localizable.strings */; };
|
24
|
-
EA040B6118D3DF5E00AC02D8 /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */; };
|
25
|
-
/* End PBXBuildFile section */
|
26
|
-
|
27
|
-
/* Begin PBXFileReference section */
|
28
|
-
0FD861CC19A2933400F753B7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MyViewControllerViewController.xib; sourceTree = "<group>"; };
|
29
|
-
1BB2B951189053DC00D0591D /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
|
30
|
-
255BAFE91790223300DE7158 /* GestureTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GestureTestViewController.h; sourceTree = "<group>"; };
|
31
|
-
255BAFEA1790223300DE7158 /* GestureTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GestureTestViewController.m; sourceTree = "<group>"; };
|
32
|
-
255BAFEB1790223300DE7158 /* GestureTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GestureTestViewController.xib; sourceTree = "<group>"; };
|
33
|
-
255BAFEE1790249F00DE7158 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
|
34
|
-
3647AE0E15CA0082006F70D6 /* TestApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
35
|
-
3647AE1215CA0082006F70D6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
36
|
-
3647AE1415CA0082006F70D6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
37
|
-
3647AE1615CA0082006F70D6 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
38
|
-
3647AE1A15CA0082006F70D6 /* TestApp-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestApp-Info.plist"; sourceTree = "<group>"; };
|
39
|
-
3647AE1C15CA0082006F70D6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
40
|
-
3647AE1E15CA0082006F70D6 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
41
|
-
3647AE2015CA0082006F70D6 /* TestApp-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestApp-Prefix.pch"; sourceTree = "<group>"; };
|
42
|
-
3647AE2115CA0082006F70D6 /* TA2AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TA2AppDelegate.h; sourceTree = "<group>"; };
|
43
|
-
3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TA2AppDelegate.m; sourceTree = "<group>"; };
|
44
|
-
3647AE2915CA00D5006F70D6 /* MyViewControllerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyViewControllerViewController.h; sourceTree = "<group>"; };
|
45
|
-
3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyViewControllerViewController.m; sourceTree = "<group>"; };
|
46
|
-
36FEEFED1656DD6000100C04 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
|
47
|
-
ABB96E8D192ECF150022BE43 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
|
48
|
-
EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
|
49
|
-
/* End PBXFileReference section */
|
50
|
-
|
51
|
-
/* Begin PBXFrameworksBuildPhase section */
|
52
|
-
3647AE0B15CA0082006F70D6 /* Frameworks */ = {
|
53
|
-
isa = PBXFrameworksBuildPhase;
|
54
|
-
buildActionMask = 2147483647;
|
55
|
-
files = (
|
56
|
-
EA040B6118D3DF5E00AC02D8 /* AddressBook.framework in Frameworks */,
|
57
|
-
1BB2B952189053DC00D0591D /* CoreLocation.framework in Frameworks */,
|
58
|
-
255BAFEF1790249F00DE7158 /* MapKit.framework in Frameworks */,
|
59
|
-
3647AE1315CA0082006F70D6 /* UIKit.framework in Frameworks */,
|
60
|
-
3647AE1515CA0082006F70D6 /* Foundation.framework in Frameworks */,
|
61
|
-
3647AE1715CA0082006F70D6 /* CoreGraphics.framework in Frameworks */,
|
62
|
-
);
|
63
|
-
runOnlyForDeploymentPostprocessing = 0;
|
64
|
-
};
|
65
|
-
/* End PBXFrameworksBuildPhase section */
|
66
|
-
|
67
|
-
/* Begin PBXGroup section */
|
68
|
-
3647AE0315CA0082006F70D6 = {
|
69
|
-
isa = PBXGroup;
|
70
|
-
children = (
|
71
|
-
255BAFEE1790249F00DE7158 /* MapKit.framework */,
|
72
|
-
36FEEFED1656DD6000100C04 /* Default-568h@2x.png */,
|
73
|
-
3647AE1815CA0082006F70D6 /* TestApp */,
|
74
|
-
3647AE1115CA0082006F70D6 /* Frameworks */,
|
75
|
-
3647AE0F15CA0082006F70D6 /* Products */,
|
76
|
-
);
|
77
|
-
sourceTree = "<group>";
|
78
|
-
};
|
79
|
-
3647AE0F15CA0082006F70D6 /* Products */ = {
|
80
|
-
isa = PBXGroup;
|
81
|
-
children = (
|
82
|
-
3647AE0E15CA0082006F70D6 /* TestApp.app */,
|
83
|
-
);
|
84
|
-
name = Products;
|
85
|
-
sourceTree = "<group>";
|
86
|
-
};
|
87
|
-
3647AE1115CA0082006F70D6 /* Frameworks */ = {
|
88
|
-
isa = PBXGroup;
|
89
|
-
children = (
|
90
|
-
EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */,
|
91
|
-
1BB2B951189053DC00D0591D /* CoreLocation.framework */,
|
92
|
-
3647AE1215CA0082006F70D6 /* UIKit.framework */,
|
93
|
-
3647AE1415CA0082006F70D6 /* Foundation.framework */,
|
94
|
-
3647AE1615CA0082006F70D6 /* CoreGraphics.framework */,
|
95
|
-
);
|
96
|
-
name = Frameworks;
|
97
|
-
sourceTree = "<group>";
|
98
|
-
};
|
99
|
-
3647AE1815CA0082006F70D6 /* TestApp */ = {
|
100
|
-
isa = PBXGroup;
|
101
|
-
children = (
|
102
|
-
3647AE2115CA0082006F70D6 /* TA2AppDelegate.h */,
|
103
|
-
3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */,
|
104
|
-
3647AE1915CA0082006F70D6 /* Supporting Files */,
|
105
|
-
3647AE2915CA00D5006F70D6 /* MyViewControllerViewController.h */,
|
106
|
-
3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */,
|
107
|
-
0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */,
|
108
|
-
255BAFE91790223300DE7158 /* GestureTestViewController.h */,
|
109
|
-
255BAFEA1790223300DE7158 /* GestureTestViewController.m */,
|
110
|
-
255BAFEB1790223300DE7158 /* GestureTestViewController.xib */,
|
111
|
-
);
|
112
|
-
name = TestApp;
|
113
|
-
path = "Test App 2";
|
114
|
-
sourceTree = "<group>";
|
115
|
-
};
|
116
|
-
3647AE1915CA0082006F70D6 /* Supporting Files */ = {
|
117
|
-
isa = PBXGroup;
|
118
|
-
children = (
|
119
|
-
3647AE1A15CA0082006F70D6 /* TestApp-Info.plist */,
|
120
|
-
ABB96E8C192ECF150022BE43 /* Localizable.strings */,
|
121
|
-
3647AE1B15CA0082006F70D6 /* InfoPlist.strings */,
|
122
|
-
3647AE1E15CA0082006F70D6 /* main.m */,
|
123
|
-
3647AE2015CA0082006F70D6 /* TestApp-Prefix.pch */,
|
124
|
-
);
|
125
|
-
name = "Supporting Files";
|
126
|
-
sourceTree = "<group>";
|
127
|
-
};
|
128
|
-
/* End PBXGroup section */
|
129
|
-
|
130
|
-
/* Begin PBXNativeTarget section */
|
131
|
-
3647AE0D15CA0082006F70D6 /* TestApp */ = {
|
132
|
-
isa = PBXNativeTarget;
|
133
|
-
buildConfigurationList = 3647AE2615CA0082006F70D6 /* Build configuration list for PBXNativeTarget "TestApp" */;
|
134
|
-
buildPhases = (
|
135
|
-
3647AE0A15CA0082006F70D6 /* Sources */,
|
136
|
-
3647AE0B15CA0082006F70D6 /* Frameworks */,
|
137
|
-
3647AE0C15CA0082006F70D6 /* Resources */,
|
138
|
-
);
|
139
|
-
buildRules = (
|
140
|
-
);
|
141
|
-
dependencies = (
|
142
|
-
);
|
143
|
-
name = TestApp;
|
144
|
-
productName = "Test App 2";
|
145
|
-
productReference = 3647AE0E15CA0082006F70D6 /* TestApp.app */;
|
146
|
-
productType = "com.apple.product-type.application";
|
147
|
-
};
|
148
|
-
/* End PBXNativeTarget section */
|
149
|
-
|
150
|
-
/* Begin PBXProject section */
|
151
|
-
3647AE0515CA0082006F70D6 /* Project object */ = {
|
152
|
-
isa = PBXProject;
|
153
|
-
attributes = {
|
154
|
-
CLASSPREFIX = TA2;
|
155
|
-
LastUpgradeCheck = 0460;
|
156
|
-
};
|
157
|
-
buildConfigurationList = 3647AE0815CA0082006F70D6 /* Build configuration list for PBXProject "TestApp" */;
|
158
|
-
compatibilityVersion = "Xcode 3.2";
|
159
|
-
developmentRegion = English;
|
160
|
-
hasScannedForEncodings = 0;
|
161
|
-
knownRegions = (
|
162
|
-
en,
|
163
|
-
);
|
164
|
-
mainGroup = 3647AE0315CA0082006F70D6;
|
165
|
-
productRefGroup = 3647AE0F15CA0082006F70D6 /* Products */;
|
166
|
-
projectDirPath = "";
|
167
|
-
projectRoot = "";
|
168
|
-
targets = (
|
169
|
-
3647AE0D15CA0082006F70D6 /* TestApp */,
|
170
|
-
);
|
171
|
-
};
|
172
|
-
/* End PBXProject section */
|
173
|
-
|
174
|
-
/* Begin PBXResourcesBuildPhase section */
|
175
|
-
3647AE0C15CA0082006F70D6 /* Resources */ = {
|
176
|
-
isa = PBXResourcesBuildPhase;
|
177
|
-
buildActionMask = 2147483647;
|
178
|
-
files = (
|
179
|
-
ABB96E8E192ECF150022BE43 /* Localizable.strings in Resources */,
|
180
|
-
3647AE1D15CA0082006F70D6 /* InfoPlist.strings in Resources */,
|
181
|
-
0FD861CB19A2933400F753B7 /* MyViewControllerViewController.xib in Resources */,
|
182
|
-
36FEEFEE1656DD6000100C04 /* Default-568h@2x.png in Resources */,
|
183
|
-
255BAFED1790223300DE7158 /* GestureTestViewController.xib in Resources */,
|
184
|
-
);
|
185
|
-
runOnlyForDeploymentPostprocessing = 0;
|
186
|
-
};
|
187
|
-
/* End PBXResourcesBuildPhase section */
|
188
|
-
|
189
|
-
/* Begin PBXSourcesBuildPhase section */
|
190
|
-
3647AE0A15CA0082006F70D6 /* Sources */ = {
|
191
|
-
isa = PBXSourcesBuildPhase;
|
192
|
-
buildActionMask = 2147483647;
|
193
|
-
files = (
|
194
|
-
3647AE1F15CA0082006F70D6 /* main.m in Sources */,
|
195
|
-
3647AE2315CA0082006F70D6 /* TA2AppDelegate.m in Sources */,
|
196
|
-
3647AE2C15CA00D5006F70D6 /* MyViewControllerViewController.m in Sources */,
|
197
|
-
255BAFEC1790223300DE7158 /* GestureTestViewController.m in Sources */,
|
198
|
-
);
|
199
|
-
runOnlyForDeploymentPostprocessing = 0;
|
200
|
-
};
|
201
|
-
/* End PBXSourcesBuildPhase section */
|
202
|
-
|
203
|
-
/* Begin PBXVariantGroup section */
|
204
|
-
0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */ = {
|
205
|
-
isa = PBXVariantGroup;
|
206
|
-
children = (
|
207
|
-
0FD861CC19A2933400F753B7 /* en */,
|
208
|
-
);
|
209
|
-
name = MyViewControllerViewController.xib;
|
210
|
-
sourceTree = "<group>";
|
211
|
-
};
|
212
|
-
3647AE1B15CA0082006F70D6 /* InfoPlist.strings */ = {
|
213
|
-
isa = PBXVariantGroup;
|
214
|
-
children = (
|
215
|
-
3647AE1C15CA0082006F70D6 /* en */,
|
216
|
-
);
|
217
|
-
name = InfoPlist.strings;
|
218
|
-
sourceTree = "<group>";
|
219
|
-
};
|
220
|
-
ABB96E8C192ECF150022BE43 /* Localizable.strings */ = {
|
221
|
-
isa = PBXVariantGroup;
|
222
|
-
children = (
|
223
|
-
ABB96E8D192ECF150022BE43 /* en */,
|
224
|
-
);
|
225
|
-
name = Localizable.strings;
|
226
|
-
sourceTree = "<group>";
|
227
|
-
};
|
228
|
-
/* End PBXVariantGroup section */
|
229
|
-
|
230
|
-
/* Begin XCBuildConfiguration section */
|
231
|
-
3647AE2415CA0082006F70D6 /* Debug */ = {
|
232
|
-
isa = XCBuildConfiguration;
|
233
|
-
buildSettings = {
|
234
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
235
|
-
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
236
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
237
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
238
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
239
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
240
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
241
|
-
COPY_PHASE_STRIP = NO;
|
242
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
243
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
244
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
245
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
246
|
-
"DEBUG=1",
|
247
|
-
"$(inherited)",
|
248
|
-
);
|
249
|
-
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
250
|
-
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
251
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
252
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
253
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
254
|
-
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
255
|
-
SDKROOT = iphoneos;
|
256
|
-
};
|
257
|
-
name = Debug;
|
258
|
-
};
|
259
|
-
3647AE2515CA0082006F70D6 /* Release */ = {
|
260
|
-
isa = XCBuildConfiguration;
|
261
|
-
buildSettings = {
|
262
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
263
|
-
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
264
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
265
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
266
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
267
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
268
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
269
|
-
COPY_PHASE_STRIP = NO;
|
270
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
271
|
-
GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1";
|
272
|
-
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
273
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
274
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
275
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
276
|
-
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
277
|
-
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
278
|
-
SDKROOT = iphoneos;
|
279
|
-
VALIDATE_PRODUCT = YES;
|
280
|
-
};
|
281
|
-
name = Release;
|
282
|
-
};
|
283
|
-
3647AE2715CA0082006F70D6 /* Debug */ = {
|
284
|
-
isa = XCBuildConfiguration;
|
285
|
-
buildSettings = {
|
286
|
-
CODE_SIGN_IDENTITY = "iPhone Developer";
|
287
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
288
|
-
GCC_PREFIX_HEADER = "Test App 2/TestApp-Prefix.pch";
|
289
|
-
INFOPLIST_FILE = "Test App 2/TestApp-Info.plist";
|
290
|
-
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
291
|
-
PRODUCT_NAME = TestApp;
|
292
|
-
PROVISIONING_PROFILE = "";
|
293
|
-
WRAPPER_EXTENSION = app;
|
294
|
-
};
|
295
|
-
name = Debug;
|
296
|
-
};
|
297
|
-
3647AE2815CA0082006F70D6 /* Release */ = {
|
298
|
-
isa = XCBuildConfiguration;
|
299
|
-
buildSettings = {
|
300
|
-
CODE_SIGN_IDENTITY = "iPhone Developer";
|
301
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
302
|
-
GCC_PREFIX_HEADER = "Test App 2/TestApp-Prefix.pch";
|
303
|
-
INFOPLIST_FILE = "Test App 2/TestApp-Info.plist";
|
304
|
-
INSTALL_PATH = "${LOCAL_APPS_DIR}";
|
305
|
-
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
306
|
-
PRODUCT_NAME = TestApp;
|
307
|
-
PROVISIONING_PROFILE = "";
|
308
|
-
WRAPPER_EXTENSION = app;
|
309
|
-
};
|
310
|
-
name = Release;
|
311
|
-
};
|
312
|
-
/* End XCBuildConfiguration section */
|
313
|
-
|
314
|
-
/* Begin XCConfigurationList section */
|
315
|
-
3647AE0815CA0082006F70D6 /* Build configuration list for PBXProject "TestApp" */ = {
|
316
|
-
isa = XCConfigurationList;
|
317
|
-
buildConfigurations = (
|
318
|
-
3647AE2415CA0082006F70D6 /* Debug */,
|
319
|
-
3647AE2515CA0082006F70D6 /* Release */,
|
320
|
-
);
|
321
|
-
defaultConfigurationIsVisible = 0;
|
322
|
-
defaultConfigurationName = Release;
|
323
|
-
};
|
324
|
-
3647AE2615CA0082006F70D6 /* Build configuration list for PBXNativeTarget "TestApp" */ = {
|
325
|
-
isa = XCConfigurationList;
|
326
|
-
buildConfigurations = (
|
327
|
-
3647AE2715CA0082006F70D6 /* Debug */,
|
328
|
-
3647AE2815CA0082006F70D6 /* Release */,
|
329
|
-
);
|
330
|
-
defaultConfigurationIsVisible = 0;
|
331
|
-
defaultConfigurationName = Release;
|
332
|
-
};
|
333
|
-
/* End XCConfigurationList section */
|
334
|
-
};
|
335
|
-
rootObject = 3647AE0515CA0082006F70D6 /* Project object */;
|
336
|
-
}
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
0FD861CB19A2933400F753B7 /* MyViewControllerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */; };
|
11
|
+
1BB2B952189053DC00D0591D /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BB2B951189053DC00D0591D /* CoreLocation.framework */; };
|
12
|
+
255BAFEC1790223300DE7158 /* GestureTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 255BAFEA1790223300DE7158 /* GestureTestViewController.m */; };
|
13
|
+
255BAFED1790223300DE7158 /* GestureTestViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 255BAFEB1790223300DE7158 /* GestureTestViewController.xib */; };
|
14
|
+
255BAFEF1790249F00DE7158 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 255BAFEE1790249F00DE7158 /* MapKit.framework */; };
|
15
|
+
3647AE1315CA0082006F70D6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1215CA0082006F70D6 /* UIKit.framework */; };
|
16
|
+
3647AE1515CA0082006F70D6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1415CA0082006F70D6 /* Foundation.framework */; };
|
17
|
+
3647AE1715CA0082006F70D6 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3647AE1615CA0082006F70D6 /* CoreGraphics.framework */; };
|
18
|
+
3647AE1D15CA0082006F70D6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 3647AE1B15CA0082006F70D6 /* InfoPlist.strings */; };
|
19
|
+
3647AE1F15CA0082006F70D6 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE1E15CA0082006F70D6 /* main.m */; };
|
20
|
+
3647AE2315CA0082006F70D6 /* TA2AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */; };
|
21
|
+
3647AE2C15CA00D5006F70D6 /* MyViewControllerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */; };
|
22
|
+
36FEEFEE1656DD6000100C04 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 36FEEFED1656DD6000100C04 /* Default-568h@2x.png */; };
|
23
|
+
ABB96E8E192ECF150022BE43 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = ABB96E8C192ECF150022BE43 /* Localizable.strings */; };
|
24
|
+
EA040B6118D3DF5E00AC02D8 /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */; };
|
25
|
+
/* End PBXBuildFile section */
|
26
|
+
|
27
|
+
/* Begin PBXFileReference section */
|
28
|
+
0FD861CC19A2933400F753B7 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MyViewControllerViewController.xib; sourceTree = "<group>"; };
|
29
|
+
1BB2B951189053DC00D0591D /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
|
30
|
+
255BAFE91790223300DE7158 /* GestureTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GestureTestViewController.h; sourceTree = "<group>"; };
|
31
|
+
255BAFEA1790223300DE7158 /* GestureTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GestureTestViewController.m; sourceTree = "<group>"; };
|
32
|
+
255BAFEB1790223300DE7158 /* GestureTestViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GestureTestViewController.xib; sourceTree = "<group>"; };
|
33
|
+
255BAFEE1790249F00DE7158 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
|
34
|
+
3647AE0E15CA0082006F70D6 /* TestApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
35
|
+
3647AE1215CA0082006F70D6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
36
|
+
3647AE1415CA0082006F70D6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
37
|
+
3647AE1615CA0082006F70D6 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
38
|
+
3647AE1A15CA0082006F70D6 /* TestApp-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestApp-Info.plist"; sourceTree = "<group>"; };
|
39
|
+
3647AE1C15CA0082006F70D6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
40
|
+
3647AE1E15CA0082006F70D6 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
41
|
+
3647AE2015CA0082006F70D6 /* TestApp-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestApp-Prefix.pch"; sourceTree = "<group>"; };
|
42
|
+
3647AE2115CA0082006F70D6 /* TA2AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TA2AppDelegate.h; sourceTree = "<group>"; };
|
43
|
+
3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TA2AppDelegate.m; sourceTree = "<group>"; };
|
44
|
+
3647AE2915CA00D5006F70D6 /* MyViewControllerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyViewControllerViewController.h; sourceTree = "<group>"; };
|
45
|
+
3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyViewControllerViewController.m; sourceTree = "<group>"; };
|
46
|
+
36FEEFED1656DD6000100C04 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
|
47
|
+
ABB96E8D192ECF150022BE43 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
|
48
|
+
EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
|
49
|
+
/* End PBXFileReference section */
|
50
|
+
|
51
|
+
/* Begin PBXFrameworksBuildPhase section */
|
52
|
+
3647AE0B15CA0082006F70D6 /* Frameworks */ = {
|
53
|
+
isa = PBXFrameworksBuildPhase;
|
54
|
+
buildActionMask = 2147483647;
|
55
|
+
files = (
|
56
|
+
EA040B6118D3DF5E00AC02D8 /* AddressBook.framework in Frameworks */,
|
57
|
+
1BB2B952189053DC00D0591D /* CoreLocation.framework in Frameworks */,
|
58
|
+
255BAFEF1790249F00DE7158 /* MapKit.framework in Frameworks */,
|
59
|
+
3647AE1315CA0082006F70D6 /* UIKit.framework in Frameworks */,
|
60
|
+
3647AE1515CA0082006F70D6 /* Foundation.framework in Frameworks */,
|
61
|
+
3647AE1715CA0082006F70D6 /* CoreGraphics.framework in Frameworks */,
|
62
|
+
);
|
63
|
+
runOnlyForDeploymentPostprocessing = 0;
|
64
|
+
};
|
65
|
+
/* End PBXFrameworksBuildPhase section */
|
66
|
+
|
67
|
+
/* Begin PBXGroup section */
|
68
|
+
3647AE0315CA0082006F70D6 = {
|
69
|
+
isa = PBXGroup;
|
70
|
+
children = (
|
71
|
+
255BAFEE1790249F00DE7158 /* MapKit.framework */,
|
72
|
+
36FEEFED1656DD6000100C04 /* Default-568h@2x.png */,
|
73
|
+
3647AE1815CA0082006F70D6 /* TestApp */,
|
74
|
+
3647AE1115CA0082006F70D6 /* Frameworks */,
|
75
|
+
3647AE0F15CA0082006F70D6 /* Products */,
|
76
|
+
);
|
77
|
+
sourceTree = "<group>";
|
78
|
+
};
|
79
|
+
3647AE0F15CA0082006F70D6 /* Products */ = {
|
80
|
+
isa = PBXGroup;
|
81
|
+
children = (
|
82
|
+
3647AE0E15CA0082006F70D6 /* TestApp.app */,
|
83
|
+
);
|
84
|
+
name = Products;
|
85
|
+
sourceTree = "<group>";
|
86
|
+
};
|
87
|
+
3647AE1115CA0082006F70D6 /* Frameworks */ = {
|
88
|
+
isa = PBXGroup;
|
89
|
+
children = (
|
90
|
+
EA040B6018D3DF5E00AC02D8 /* AddressBook.framework */,
|
91
|
+
1BB2B951189053DC00D0591D /* CoreLocation.framework */,
|
92
|
+
3647AE1215CA0082006F70D6 /* UIKit.framework */,
|
93
|
+
3647AE1415CA0082006F70D6 /* Foundation.framework */,
|
94
|
+
3647AE1615CA0082006F70D6 /* CoreGraphics.framework */,
|
95
|
+
);
|
96
|
+
name = Frameworks;
|
97
|
+
sourceTree = "<group>";
|
98
|
+
};
|
99
|
+
3647AE1815CA0082006F70D6 /* TestApp */ = {
|
100
|
+
isa = PBXGroup;
|
101
|
+
children = (
|
102
|
+
3647AE2115CA0082006F70D6 /* TA2AppDelegate.h */,
|
103
|
+
3647AE2215CA0082006F70D6 /* TA2AppDelegate.m */,
|
104
|
+
3647AE1915CA0082006F70D6 /* Supporting Files */,
|
105
|
+
3647AE2915CA00D5006F70D6 /* MyViewControllerViewController.h */,
|
106
|
+
3647AE2A15CA00D5006F70D6 /* MyViewControllerViewController.m */,
|
107
|
+
0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */,
|
108
|
+
255BAFE91790223300DE7158 /* GestureTestViewController.h */,
|
109
|
+
255BAFEA1790223300DE7158 /* GestureTestViewController.m */,
|
110
|
+
255BAFEB1790223300DE7158 /* GestureTestViewController.xib */,
|
111
|
+
);
|
112
|
+
name = TestApp;
|
113
|
+
path = "Test App 2";
|
114
|
+
sourceTree = "<group>";
|
115
|
+
};
|
116
|
+
3647AE1915CA0082006F70D6 /* Supporting Files */ = {
|
117
|
+
isa = PBXGroup;
|
118
|
+
children = (
|
119
|
+
3647AE1A15CA0082006F70D6 /* TestApp-Info.plist */,
|
120
|
+
ABB96E8C192ECF150022BE43 /* Localizable.strings */,
|
121
|
+
3647AE1B15CA0082006F70D6 /* InfoPlist.strings */,
|
122
|
+
3647AE1E15CA0082006F70D6 /* main.m */,
|
123
|
+
3647AE2015CA0082006F70D6 /* TestApp-Prefix.pch */,
|
124
|
+
);
|
125
|
+
name = "Supporting Files";
|
126
|
+
sourceTree = "<group>";
|
127
|
+
};
|
128
|
+
/* End PBXGroup section */
|
129
|
+
|
130
|
+
/* Begin PBXNativeTarget section */
|
131
|
+
3647AE0D15CA0082006F70D6 /* TestApp */ = {
|
132
|
+
isa = PBXNativeTarget;
|
133
|
+
buildConfigurationList = 3647AE2615CA0082006F70D6 /* Build configuration list for PBXNativeTarget "TestApp" */;
|
134
|
+
buildPhases = (
|
135
|
+
3647AE0A15CA0082006F70D6 /* Sources */,
|
136
|
+
3647AE0B15CA0082006F70D6 /* Frameworks */,
|
137
|
+
3647AE0C15CA0082006F70D6 /* Resources */,
|
138
|
+
);
|
139
|
+
buildRules = (
|
140
|
+
);
|
141
|
+
dependencies = (
|
142
|
+
);
|
143
|
+
name = TestApp;
|
144
|
+
productName = "Test App 2";
|
145
|
+
productReference = 3647AE0E15CA0082006F70D6 /* TestApp.app */;
|
146
|
+
productType = "com.apple.product-type.application";
|
147
|
+
};
|
148
|
+
/* End PBXNativeTarget section */
|
149
|
+
|
150
|
+
/* Begin PBXProject section */
|
151
|
+
3647AE0515CA0082006F70D6 /* Project object */ = {
|
152
|
+
isa = PBXProject;
|
153
|
+
attributes = {
|
154
|
+
CLASSPREFIX = TA2;
|
155
|
+
LastUpgradeCheck = 0460;
|
156
|
+
};
|
157
|
+
buildConfigurationList = 3647AE0815CA0082006F70D6 /* Build configuration list for PBXProject "TestApp" */;
|
158
|
+
compatibilityVersion = "Xcode 3.2";
|
159
|
+
developmentRegion = English;
|
160
|
+
hasScannedForEncodings = 0;
|
161
|
+
knownRegions = (
|
162
|
+
en,
|
163
|
+
);
|
164
|
+
mainGroup = 3647AE0315CA0082006F70D6;
|
165
|
+
productRefGroup = 3647AE0F15CA0082006F70D6 /* Products */;
|
166
|
+
projectDirPath = "";
|
167
|
+
projectRoot = "";
|
168
|
+
targets = (
|
169
|
+
3647AE0D15CA0082006F70D6 /* TestApp */,
|
170
|
+
);
|
171
|
+
};
|
172
|
+
/* End PBXProject section */
|
173
|
+
|
174
|
+
/* Begin PBXResourcesBuildPhase section */
|
175
|
+
3647AE0C15CA0082006F70D6 /* Resources */ = {
|
176
|
+
isa = PBXResourcesBuildPhase;
|
177
|
+
buildActionMask = 2147483647;
|
178
|
+
files = (
|
179
|
+
ABB96E8E192ECF150022BE43 /* Localizable.strings in Resources */,
|
180
|
+
3647AE1D15CA0082006F70D6 /* InfoPlist.strings in Resources */,
|
181
|
+
0FD861CB19A2933400F753B7 /* MyViewControllerViewController.xib in Resources */,
|
182
|
+
36FEEFEE1656DD6000100C04 /* Default-568h@2x.png in Resources */,
|
183
|
+
255BAFED1790223300DE7158 /* GestureTestViewController.xib in Resources */,
|
184
|
+
);
|
185
|
+
runOnlyForDeploymentPostprocessing = 0;
|
186
|
+
};
|
187
|
+
/* End PBXResourcesBuildPhase section */
|
188
|
+
|
189
|
+
/* Begin PBXSourcesBuildPhase section */
|
190
|
+
3647AE0A15CA0082006F70D6 /* Sources */ = {
|
191
|
+
isa = PBXSourcesBuildPhase;
|
192
|
+
buildActionMask = 2147483647;
|
193
|
+
files = (
|
194
|
+
3647AE1F15CA0082006F70D6 /* main.m in Sources */,
|
195
|
+
3647AE2315CA0082006F70D6 /* TA2AppDelegate.m in Sources */,
|
196
|
+
3647AE2C15CA00D5006F70D6 /* MyViewControllerViewController.m in Sources */,
|
197
|
+
255BAFEC1790223300DE7158 /* GestureTestViewController.m in Sources */,
|
198
|
+
);
|
199
|
+
runOnlyForDeploymentPostprocessing = 0;
|
200
|
+
};
|
201
|
+
/* End PBXSourcesBuildPhase section */
|
202
|
+
|
203
|
+
/* Begin PBXVariantGroup section */
|
204
|
+
0FD861CD19A2933400F753B7 /* MyViewControllerViewController.xib */ = {
|
205
|
+
isa = PBXVariantGroup;
|
206
|
+
children = (
|
207
|
+
0FD861CC19A2933400F753B7 /* en */,
|
208
|
+
);
|
209
|
+
name = MyViewControllerViewController.xib;
|
210
|
+
sourceTree = "<group>";
|
211
|
+
};
|
212
|
+
3647AE1B15CA0082006F70D6 /* InfoPlist.strings */ = {
|
213
|
+
isa = PBXVariantGroup;
|
214
|
+
children = (
|
215
|
+
3647AE1C15CA0082006F70D6 /* en */,
|
216
|
+
);
|
217
|
+
name = InfoPlist.strings;
|
218
|
+
sourceTree = "<group>";
|
219
|
+
};
|
220
|
+
ABB96E8C192ECF150022BE43 /* Localizable.strings */ = {
|
221
|
+
isa = PBXVariantGroup;
|
222
|
+
children = (
|
223
|
+
ABB96E8D192ECF150022BE43 /* en */,
|
224
|
+
);
|
225
|
+
name = Localizable.strings;
|
226
|
+
sourceTree = "<group>";
|
227
|
+
};
|
228
|
+
/* End PBXVariantGroup section */
|
229
|
+
|
230
|
+
/* Begin XCBuildConfiguration section */
|
231
|
+
3647AE2415CA0082006F70D6 /* Debug */ = {
|
232
|
+
isa = XCBuildConfiguration;
|
233
|
+
buildSettings = {
|
234
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
235
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
236
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
237
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
238
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
239
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
240
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
241
|
+
COPY_PHASE_STRIP = NO;
|
242
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
243
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
244
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
245
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
246
|
+
"DEBUG=1",
|
247
|
+
"$(inherited)",
|
248
|
+
);
|
249
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
250
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
251
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
252
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
253
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
254
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
255
|
+
SDKROOT = iphoneos;
|
256
|
+
};
|
257
|
+
name = Debug;
|
258
|
+
};
|
259
|
+
3647AE2515CA0082006F70D6 /* Release */ = {
|
260
|
+
isa = XCBuildConfiguration;
|
261
|
+
buildSettings = {
|
262
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
263
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
264
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
265
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
266
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
267
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
268
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
269
|
+
COPY_PHASE_STRIP = NO;
|
270
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
271
|
+
GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1";
|
272
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
273
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
274
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
275
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
276
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
277
|
+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
278
|
+
SDKROOT = iphoneos;
|
279
|
+
VALIDATE_PRODUCT = YES;
|
280
|
+
};
|
281
|
+
name = Release;
|
282
|
+
};
|
283
|
+
3647AE2715CA0082006F70D6 /* Debug */ = {
|
284
|
+
isa = XCBuildConfiguration;
|
285
|
+
buildSettings = {
|
286
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
287
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
288
|
+
GCC_PREFIX_HEADER = "Test App 2/TestApp-Prefix.pch";
|
289
|
+
INFOPLIST_FILE = "Test App 2/TestApp-Info.plist";
|
290
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
291
|
+
PRODUCT_NAME = TestApp;
|
292
|
+
PROVISIONING_PROFILE = "";
|
293
|
+
WRAPPER_EXTENSION = app;
|
294
|
+
};
|
295
|
+
name = Debug;
|
296
|
+
};
|
297
|
+
3647AE2815CA0082006F70D6 /* Release */ = {
|
298
|
+
isa = XCBuildConfiguration;
|
299
|
+
buildSettings = {
|
300
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
301
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
302
|
+
GCC_PREFIX_HEADER = "Test App 2/TestApp-Prefix.pch";
|
303
|
+
INFOPLIST_FILE = "Test App 2/TestApp-Info.plist";
|
304
|
+
INSTALL_PATH = "${LOCAL_APPS_DIR}";
|
305
|
+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
|
306
|
+
PRODUCT_NAME = TestApp;
|
307
|
+
PROVISIONING_PROFILE = "";
|
308
|
+
WRAPPER_EXTENSION = app;
|
309
|
+
};
|
310
|
+
name = Release;
|
311
|
+
};
|
312
|
+
/* End XCBuildConfiguration section */
|
313
|
+
|
314
|
+
/* Begin XCConfigurationList section */
|
315
|
+
3647AE0815CA0082006F70D6 /* Build configuration list for PBXProject "TestApp" */ = {
|
316
|
+
isa = XCConfigurationList;
|
317
|
+
buildConfigurations = (
|
318
|
+
3647AE2415CA0082006F70D6 /* Debug */,
|
319
|
+
3647AE2515CA0082006F70D6 /* Release */,
|
320
|
+
);
|
321
|
+
defaultConfigurationIsVisible = 0;
|
322
|
+
defaultConfigurationName = Release;
|
323
|
+
};
|
324
|
+
3647AE2615CA0082006F70D6 /* Build configuration list for PBXNativeTarget "TestApp" */ = {
|
325
|
+
isa = XCConfigurationList;
|
326
|
+
buildConfigurations = (
|
327
|
+
3647AE2715CA0082006F70D6 /* Debug */,
|
328
|
+
3647AE2815CA0082006F70D6 /* Release */,
|
329
|
+
);
|
330
|
+
defaultConfigurationIsVisible = 0;
|
331
|
+
defaultConfigurationName = Release;
|
332
|
+
};
|
333
|
+
/* End XCConfigurationList section */
|
334
|
+
};
|
335
|
+
rootObject = 3647AE0515CA0082006F70D6 /* Project object */;
|
336
|
+
}
|