cocoapods-pod-sign 0.0.1 → 1.1.2

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.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +63 -0
  3. data/README.md +22 -2
  4. data/example/podSign/Gemfile +8 -0
  5. data/example/podSign/Gemfile.lock +102 -0
  6. data/example/podSign/Podfile +20 -0
  7. data/example/podSign/bundleSign/.gitignore +36 -0
  8. data/example/podSign/bundleSign/.travis.yml +14 -0
  9. data/example/podSign/bundleSign/Example/Podfile +6 -0
  10. data/example/podSign/bundleSign/Example/Pods/Local Podspecs/bundleSign.podspec.json +22 -0
  11. data/example/podSign/bundleSign/Example/Tests/Tests-Info.plist +22 -0
  12. data/example/podSign/bundleSign/Example/Tests/Tests-Prefix.pch +7 -0
  13. data/example/podSign/bundleSign/Example/Tests/Tests.m +35 -0
  14. data/example/podSign/bundleSign/Example/Tests/en.lproj/InfoPlist.strings +2 -0
  15. data/example/podSign/bundleSign/Example/bundleSign.xcodeproj/project.pbxproj +395 -0
  16. data/example/podSign/bundleSign/Example/bundleSign.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  17. data/example/podSign/bundleSign/Example/bundleSign.xcodeproj/xcshareddata/xcschemes/bundleSign-Example.xcscheme +101 -0
  18. data/example/podSign/bundleSign/LICENSE +19 -0
  19. data/example/podSign/bundleSign/README.md +29 -0
  20. data/example/podSign/bundleSign/_Pods.xcodeproj +1 -0
  21. data/example/podSign/bundleSign/bundleSign/Assets/.gitkeep +0 -0
  22. data/example/podSign/bundleSign/bundleSign/Assets/screenshot-20220817-205345.png +0 -0
  23. data/example/podSign/bundleSign/bundleSign/Classes/.gitkeep +0 -0
  24. data/example/podSign/bundleSign/bundleSign/Classes/ReplaceMe.m +0 -0
  25. data/example/podSign/bundleSign/bundleSign.podspec +42 -0
  26. data/example/podSign/podSign/AppDelegate.h +14 -0
  27. data/example/podSign/podSign/AppDelegate.m +40 -0
  28. data/example/podSign/podSign/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  29. data/example/podSign/podSign/Assets.xcassets/AppIcon.appiconset/Contents.json +93 -0
  30. data/example/podSign/podSign/Assets.xcassets/Contents.json +6 -0
  31. data/example/podSign/podSign/Base.lproj/LaunchScreen.storyboard +25 -0
  32. data/example/podSign/podSign/Base.lproj/Main.storyboard +24 -0
  33. data/example/podSign/podSign/Info.plist +25 -0
  34. data/example/podSign/podSign/SceneDelegate.h +15 -0
  35. data/example/podSign/podSign/SceneDelegate.m +57 -0
  36. data/example/podSign/podSign/ViewController.h +14 -0
  37. data/example/podSign/podSign/ViewController.m +22 -0
  38. data/example/podSign/podSign/main.m +18 -0
  39. data/example/podSign/podSign.xcodeproj/project.pbxproj +528 -0
  40. data/example/podSign/podSign.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  41. data/example/podSign/podSign.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  42. data/example/podSign/podSign.xcodeproj/project.xcworkspace/xcuserdata/liuxiaoliang01.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  43. data/example/podSign/podSign.xcodeproj/xcuserdata/liuxiaoliang01.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  44. data/example/podSign/podSign.xcworkspace/contents.xcworkspacedata +10 -0
  45. data/example/podSign/podSign.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  46. data/example/podSign/podSign.xcworkspace/xcuserdata/liuxiaoliang01.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  47. data/lib/cocoapods-pod-sign/gem_version.rb +1 -1
  48. data/lib/cocoapods-pod-sign/pod_installer.rb +35 -21
  49. data/lib/cocoapods-pod-sign/podfile_dsl.rb +5 -5
  50. metadata +45 -2
