@stacksjs/browser-extension 0.70.113 → 0.70.115
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.
- package/README.md +45 -5
- package/dist/build.d.ts +2 -0
- package/dist/build.js +14 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1 -0
- package/dist/manifest.d.ts +8 -1
- package/dist/manifest.js +9 -3
- package/dist/package.js +1 -1
- package/dist/safari.d.ts +79 -0
- package/dist/safari.js +199 -0
- package/dist/types.d.ts +5 -1
- package/package.json +6 -4
- package/safari-template/README.md +63 -0
- package/safari-template/__APP_NAME__/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/safari-template/__APP_NAME__/Assets.xcassets/Contents.json +6 -0
- package/safari-template/__APP_NAME__/Assets.xcassets/ExtensionIcon.imageset/Contents.json +22 -0
- package/safari-template/__APP_NAME__/ContentView.swift +74 -0
- package/safari-template/__APP_NAME__/Info.plist +32 -0
- package/safari-template/__APP_NAME__/__APP_NAME__.entitlements +8 -0
- package/safari-template/__APP_NAME__/__APP_NAME__App.swift +15 -0
- package/safari-template/__APP_NAME__ Extension/Info.plist +31 -0
- package/safari-template/__APP_NAME__ Extension/Resources/.gitkeep +1 -0
- package/safari-template/__APP_NAME__ Extension/SafariWebExtensionHandler.swift +32 -0
- package/safari-template/__APP_NAME__ Extension/__APP_NAME___Extension.entitlements +8 -0
- package/safari-template/__APP_NAME__.xcodeproj/project.pbxproj +490 -0
- package/safari-template/__APP_NAME__.xcodeproj/xcshareddata/xcschemes/__APP_NAME__.xcscheme +102 -0
|
@@ -0,0 +1,490 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 56;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0C0000000000000000000010 /* __APP_NAME__App.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B0000000000000000000010 /* __APP_NAME__App.swift */; };
|
|
11
|
+
0C0000000000000000000011 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B0000000000000000000011 /* ContentView.swift */; };
|
|
12
|
+
0C0000000000000000000012 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0B0000000000000000000012 /* Assets.xcassets */; };
|
|
13
|
+
0C0000000000000000000020 /* SafariWebExtensionHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B0000000000000000000020 /* SafariWebExtensionHandler.swift */; };
|
|
14
|
+
0C0000000000000000000023 /* Resources in Resources */ = {isa = PBXBuildFile; fileRef = 0B0000000000000000000023 /* Resources */; };
|
|
15
|
+
0C0000000000000000000030 /* __APP_NAME__ Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 0B0000000000000000000002 /* __APP_NAME__ Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
|
16
|
+
/* End PBXBuildFile section */
|
|
17
|
+
|
|
18
|
+
/* Begin PBXContainerItemProxy section */
|
|
19
|
+
0F0000000000000000000001 /* PBXContainerItemProxy */ = {
|
|
20
|
+
isa = PBXContainerItemProxy;
|
|
21
|
+
containerPortal = 010000000000000000000001 /* Project object */;
|
|
22
|
+
proxyType = 1;
|
|
23
|
+
remoteGlobalIDString = 0E0000000000000000000002;
|
|
24
|
+
remoteInfo = "__APP_NAME__ Extension";
|
|
25
|
+
};
|
|
26
|
+
/* End PBXContainerItemProxy section */
|
|
27
|
+
|
|
28
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
29
|
+
0D0000000000000000000013 /* Embed App Extensions */ = {
|
|
30
|
+
isa = PBXCopyFilesBuildPhase;
|
|
31
|
+
buildActionMask = 2147483647;
|
|
32
|
+
dstPath = "";
|
|
33
|
+
dstSubfolderSpec = 13;
|
|
34
|
+
files = (
|
|
35
|
+
0C0000000000000000000030 /* __APP_NAME__ Extension.appex in Embed App Extensions */,
|
|
36
|
+
);
|
|
37
|
+
name = "Embed App Extensions";
|
|
38
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
39
|
+
};
|
|
40
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
41
|
+
|
|
42
|
+
/* Begin PBXFileReference section */
|
|
43
|
+
0B0000000000000000000001 /* __APP_NAME__.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = __APP_NAME__.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
44
|
+
0B0000000000000000000002 /* __APP_NAME__ Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "__APP_NAME__ Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
45
|
+
0B0000000000000000000010 /* __APP_NAME__App.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = __APP_NAME__App.swift; sourceTree = "<group>"; };
|
|
46
|
+
0B0000000000000000000011 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
|
|
47
|
+
0B0000000000000000000012 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
48
|
+
0B0000000000000000000013 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
49
|
+
0B0000000000000000000014 /* __APP_NAME__.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = __APP_NAME__.entitlements; sourceTree = "<group>"; };
|
|
50
|
+
0B0000000000000000000020 /* SafariWebExtensionHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SafariWebExtensionHandler.swift; sourceTree = "<group>"; };
|
|
51
|
+
0B0000000000000000000021 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
52
|
+
0B0000000000000000000022 /* __APP_NAME___Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = __APP_NAME___Extension.entitlements; sourceTree = "<group>"; };
|
|
53
|
+
0B0000000000000000000023 /* Resources */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Resources; sourceTree = "<group>"; };
|
|
54
|
+
/* End PBXFileReference section */
|
|
55
|
+
|
|
56
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
57
|
+
0D0000000000000000000011 /* Frameworks */ = {
|
|
58
|
+
isa = PBXFrameworksBuildPhase;
|
|
59
|
+
buildActionMask = 2147483647;
|
|
60
|
+
files = (
|
|
61
|
+
);
|
|
62
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
63
|
+
};
|
|
64
|
+
0D0000000000000000000021 /* Frameworks */ = {
|
|
65
|
+
isa = PBXFrameworksBuildPhase;
|
|
66
|
+
buildActionMask = 2147483647;
|
|
67
|
+
files = (
|
|
68
|
+
);
|
|
69
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
70
|
+
};
|
|
71
|
+
/* End PBXFrameworksBuildPhase section */
|
|
72
|
+
|
|
73
|
+
/* Begin PBXGroup section */
|
|
74
|
+
0A0000000000000000000001 = {
|
|
75
|
+
isa = PBXGroup;
|
|
76
|
+
children = (
|
|
77
|
+
0A0000000000000000000003 /* __APP_NAME__ */,
|
|
78
|
+
0A0000000000000000000004 /* __APP_NAME__ Extension */,
|
|
79
|
+
0A0000000000000000000002 /* Products */,
|
|
80
|
+
);
|
|
81
|
+
sourceTree = "<group>";
|
|
82
|
+
};
|
|
83
|
+
0A0000000000000000000002 /* Products */ = {
|
|
84
|
+
isa = PBXGroup;
|
|
85
|
+
children = (
|
|
86
|
+
0B0000000000000000000001 /* __APP_NAME__.app */,
|
|
87
|
+
0B0000000000000000000002 /* __APP_NAME__ Extension.appex */,
|
|
88
|
+
);
|
|
89
|
+
name = Products;
|
|
90
|
+
sourceTree = "<group>";
|
|
91
|
+
};
|
|
92
|
+
0A0000000000000000000003 /* __APP_NAME__ */ = {
|
|
93
|
+
isa = PBXGroup;
|
|
94
|
+
children = (
|
|
95
|
+
0B0000000000000000000010 /* __APP_NAME__App.swift */,
|
|
96
|
+
0B0000000000000000000011 /* ContentView.swift */,
|
|
97
|
+
0B0000000000000000000012 /* Assets.xcassets */,
|
|
98
|
+
0B0000000000000000000013 /* Info.plist */,
|
|
99
|
+
0B0000000000000000000014 /* __APP_NAME__.entitlements */,
|
|
100
|
+
);
|
|
101
|
+
path = __APP_NAME__;
|
|
102
|
+
sourceTree = "<group>";
|
|
103
|
+
};
|
|
104
|
+
0A0000000000000000000004 /* __APP_NAME__ Extension */ = {
|
|
105
|
+
isa = PBXGroup;
|
|
106
|
+
children = (
|
|
107
|
+
0B0000000000000000000020 /* SafariWebExtensionHandler.swift */,
|
|
108
|
+
0B0000000000000000000021 /* Info.plist */,
|
|
109
|
+
0B0000000000000000000022 /* __APP_NAME___Extension.entitlements */,
|
|
110
|
+
0B0000000000000000000023 /* Resources */,
|
|
111
|
+
);
|
|
112
|
+
path = "__APP_NAME__ Extension";
|
|
113
|
+
sourceTree = "<group>";
|
|
114
|
+
};
|
|
115
|
+
/* End PBXGroup section */
|
|
116
|
+
|
|
117
|
+
/* Begin PBXNativeTarget section */
|
|
118
|
+
0E0000000000000000000001 /* __APP_NAME__ */ = {
|
|
119
|
+
isa = PBXNativeTarget;
|
|
120
|
+
buildConfigurationList = 030000000000000000000011 /* Build configuration list for PBXNativeTarget "__APP_NAME__" */;
|
|
121
|
+
buildPhases = (
|
|
122
|
+
0D0000000000000000000010 /* Sources */,
|
|
123
|
+
0D0000000000000000000011 /* Frameworks */,
|
|
124
|
+
0D0000000000000000000012 /* Resources */,
|
|
125
|
+
0D0000000000000000000013 /* Embed App Extensions */,
|
|
126
|
+
);
|
|
127
|
+
buildRules = (
|
|
128
|
+
);
|
|
129
|
+
dependencies = (
|
|
130
|
+
0F0000000000000000000002 /* PBXTargetDependency */,
|
|
131
|
+
);
|
|
132
|
+
name = __APP_NAME__;
|
|
133
|
+
productName = __APP_NAME__;
|
|
134
|
+
productReference = 0B0000000000000000000001 /* __APP_NAME__.app */;
|
|
135
|
+
productType = "com.apple.product-type.application";
|
|
136
|
+
};
|
|
137
|
+
0E0000000000000000000002 /* __APP_NAME__ Extension */ = {
|
|
138
|
+
isa = PBXNativeTarget;
|
|
139
|
+
buildConfigurationList = 030000000000000000000021 /* Build configuration list for PBXNativeTarget "__APP_NAME__ Extension" */;
|
|
140
|
+
buildPhases = (
|
|
141
|
+
0D0000000000000000000020 /* Sources */,
|
|
142
|
+
0D0000000000000000000021 /* Frameworks */,
|
|
143
|
+
0D0000000000000000000022 /* Resources */,
|
|
144
|
+
);
|
|
145
|
+
buildRules = (
|
|
146
|
+
);
|
|
147
|
+
dependencies = (
|
|
148
|
+
);
|
|
149
|
+
name = "__APP_NAME__ Extension";
|
|
150
|
+
productName = "__APP_NAME__ Extension";
|
|
151
|
+
productReference = 0B0000000000000000000002 /* __APP_NAME__ Extension.appex */;
|
|
152
|
+
productType = "com.apple.product-type.app-extension";
|
|
153
|
+
};
|
|
154
|
+
/* End PBXNativeTarget section */
|
|
155
|
+
|
|
156
|
+
/* Begin PBXProject section */
|
|
157
|
+
010000000000000000000001 /* Project object */ = {
|
|
158
|
+
isa = PBXProject;
|
|
159
|
+
attributes = {
|
|
160
|
+
BuildIndependentTargetsInParallel = 1;
|
|
161
|
+
LastSwiftUpdateCheck = 1600;
|
|
162
|
+
LastUpgradeCheck = 1600;
|
|
163
|
+
TargetAttributes = {
|
|
164
|
+
0E0000000000000000000001 = {
|
|
165
|
+
CreatedOnToolsVersion = 16.0;
|
|
166
|
+
};
|
|
167
|
+
0E0000000000000000000002 = {
|
|
168
|
+
CreatedOnToolsVersion = 16.0;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
buildConfigurationList = 030000000000000000000001 /* Build configuration list for PBXProject "__APP_NAME__" */;
|
|
173
|
+
compatibilityVersion = "Xcode 14.0";
|
|
174
|
+
developmentRegion = en;
|
|
175
|
+
hasScannedForEncodings = 0;
|
|
176
|
+
knownRegions = (
|
|
177
|
+
en,
|
|
178
|
+
Base,
|
|
179
|
+
);
|
|
180
|
+
mainGroup = 0A0000000000000000000001;
|
|
181
|
+
productRefGroup = 0A0000000000000000000002 /* Products */;
|
|
182
|
+
projectDirPath = "";
|
|
183
|
+
projectRoot = "";
|
|
184
|
+
targets = (
|
|
185
|
+
0E0000000000000000000001 /* __APP_NAME__ */,
|
|
186
|
+
0E0000000000000000000002 /* __APP_NAME__ Extension */,
|
|
187
|
+
);
|
|
188
|
+
};
|
|
189
|
+
/* End PBXProject section */
|
|
190
|
+
|
|
191
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
192
|
+
0D0000000000000000000012 /* Resources */ = {
|
|
193
|
+
isa = PBXResourcesBuildPhase;
|
|
194
|
+
buildActionMask = 2147483647;
|
|
195
|
+
files = (
|
|
196
|
+
0C0000000000000000000012 /* Assets.xcassets in Resources */,
|
|
197
|
+
);
|
|
198
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
199
|
+
};
|
|
200
|
+
0D0000000000000000000022 /* Resources */ = {
|
|
201
|
+
isa = PBXResourcesBuildPhase;
|
|
202
|
+
buildActionMask = 2147483647;
|
|
203
|
+
files = (
|
|
204
|
+
0C0000000000000000000023 /* Resources in Resources */,
|
|
205
|
+
);
|
|
206
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
207
|
+
};
|
|
208
|
+
/* End PBXResourcesBuildPhase section */
|
|
209
|
+
|
|
210
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
211
|
+
0D0000000000000000000010 /* Sources */ = {
|
|
212
|
+
isa = PBXSourcesBuildPhase;
|
|
213
|
+
buildActionMask = 2147483647;
|
|
214
|
+
files = (
|
|
215
|
+
0C0000000000000000000010 /* __APP_NAME__App.swift in Sources */,
|
|
216
|
+
0C0000000000000000000011 /* ContentView.swift in Sources */,
|
|
217
|
+
);
|
|
218
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
219
|
+
};
|
|
220
|
+
0D0000000000000000000020 /* Sources */ = {
|
|
221
|
+
isa = PBXSourcesBuildPhase;
|
|
222
|
+
buildActionMask = 2147483647;
|
|
223
|
+
files = (
|
|
224
|
+
0C0000000000000000000020 /* SafariWebExtensionHandler.swift in Sources */,
|
|
225
|
+
);
|
|
226
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
227
|
+
};
|
|
228
|
+
/* End PBXSourcesBuildPhase section */
|
|
229
|
+
|
|
230
|
+
/* Begin PBXTargetDependency section */
|
|
231
|
+
0F0000000000000000000002 /* PBXTargetDependency */ = {
|
|
232
|
+
isa = PBXTargetDependency;
|
|
233
|
+
target = 0E0000000000000000000002 /* __APP_NAME__ Extension */;
|
|
234
|
+
targetProxy = 0F0000000000000000000001 /* PBXContainerItemProxy */;
|
|
235
|
+
};
|
|
236
|
+
/* End PBXTargetDependency section */
|
|
237
|
+
|
|
238
|
+
/* Begin XCBuildConfiguration section */
|
|
239
|
+
020000000000000000000001 /* Debug */ = {
|
|
240
|
+
isa = XCBuildConfiguration;
|
|
241
|
+
buildSettings = {
|
|
242
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
243
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
244
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
245
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
246
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
247
|
+
CLANG_ENABLE_MODULES = YES;
|
|
248
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
249
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
250
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
251
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
252
|
+
CLANG_WARN_COMMA = YES;
|
|
253
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
254
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
255
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
256
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
257
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
258
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
259
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
260
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
261
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
262
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
263
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
264
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
265
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
266
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
267
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
268
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
269
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
270
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
271
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
272
|
+
COPY_PHASE_STRIP = NO;
|
|
273
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
274
|
+
DEAD_CODE_STRIPPING = YES;
|
|
275
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
276
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
277
|
+
ENABLE_TESTABILITY = YES;
|
|
278
|
+
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
279
|
+
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
280
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
281
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
282
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
283
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
284
|
+
"DEBUG=1",
|
|
285
|
+
"$(inherited)",
|
|
286
|
+
);
|
|
287
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
288
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
289
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
290
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
291
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
292
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
293
|
+
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
|
294
|
+
MACOSX_DEPLOYMENT_TARGET = 14.0;
|
|
295
|
+
MARKETING_VERSION = __MARKETING_VERSION__;
|
|
296
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
297
|
+
MTL_FAST_MATH = YES;
|
|
298
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
299
|
+
SDKROOT = macosx;
|
|
300
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
|
|
301
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
302
|
+
SWIFT_VERSION = 5.0;
|
|
303
|
+
};
|
|
304
|
+
name = Debug;
|
|
305
|
+
};
|
|
306
|
+
020000000000000000000002 /* Release */ = {
|
|
307
|
+
isa = XCBuildConfiguration;
|
|
308
|
+
buildSettings = {
|
|
309
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
310
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
311
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
312
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
313
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
314
|
+
CLANG_ENABLE_MODULES = YES;
|
|
315
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
316
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
317
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
318
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
319
|
+
CLANG_WARN_COMMA = YES;
|
|
320
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
321
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
322
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
323
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
324
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
325
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
326
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
327
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
328
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
329
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
330
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
331
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
332
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
333
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
334
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
335
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
336
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
337
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
338
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
339
|
+
COPY_PHASE_STRIP = NO;
|
|
340
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
341
|
+
DEAD_CODE_STRIPPING = YES;
|
|
342
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
343
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
344
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
345
|
+
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
346
|
+
GCC_C_LANGUAGE_STANDARD = gnu17;
|
|
347
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
348
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
349
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
350
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
351
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
352
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
353
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
354
|
+
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
|
355
|
+
MACOSX_DEPLOYMENT_TARGET = 14.0;
|
|
356
|
+
MARKETING_VERSION = __MARKETING_VERSION__;
|
|
357
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
358
|
+
MTL_FAST_MATH = YES;
|
|
359
|
+
SDKROOT = macosx;
|
|
360
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
361
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
362
|
+
SWIFT_VERSION = 5.0;
|
|
363
|
+
VALIDATE_PRODUCT = YES;
|
|
364
|
+
};
|
|
365
|
+
name = Release;
|
|
366
|
+
};
|
|
367
|
+
020000000000000000000011 /* Debug */ = {
|
|
368
|
+
isa = XCBuildConfiguration;
|
|
369
|
+
buildSettings = {
|
|
370
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
371
|
+
CODE_SIGN_ENTITLEMENTS = __APP_NAME__/__APP_NAME__.entitlements;
|
|
372
|
+
CODE_SIGN_STYLE = Automatic;
|
|
373
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
374
|
+
DEVELOPMENT_TEAM = "__DEVELOPMENT_TEAM__";
|
|
375
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
376
|
+
GENERATE_INFOPLIST = NO;
|
|
377
|
+
INFOPLIST_FILE = __APP_NAME__/Info.plist;
|
|
378
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
379
|
+
"$(inherited)",
|
|
380
|
+
"@executable_path/../Frameworks",
|
|
381
|
+
);
|
|
382
|
+
PRODUCT_BUNDLE_IDENTIFIER = __BUNDLE_ID__;
|
|
383
|
+
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL;
|
|
384
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
385
|
+
SKIP_INSTALL = NO;
|
|
386
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
387
|
+
};
|
|
388
|
+
name = Debug;
|
|
389
|
+
};
|
|
390
|
+
020000000000000000000012 /* Release */ = {
|
|
391
|
+
isa = XCBuildConfiguration;
|
|
392
|
+
buildSettings = {
|
|
393
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
394
|
+
CODE_SIGN_ENTITLEMENTS = __APP_NAME__/__APP_NAME__.entitlements;
|
|
395
|
+
CODE_SIGN_STYLE = Automatic;
|
|
396
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
397
|
+
DEVELOPMENT_TEAM = "__DEVELOPMENT_TEAM__";
|
|
398
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
399
|
+
GENERATE_INFOPLIST = NO;
|
|
400
|
+
INFOPLIST_FILE = __APP_NAME__/Info.plist;
|
|
401
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
402
|
+
"$(inherited)",
|
|
403
|
+
"@executable_path/../Frameworks",
|
|
404
|
+
);
|
|
405
|
+
PRODUCT_BUNDLE_IDENTIFIER = __BUNDLE_ID__;
|
|
406
|
+
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL;
|
|
407
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
408
|
+
SKIP_INSTALL = NO;
|
|
409
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
410
|
+
};
|
|
411
|
+
name = Release;
|
|
412
|
+
};
|
|
413
|
+
020000000000000000000021 /* Debug */ = {
|
|
414
|
+
isa = XCBuildConfiguration;
|
|
415
|
+
buildSettings = {
|
|
416
|
+
CODE_SIGN_ENTITLEMENTS = "__APP_NAME__ Extension/__APP_NAME___Extension.entitlements";
|
|
417
|
+
CODE_SIGN_STYLE = Automatic;
|
|
418
|
+
DEVELOPMENT_TEAM = "__DEVELOPMENT_TEAM__";
|
|
419
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
420
|
+
GENERATE_INFOPLIST = NO;
|
|
421
|
+
INFOPLIST_FILE = "__APP_NAME__ Extension/Info.plist";
|
|
422
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
423
|
+
"$(inherited)",
|
|
424
|
+
"@executable_path/../Frameworks",
|
|
425
|
+
"@executable_path/../../../../Frameworks",
|
|
426
|
+
);
|
|
427
|
+
PRODUCT_BUNDLE_IDENTIFIER = __EXT_BUNDLE_ID__;
|
|
428
|
+
PRODUCT_BUNDLE_PACKAGE_TYPE = "XPC!";
|
|
429
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
430
|
+
SKIP_INSTALL = YES;
|
|
431
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
432
|
+
};
|
|
433
|
+
name = Debug;
|
|
434
|
+
};
|
|
435
|
+
020000000000000000000022 /* Release */ = {
|
|
436
|
+
isa = XCBuildConfiguration;
|
|
437
|
+
buildSettings = {
|
|
438
|
+
CODE_SIGN_ENTITLEMENTS = "__APP_NAME__ Extension/__APP_NAME___Extension.entitlements";
|
|
439
|
+
CODE_SIGN_STYLE = Automatic;
|
|
440
|
+
DEVELOPMENT_TEAM = "__DEVELOPMENT_TEAM__";
|
|
441
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
442
|
+
GENERATE_INFOPLIST = NO;
|
|
443
|
+
INFOPLIST_FILE = "__APP_NAME__ Extension/Info.plist";
|
|
444
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
445
|
+
"$(inherited)",
|
|
446
|
+
"@executable_path/../Frameworks",
|
|
447
|
+
"@executable_path/../../../../Frameworks",
|
|
448
|
+
);
|
|
449
|
+
PRODUCT_BUNDLE_IDENTIFIER = __EXT_BUNDLE_ID__;
|
|
450
|
+
PRODUCT_BUNDLE_PACKAGE_TYPE = "XPC!";
|
|
451
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
452
|
+
SKIP_INSTALL = YES;
|
|
453
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
454
|
+
};
|
|
455
|
+
name = Release;
|
|
456
|
+
};
|
|
457
|
+
/* End XCBuildConfiguration section */
|
|
458
|
+
|
|
459
|
+
/* Begin XCConfigurationList section */
|
|
460
|
+
030000000000000000000001 /* Build configuration list for PBXProject "__APP_NAME__" */ = {
|
|
461
|
+
isa = XCConfigurationList;
|
|
462
|
+
buildConfigurations = (
|
|
463
|
+
020000000000000000000001 /* Debug */,
|
|
464
|
+
020000000000000000000002 /* Release */,
|
|
465
|
+
);
|
|
466
|
+
defaultConfigurationIsVisible = 0;
|
|
467
|
+
defaultConfigurationName = Release;
|
|
468
|
+
};
|
|
469
|
+
030000000000000000000011 /* Build configuration list for PBXNativeTarget "__APP_NAME__" */ = {
|
|
470
|
+
isa = XCConfigurationList;
|
|
471
|
+
buildConfigurations = (
|
|
472
|
+
020000000000000000000011 /* Debug */,
|
|
473
|
+
020000000000000000000012 /* Release */,
|
|
474
|
+
);
|
|
475
|
+
defaultConfigurationIsVisible = 0;
|
|
476
|
+
defaultConfigurationName = Release;
|
|
477
|
+
};
|
|
478
|
+
030000000000000000000021 /* Build configuration list for PBXNativeTarget "__APP_NAME__ Extension" */ = {
|
|
479
|
+
isa = XCConfigurationList;
|
|
480
|
+
buildConfigurations = (
|
|
481
|
+
020000000000000000000021 /* Debug */,
|
|
482
|
+
020000000000000000000022 /* Release */,
|
|
483
|
+
);
|
|
484
|
+
defaultConfigurationIsVisible = 0;
|
|
485
|
+
defaultConfigurationName = Release;
|
|
486
|
+
};
|
|
487
|
+
/* End XCConfigurationList section */
|
|
488
|
+
};
|
|
489
|
+
rootObject = 010000000000000000000001 /* Project object */;
|
|
490
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1600"
|
|
4
|
+
version = "1.7">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES"
|
|
8
|
+
buildArchitectures = "Automatic">
|
|
9
|
+
<BuildActionEntries>
|
|
10
|
+
<BuildActionEntry
|
|
11
|
+
buildForTesting = "YES"
|
|
12
|
+
buildForRunning = "YES"
|
|
13
|
+
buildForProfiling = "YES"
|
|
14
|
+
buildForArchiving = "YES"
|
|
15
|
+
buildForAnalyzing = "YES">
|
|
16
|
+
<BuildableReference
|
|
17
|
+
BuildableIdentifier = "primary"
|
|
18
|
+
BlueprintIdentifier = "0E0000000000000000000001"
|
|
19
|
+
BuildableName = "__APP_NAME__.app"
|
|
20
|
+
BlueprintName = "__APP_NAME__"
|
|
21
|
+
ReferencedContainer = "container:__APP_NAME__.xcodeproj">
|
|
22
|
+
</BuildableReference>
|
|
23
|
+
</BuildActionEntry>
|
|
24
|
+
<BuildActionEntry
|
|
25
|
+
buildForTesting = "YES"
|
|
26
|
+
buildForRunning = "YES"
|
|
27
|
+
buildForProfiling = "NO"
|
|
28
|
+
buildForArchiving = "NO"
|
|
29
|
+
buildForAnalyzing = "YES">
|
|
30
|
+
<BuildableReference
|
|
31
|
+
BuildableIdentifier = "primary"
|
|
32
|
+
BlueprintIdentifier = "0E0000000000000000000002"
|
|
33
|
+
BuildableName = "__APP_NAME__ Extension.appex"
|
|
34
|
+
BlueprintName = "__APP_NAME__ Extension"
|
|
35
|
+
ReferencedContainer = "container:__APP_NAME__.xcodeproj">
|
|
36
|
+
</BuildableReference>
|
|
37
|
+
</BuildActionEntry>
|
|
38
|
+
</BuildActionEntries>
|
|
39
|
+
</BuildAction>
|
|
40
|
+
<TestAction
|
|
41
|
+
buildConfiguration = "Debug"
|
|
42
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
43
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
44
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
45
|
+
<MacroExpansion>
|
|
46
|
+
<BuildableReference
|
|
47
|
+
BuildableIdentifier = "primary"
|
|
48
|
+
BlueprintIdentifier = "0E0000000000000000000001"
|
|
49
|
+
BuildableName = "__APP_NAME__.app"
|
|
50
|
+
BlueprintName = "__APP_NAME__"
|
|
51
|
+
ReferencedContainer = "container:__APP_NAME__.xcodeproj">
|
|
52
|
+
</BuildableReference>
|
|
53
|
+
</MacroExpansion>
|
|
54
|
+
<Testables>
|
|
55
|
+
</Testables>
|
|
56
|
+
</TestAction>
|
|
57
|
+
<LaunchAction
|
|
58
|
+
buildConfiguration = "Debug"
|
|
59
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
60
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
61
|
+
launchStyle = "0"
|
|
62
|
+
useCustomWorkingDirectory = "NO"
|
|
63
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
64
|
+
debugDocumentVersioning = "YES"
|
|
65
|
+
debugServiceExtension = "internal"
|
|
66
|
+
allowLocationSimulation = "YES">
|
|
67
|
+
<BuildableProductRunnable
|
|
68
|
+
runnableDebuggingMode = "0">
|
|
69
|
+
<BuildableReference
|
|
70
|
+
BuildableIdentifier = "primary"
|
|
71
|
+
BlueprintIdentifier = "0E0000000000000000000001"
|
|
72
|
+
BuildableName = "__APP_NAME__.app"
|
|
73
|
+
BlueprintName = "__APP_NAME__"
|
|
74
|
+
ReferencedContainer = "container:__APP_NAME__.xcodeproj">
|
|
75
|
+
</BuildableReference>
|
|
76
|
+
</BuildableProductRunnable>
|
|
77
|
+
</LaunchAction>
|
|
78
|
+
<ProfileAction
|
|
79
|
+
buildConfiguration = "Release"
|
|
80
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
81
|
+
savedToolIdentifier = ""
|
|
82
|
+
useCustomWorkingDirectory = "NO"
|
|
83
|
+
debugDocumentVersioning = "YES">
|
|
84
|
+
<BuildableProductRunnable
|
|
85
|
+
runnableDebuggingMode = "0">
|
|
86
|
+
<BuildableReference
|
|
87
|
+
BuildableIdentifier = "primary"
|
|
88
|
+
BlueprintIdentifier = "0E0000000000000000000001"
|
|
89
|
+
BuildableName = "__APP_NAME__.app"
|
|
90
|
+
BlueprintName = "__APP_NAME__"
|
|
91
|
+
ReferencedContainer = "container:__APP_NAME__.xcodeproj">
|
|
92
|
+
</BuildableReference>
|
|
93
|
+
</BuildableProductRunnable>
|
|
94
|
+
</ProfileAction>
|
|
95
|
+
<AnalyzeAction
|
|
96
|
+
buildConfiguration = "Debug">
|
|
97
|
+
</AnalyzeAction>
|
|
98
|
+
<ArchiveAction
|
|
99
|
+
buildConfiguration = "Release"
|
|
100
|
+
revealArchiveInOrganizer = "YES">
|
|
101
|
+
</ArchiveAction>
|
|
102
|
+
</Scheme>
|