@nativescript/ios 8.3.0-sap.0 → 8.3.1-alpha.1
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/framework/__PROJECT_NAME__.xcodeproj/project.pbxproj +10 -3
- package/framework/__PROJECT_NAME__.xcodeproj/project.xcworkspace/xcuserdata/rigor789.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/framework/internal/XCFrameworks.zip +0 -0
- package/framework/internal/nativescript-pre-build +8 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
archiveVersion = 1;
|
|
4
4
|
classes = {
|
|
5
5
|
};
|
|
6
|
-
objectVersion =
|
|
6
|
+
objectVersion = 54;
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
@@ -221,6 +221,7 @@
|
|
|
221
221
|
/* Begin PBXShellScriptBuildPhase section */
|
|
222
222
|
C97FD7AC1ADE5369004DB2A4 /* NativeScript PreBuild */ = {
|
|
223
223
|
isa = PBXShellScriptBuildPhase;
|
|
224
|
+
alwaysOutOfDate = 1;
|
|
224
225
|
buildActionMask = 2147483647;
|
|
225
226
|
files = (
|
|
226
227
|
);
|
|
@@ -228,6 +229,10 @@
|
|
|
228
229
|
);
|
|
229
230
|
name = "NativeScript PreBuild";
|
|
230
231
|
outputPaths = (
|
|
232
|
+
"$CONFIGURATION_BUILD_DIR/metadata-arm64.bin",
|
|
233
|
+
"$CONFIGURATION_BUILD_DIR/metadata-arm64e.bin",
|
|
234
|
+
"$CONFIGURATION_BUILD_DIR/metadata-i386.bin",
|
|
235
|
+
"$CONFIGURATION_BUILD_DIR/metadata-x86_64.bin",
|
|
231
236
|
);
|
|
232
237
|
runOnlyForDeploymentPostprocessing = 0;
|
|
233
238
|
shellPath = /bin/sh;
|
|
@@ -236,6 +241,7 @@
|
|
|
236
241
|
};
|
|
237
242
|
CD3EAD351B05FF060042DBFC /* NativeScript PostBuild */ = {
|
|
238
243
|
isa = PBXShellScriptBuildPhase;
|
|
244
|
+
alwaysOutOfDate = 1;
|
|
239
245
|
buildActionMask = 2147483647;
|
|
240
246
|
files = (
|
|
241
247
|
);
|
|
@@ -246,11 +252,12 @@
|
|
|
246
252
|
);
|
|
247
253
|
runOnlyForDeploymentPostprocessing = 0;
|
|
248
254
|
shellPath = /bin/sh;
|
|
249
|
-
shellScript = "\"$SRCROOT/internal/nativescript-post-build\"";
|
|
255
|
+
shellScript = "\"$SRCROOT/internal/nativescript-post-build\"\n";
|
|
250
256
|
showEnvVarsInLog = 0;
|
|
251
257
|
};
|
|
252
258
|
CD62955B1BB2651D00AE3A93 /* NativeScript PreLink */ = {
|
|
253
259
|
isa = PBXShellScriptBuildPhase;
|
|
260
|
+
alwaysOutOfDate = 1;
|
|
254
261
|
buildActionMask = 2147483647;
|
|
255
262
|
files = (
|
|
256
263
|
);
|
|
@@ -261,7 +268,7 @@
|
|
|
261
268
|
);
|
|
262
269
|
runOnlyForDeploymentPostprocessing = 0;
|
|
263
270
|
shellPath = /bin/sh;
|
|
264
|
-
shellScript = "\"$SRCROOT/internal/nativescript-pre-link\"";
|
|
271
|
+
shellScript = "\"$SRCROOT/internal/nativescript-pre-link\"\n";
|
|
265
272
|
showEnvVarsInLog = 0;
|
|
266
273
|
};
|
|
267
274
|
/* End PBXShellScriptBuildPhase section */
|
|
Binary file
|
|
Binary file
|
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
# Ignore errors while inserting environment variables (some could be readonly)
|
|
3
4
|
(echo "set +e"; echo "set +o posix"; export; echo "set -o posix"; echo "set -e";) > ./.build_env_vars.sh
|
|
5
|
+
|
|
6
|
+
# create temporary empty metadata files for XCode LD/LDPLUSPLUS flag analysis
|
|
7
|
+
for arch in $VALID_ARCHS
|
|
8
|
+
do :
|
|
9
|
+
touch "$CONFIGURATION_BUILD_DIR/metadata-$arch.bin"
|
|
10
|
+
done
|