@@ -0,0 +1,395 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
11
+ 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
12
+ 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
13
+ 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
14
+ 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
15
+ 6003F59E195388D20070C39A /* WOAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* WOAppDelegate.m */; };
16
+ 6003F5A7195388D20070C39A /* WOViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* WOViewController.m */; };
17
+ 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
18
+ 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
19
+ 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
20
+ 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
21
+ 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
22
+ 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
23
+ 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
24
+ 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
25
+ /* End PBXBuildFile section */
26
+
27
+ /* Begin PBXFileReference section */
28
+ 477D29B7AD6C89EE9A30FF67 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
29
+ 4AD000E700F252B88C85E5DF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
30
+ 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
31
+ 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
32
+ 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
33
+ 6003F595195388D20070C39A /* bundleSign-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "bundleSign-Info.plist"; sourceTree = "<group>"; };
34
+ 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
35
+ 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
36
+ 6003F59B195388D20070C39A /* bundleSign-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "bundleSign-Prefix.pch"; sourceTree = "<group>"; };
37
+ 6003F59D195388D20070C39A /* WOAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WOAppDelegate.m; sourceTree = "<group>"; };
38
+ 6003F5A6195388D20070C39A /* WOViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WOViewController.m; sourceTree = "<group>"; };
39
+ 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
40
+ 6003F5AE195388D20070C39A /* bundleSign_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = bundleSign_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
42
+ 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
43
+ 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
44
+ 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
45
+ 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
46
+ 63B1BCC44052ABEACC9641CC /* bundleSign.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = bundleSign.podspec; path = ../bundleSign.podspec; sourceTree = "<group>"; };
47
+ 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
48
+ 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
49
+ /* End PBXFileReference section */
50
+
51
+ /* Begin PBXFrameworksBuildPhase section */
52
+ 6003F5AB195388D20070C39A /* Frameworks */ = {
53
+ isa = PBXFrameworksBuildPhase;
54
+ buildActionMask = 2147483647;
55
+ files = (
56
+ 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
57
+ 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
58
+ 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
59
+ );
60
+ runOnlyForDeploymentPostprocessing = 0;
61
+ };
62
+ /* End PBXFrameworksBuildPhase section */
63
+
64
+ /* Begin PBXGroup section */
65
+ 6003F581195388D10070C39A = {
66
+ isa = PBXGroup;
67
+ children = (
68
+ 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
69
+ 6003F5B5195388D20070C39A /* Tests */,
70
+ 6003F58C195388D20070C39A /* Frameworks */,
71
+ 6003F58B195388D20070C39A /* Products */,
72
+ );
73
+ sourceTree = "<group>";
74
+ };
75
+ 6003F58B195388D20070C39A /* Products */ = {
76
+ isa = PBXGroup;
77
+ children = (
78
+ 6003F5AE195388D20070C39A /* bundleSign_Tests.xctest */,
79
+ );
80
+ name = Products;
81
+ sourceTree = "<group>";
82
+ };
83
+ 6003F58C195388D20070C39A /* Frameworks */ = {
84
+ isa = PBXGroup;
85
+ children = (
86
+ 6003F58D195388D20070C39A /* Foundation.framework */,
87
+ 6003F58F195388D20070C39A /* CoreGraphics.framework */,
88
+ 6003F591195388D20070C39A /* UIKit.framework */,
89
+ 6003F5AF195388D20070C39A /* XCTest.framework */,
90
+ );
91
+ name = Frameworks;
92
+ sourceTree = "<group>";
93
+ };
94
+ 6003F5B5195388D20070C39A /* Tests */ = {
95
+ isa = PBXGroup;
96
+ children = (
97
+ 6003F5BB195388D20070C39A /* Tests.m */,
98
+ 6003F5B6195388D20070C39A /* Supporting Files */,
99
+ );
100
+ path = Tests;
101
+ sourceTree = "<group>";
102
+ };
103
+ 6003F5B6195388D20070C39A /* Supporting Files */ = {
104
+ isa = PBXGroup;
105
+ children = (
106
+ 6003F5B7195388D20070C39A /* Tests-Info.plist */,
107
+ 6003F5B8195388D20070C39A /* InfoPlist.strings */,
108
+ 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
109
+ );
110
+ name = "Supporting Files";
111
+ sourceTree = "<group>";
112
+ };
113
+ 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
114
+ isa = PBXGroup;
115
+ children = (
116
+ 63B1BCC44052ABEACC9641CC /* bundleSign.podspec */,
117
+ 477D29B7AD6C89EE9A30FF67 /* README.md */,
118
+ 4AD000E700F252B88C85E5DF /* LICENSE */,
119
+ );
120
+ name = "Podspec Metadata";
121
+ sourceTree = "<group>";
122
+ };
123
+ /* End PBXGroup section */
124
+
125
+ /* Begin PBXNativeTarget section */
126
+ 6003F5AD195388D20070C39A /* bundleSign_Tests */ = {
127
+ isa = PBXNativeTarget;
128
+ buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "bundleSign_Tests" */;
129
+ buildPhases = (
130
+ 6003F5AA195388D20070C39A /* Sources */,
131
+ 6003F5AB195388D20070C39A /* Frameworks */,
132
+ 6003F5AC195388D20070C39A /* Resources */,
133
+ );
134
+ buildRules = (
135
+ );
136
+ dependencies = (
137
+ );
138
+ name = bundleSign_Tests;
139
+ productName = bundleSignTests;
140
+ productReference = 6003F5AE195388D20070C39A /* bundleSign_Tests.xctest */;
141
+ productType = "com.apple.product-type.bundle.unit-test";
142
+ };
143
+ /* End PBXNativeTarget section */
144
+
145
+ /* Begin PBXProject section */
146
+ 6003F582195388D10070C39A /* Project object */ = {
147
+ isa = PBXProject;
148
+ attributes = {
149
+ CLASSPREFIX = WO;
150
+ LastUpgradeCheck = 0720;
151
+ ORGANIZATIONNAME = liuxiaoliang01;
152
+ TargetAttributes = {
153
+ 6003F5AD195388D20070C39A = {
154
+ TestTargetID = 6003F589195388D20070C39A;
155
+ };
156
+ };
157
+ };
158
+ buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "PROJECT" */;
159
+ compatibilityVersion = "Xcode 3.2";
160
+ developmentRegion = English;
161
+ hasScannedForEncodings = 0;
162
+ knownRegions = (
163
+ en,
164
+ Base,
165
+ );
166
+ mainGroup = 6003F581195388D10070C39A;
167
+ productRefGroup = 6003F58B195388D20070C39A /* Products */;
168
+ projectDirPath = "";
169
+ projectRoot = "";
170
+ targets = (
171
+ 6003F5AD195388D20070C39A /* bundleSign_Tests */,
172
+ );
173
+ };
174
+ /* End PBXProject section */
175
+
176
+ /* Begin PBXResourcesBuildPhase section */
177
+ 6003F5AC195388D20070C39A /* Resources */ = {
178
+ isa = PBXResourcesBuildPhase;
179
+ buildActionMask = 2147483647;
180
+ files = (
181
+ 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
182
+ );
183
+ runOnlyForDeploymentPostprocessing = 0;
184
+ };
185
+ /* End PBXResourcesBuildPhase section */
186
+
187
+ /* Begin PBXSourcesBuildPhase section */
188
+ 6003F5AA195388D20070C39A /* Sources */ = {
189
+ isa = PBXSourcesBuildPhase;
190
+ buildActionMask = 2147483647;
191
+ files = (
192
+ 6003F5BC195388D20070C39A /* Tests.m in Sources */,
193
+ );
194
+ runOnlyForDeploymentPostprocessing = 0;
195
+ };
196
+ /* End PBXSourcesBuildPhase section */
197
+
198
+ /* Begin PBXVariantGroup section */
199
+ 6003F596195388D20070C39A /* InfoPlist.strings */ = {
200
+ isa = PBXVariantGroup;
201
+ children = (
202
+ 6003F597195388D20070C39A /* en */,
203
+ );
204
+ name = InfoPlist.strings;
205
+ sourceTree = "<group>";
206
+ };
207
+ 6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
208
+ isa = PBXVariantGroup;
209
+ children = (
210
+ 6003F5B9195388D20070C39A /* en */,
211
+ );
212
+ name = InfoPlist.strings;
213
+ sourceTree = "<group>";
214
+ };
215
+ 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = {
216
+ isa = PBXVariantGroup;
217
+ children = (
218
+ 71719F9E1E33DC2100824A3D /* Base */,
219
+ );
220
+ name = LaunchScreen.storyboard;
221
+ sourceTree = "<group>";
222
+ };
223
+ /* End PBXVariantGroup section */
224
+
225
+ /* Begin XCBuildConfiguration section */
226
+ 6003F5BD195388D20070C39A /* Debug */ = {
227
+ isa = XCBuildConfiguration;
228
+ buildSettings = {
229
+ ALWAYS_SEARCH_USER_PATHS = NO;
230
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
231
+ CLANG_CXX_LIBRARY = "libc++";
232
+ CLANG_ENABLE_MODULES = YES;
233
+ CLANG_ENABLE_OBJC_ARC = YES;
234
+ CLANG_WARN_BOOL_CONVERSION = YES;
235
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
236
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
237
+ CLANG_WARN_EMPTY_BODY = YES;
238
+ CLANG_WARN_ENUM_CONVERSION = YES;
239
+ CLANG_WARN_INT_CONVERSION = YES;
240
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
241
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
242
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
243
+ COPY_PHASE_STRIP = NO;
244
+ ENABLE_TESTABILITY = YES;
245
+ GCC_C_LANGUAGE_STANDARD = gnu99;
246
+ GCC_DYNAMIC_NO_PIC = NO;
247
+ GCC_OPTIMIZATION_LEVEL = 0;
248
+ GCC_PREPROCESSOR_DEFINITIONS = (
249
+ "DEBUG=1",
250
+ "$(inherited)",
251
+ );
252
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
253
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
254
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
255
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
256
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
257
+ GCC_WARN_UNUSED_FUNCTION = YES;
258
+ GCC_WARN_UNUSED_VARIABLE = YES;
259
+ IPHONEOS_DEPLOYMENT_TARGET = 9.3;
260
+ ONLY_ACTIVE_ARCH = YES;
261
+ SDKROOT = iphoneos;
262
+ TARGETED_DEVICE_FAMILY = "1,2";
263
+ };
264
+ name = Debug;
265
+ };
266
+ 6003F5BE195388D20070C39A /* Release */ = {
267
+ isa = XCBuildConfiguration;
268
+ buildSettings = {
269
+ ALWAYS_SEARCH_USER_PATHS = NO;
270
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
271
+ CLANG_CXX_LIBRARY = "libc++";
272
+ CLANG_ENABLE_MODULES = YES;
273
+ CLANG_ENABLE_OBJC_ARC = YES;
274
+ CLANG_WARN_BOOL_CONVERSION = YES;
275
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
276
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
277
+ CLANG_WARN_EMPTY_BODY = YES;
278
+ CLANG_WARN_ENUM_CONVERSION = YES;
279
+ CLANG_WARN_INT_CONVERSION = YES;
280
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
281
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
282
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
283
+ COPY_PHASE_STRIP = YES;
284
+ ENABLE_NS_ASSERTIONS = NO;
285
+ GCC_C_LANGUAGE_STANDARD = gnu99;
286
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
287
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
288
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
289
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
290
+ GCC_WARN_UNUSED_FUNCTION = YES;
291
+ GCC_WARN_UNUSED_VARIABLE = YES;
292
+ IPHONEOS_DEPLOYMENT_TARGET = 9.3;
293
+ SDKROOT = iphoneos;
294
+ TARGETED_DEVICE_FAMILY = "1,2";
295
+ VALIDATE_PRODUCT = YES;
296
+ };
297
+ name = Release;
298
+ };
299
+ 6003F5C0195388D20070C39A /* Debug */ = {
300
+ isa = XCBuildConfiguration;
301
+ buildSettings = {
302
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
303
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
304
+ GCC_PREFIX_HEADER = "bundleSign/bundleSign-Prefix.pch";
305
+ INFOPLIST_FILE = "bundleSign/bundleSign-Info.plist";
306
+ MODULE_NAME = ExampleApp;
307
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
308
+ PRODUCT_NAME = "$(TARGET_NAME)";
309
+ SWIFT_VERSION = 4.0;
310
+ WRAPPER_EXTENSION = app;
311
+ };
312
+ name = Debug;
313
+ };
314
+ 6003F5C1195388D20070C39A /* Release */ = {
315
+ isa = XCBuildConfiguration;
316
+ buildSettings = {
317
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
318
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
319
+ GCC_PREFIX_HEADER = "bundleSign/bundleSign-Prefix.pch";
320
+ INFOPLIST_FILE = "bundleSign/bundleSign-Info.plist";
321
+ MODULE_NAME = ExampleApp;
322
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
323
+ PRODUCT_NAME = "$(TARGET_NAME)";
324
+ SWIFT_VERSION = 4.0;
325
+ WRAPPER_EXTENSION = app;
326
+ };
327
+ name = Release;
328
+ };
329
+ 6003F5C3195388D20070C39A /* Debug */ = {
330
+ isa = XCBuildConfiguration;
331
+ buildSettings = {
332
+ FRAMEWORK_SEARCH_PATHS = (
333
+ "$(PLATFORM_DIR)/Developer/Library/Frameworks",
334
+ "$(inherited)",
335
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
336
+ );
337
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
338
+ GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
339
+ GCC_PREPROCESSOR_DEFINITIONS = (
340
+ "DEBUG=1",
341
+ "$(inherited)",
342
+ );
343
+ INFOPLIST_FILE = "Tests/Tests-Info.plist";
344
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
345
+ PRODUCT_NAME = "$(TARGET_NAME)";
346
+ SWIFT_VERSION = 4.0;
347
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/bundleSign_Example.app/bundleSign_Example";
348
+ WRAPPER_EXTENSION = xctest;
349
+ };
350
+ name = Debug;
351
+ };
352
+ 6003F5C4195388D20070C39A /* Release */ = {
353
+ isa = XCBuildConfiguration;
354
+ buildSettings = {
355
+ FRAMEWORK_SEARCH_PATHS = (
356
+ "$(PLATFORM_DIR)/Developer/Library/Frameworks",
357
+ "$(inherited)",
358
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
359
+ );
360
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
361
+ GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
362
+ INFOPLIST_FILE = "Tests/Tests-Info.plist";
363
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
364
+ PRODUCT_NAME = "$(TARGET_NAME)";
365
+ SWIFT_VERSION = 4.0;
366
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/bundleSign_Example.app/bundleSign_Example";
367
+ WRAPPER_EXTENSION = xctest;
368
+ };
369
+ name = Release;
370
+ };
371
+ /* End XCBuildConfiguration section */
372
+
373
+ /* Begin XCConfigurationList section */
374
+ 6003F585195388D10070C39A /* Build configuration list for PBXProject "PROJECT" */ = {
375
+ isa = XCConfigurationList;
376
+ buildConfigurations = (
377
+ 6003F5BD195388D20070C39A /* Debug */,
378
+ 6003F5BE195388D20070C39A /* Release */,
379
+ );
380
+ defaultConfigurationIsVisible = 0;
381
+ defaultConfigurationName = Release;
382
+ };
383
+ 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "bundleSign_Tests" */ = {
384
+ isa = XCConfigurationList;
385
+ buildConfigurations = (
386
+ 6003F5C3195388D20070C39A /* Debug */,
387
+ 6003F5C4195388D20070C39A /* Release */,
388
+ );
389
+ defaultConfigurationIsVisible = 0;
390
+ defaultConfigurationName = Release;
391
+ };
392
+ /* End XCConfigurationList section */
393
+ };
394
+ rootObject = 6003F582195388D10070C39A /* Project object */;
395
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:bundleSign.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,101 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0720"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "6003F589195388D20070C39A"
18
+ BuildableName = "bundleSign_Example.app"
19
+ BlueprintName = "bundleSign_Example"
20
+ ReferencedContainer = "container:bundleSign.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ <TestableReference
32
+ skipped = "NO">
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "6003F5AD195388D20070C39A"
36
+ BuildableName = "bundleSign_Tests.xctest"
37
+ BlueprintName = "bundleSign_Tests"
38
+ ReferencedContainer = "container:bundleSign.xcodeproj">
39
+ </BuildableReference>
40
+ </TestableReference>
41
+ </Testables>
42
+ <MacroExpansion>
43
+ <BuildableReference
44
+ BuildableIdentifier = "primary"
45
+ BlueprintIdentifier = "6003F589195388D20070C39A"
46
+ BuildableName = "bundleSign_Example.app"
47
+ BlueprintName = "bundleSign_Example"
48
+ ReferencedContainer = "container:bundleSign.xcodeproj">
49
+ </BuildableReference>
50
+ </MacroExpansion>
51
+ <AdditionalOptions>
52
+ </AdditionalOptions>
53
+ </TestAction>
54
+ <LaunchAction
55
+ buildConfiguration = "Debug"
56
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
57
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
58
+ launchStyle = "0"
59
+ useCustomWorkingDirectory = "NO"
60
+ ignoresPersistentStateOnLaunch = "NO"
61
+ debugDocumentVersioning = "YES"
62
+ debugServiceExtension = "internal"
63
+ allowLocationSimulation = "YES">
64
+ <BuildableProductRunnable
65
+ runnableDebuggingMode = "0">
66
+ <BuildableReference
67
+ BuildableIdentifier = "primary"
68
+ BlueprintIdentifier = "6003F589195388D20070C39A"
69
+ BuildableName = "bundleSign_Example.app"
70
+ BlueprintName = "bundleSign_Example"
71
+ ReferencedContainer = "container:bundleSign.xcodeproj">
72
+ </BuildableReference>
73
+ </BuildableProductRunnable>
74
+ <AdditionalOptions>
75
+ </AdditionalOptions>
76
+ </LaunchAction>
77
+ <ProfileAction
78
+ buildConfiguration = "Release"
79
+ shouldUseLaunchSchemeArgsEnv = "YES"
80
+ savedToolIdentifier = ""
81
+ useCustomWorkingDirectory = "NO"
82
+ debugDocumentVersioning = "YES">
83
+ <BuildableProductRunnable
84
+ runnableDebuggingMode = "0">
85
+ <BuildableReference
86
+ BuildableIdentifier = "primary"
87
+ BlueprintIdentifier = "6003F589195388D20070C39A"
88
+ BuildableName = "bundleSign_Example.app"
89
+ BlueprintName = "bundleSign_Example"
90
+ ReferencedContainer = "container:bundleSign.xcodeproj">
91
+ </BuildableReference>
92
+ </BuildableProductRunnable>
93
+ </ProfileAction>
94
+ <AnalyzeAction
95
+ buildConfiguration = "Debug">
96
+ </AnalyzeAction>
97
+ <ArchiveAction
98
+ buildConfiguration = "Release"
99
+ revealArchiveInOrganizer = "YES">
100
+ </ArchiveAction>
101
+ </Scheme>
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2022 liuxiaoliang01 <liuxiaoliang.01@bytedance.com>
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.
@@ -0,0 +1,29 @@
1
+ # bundleSign
2
+
3
+ [![CI Status](https://img.shields.io/travis/liuxiaoliang01/bundleSign.svg?style=flat)](https://travis-ci.org/liuxiaoliang01/bundleSign)
4
+ [![Version](https://img.shields.io/cocoapods/v/bundleSign.svg?style=flat)](https://cocoapods.org/pods/bundleSign)
5
+ [![License](https://img.shields.io/cocoapods/l/bundleSign.svg?style=flat)](https://cocoapods.org/pods/bundleSign)
6
+ [![Platform](https://img.shields.io/cocoapods/p/bundleSign.svg?style=flat)](https://cocoapods.org/pods/bundleSign)
7
+
8
+ ## Example
9
+
10
+ To run the example project, clone the repo, and run `pod install` from the Example directory first.
11
+
12
+ ## Requirements
13
+
14
+ ## Installation
15
+
16
+ bundleSign is available through [CocoaPods](https://cocoapods.org). To install
17
+ it, simply add the following line to your Podfile:
18
+
19
+ ```ruby
20
+ pod 'bundleSign'
21
+ ```
22
+
23
+ ## Author
24
+
25
+ liuxiaoliang01, liuxiaoliang.01@bytedance.com
26
+
27
+ ## License
28
+
29
+ bundleSign is available under the MIT license. See the LICENSE file for more info.
@@ -0,0 +1 @@
1
+ Example/Pods/Pods.xcodeproj
@@ -0,0 +1,42 @@
1
+ #
2
+ # Be sure to run `pod lib lint bundleSign.podspec' to ensure this is a
3
+ # valid spec before submitting.
4
+ #
5
+ # Any lines starting with a # are optional, but their use is encouraged
6
+ # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
7
+ #
8
+
9
+ Pod::Spec.new do |s|
10
+ s.name = 'bundleSign'
11
+ s.version = '0.1.0'
12
+ s.summary = 'A short description of bundleSign.'
13
+
14
+ # This description is used to generate tags and improve search results.
15
+ # * Think: What does it do? Why did you write it? What is the focus?
16
+ # * Try to keep it short, snappy and to the point.
17
+ # * Write the description between the DESC delimiters below.
18
+ # * Finally, don't worry about the indent, CocoaPods strips it!
19
+
20
+ s.description = <<-DESC
21
+ TODO: Add long description of the pod here.
22
+ DESC
23
+
24
+ s.homepage = 'https://github.com/liuxiaoliang01/bundleSign'
25
+ # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
26
+ s.license = { :type => 'MIT', :file => 'LICENSE' }
27
+ s.author = { 'liuxiaoliang01' => 'liuxiaoliang.01@bytedance.com' }
28
+ s.source = { :git => 'https://github.com/liuxiaoliang01/bundleSign.git', :tag => s.version.to_s }
29
+ # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
30
+
31
+ s.ios.deployment_target = '10.0'
32
+
33
+ s.source_files = 'bundleSign/Classes/**/*'
34
+
35
+ s.resource_bundles = {
36
+ 'bundleSign' => ['bundleSign/Assets/*.png']
37
+ }
38
+
39
+ # s.public_header_files = 'Pod/Classes/**/*.h'
40
+ # s.frameworks = 'UIKit', 'MapKit'
41
+ # s.dependency 'AFNetworking', '~> 2.3'
42
+ end
@@ -0,0 +1,14 @@
1
+ //
2
+ // AppDelegate.h
3
+ // podSign
4
+ //
5
+ // Created by liuxiaoliang01 on 2022/8/17.
6
+ //
7
+
8
+ #import <UIKit/UIKit.h>
9
+
10
+ @interface AppDelegate : UIResponder <UIApplicationDelegate>
11
+
12
+
13
+ @end
14
+
@@ -0,0 +1,40 @@
1
+ //
2
+ // AppDelegate.m
3
+ // podSign
4
+ //
5
+ // Created by liuxiaoliang01 on 2022/8/17.
6
+ //
7
+
8
+ #import "AppDelegate.h"
9
+
10
+ @interface AppDelegate ()
11
+
12
+ @end
13
+
14
+ @implementation AppDelegate
15
+
16
+
17
+ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
18
+ // Override point for customization after application launch.
19
+ return YES;
20
+ }
21
+
22
+
23
+ #pragma mark - UISceneSession lifecycle
24
+
25
+
26
+ - (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options {
27
+ // Called when a new scene session is being created.
28
+ // Use this method to select a configuration to create the new scene with.
29
+ return [[UISceneConfiguration alloc] initWithName:@"Default Configuration" sessionRole:connectingSceneSession.role];
30
+ }
31
+
32
+
33
+ - (void)application:(UIApplication *)application didDiscardSceneSessions:(NSSet<UISceneSession *> *)sceneSessions {
34
+ // Called when the user discards a scene session.
35
+ // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
36
+ // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
37
+ }
38
+
39
+
40
+ @end