@nativescript/ios 8.3.0-alpha.0 → 8.3.0
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
archiveVersion = 1;
|
|
4
4
|
classes = {
|
|
5
5
|
};
|
|
6
|
-
objectVersion =
|
|
6
|
+
objectVersion = 52;
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
@@ -221,7 +221,6 @@
|
|
|
221
221
|
/* Begin PBXShellScriptBuildPhase section */
|
|
222
222
|
C97FD7AC1ADE5369004DB2A4 /* NativeScript PreBuild */ = {
|
|
223
223
|
isa = PBXShellScriptBuildPhase;
|
|
224
|
-
alwaysOutOfDate = 1;
|
|
225
224
|
buildActionMask = 2147483647;
|
|
226
225
|
files = (
|
|
227
226
|
);
|
|
@@ -229,10 +228,6 @@
|
|
|
229
228
|
);
|
|
230
229
|
name = "NativeScript PreBuild";
|
|
231
230
|
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",
|
|
236
231
|
);
|
|
237
232
|
runOnlyForDeploymentPostprocessing = 0;
|
|
238
233
|
shellPath = /bin/sh;
|
|
@@ -241,7 +236,6 @@
|
|
|
241
236
|
};
|
|
242
237
|
CD3EAD351B05FF060042DBFC /* NativeScript PostBuild */ = {
|
|
243
238
|
isa = PBXShellScriptBuildPhase;
|
|
244
|
-
alwaysOutOfDate = 1;
|
|
245
239
|
buildActionMask = 2147483647;
|
|
246
240
|
files = (
|
|
247
241
|
);
|
|
@@ -252,12 +246,11 @@
|
|
|
252
246
|
);
|
|
253
247
|
runOnlyForDeploymentPostprocessing = 0;
|
|
254
248
|
shellPath = /bin/sh;
|
|
255
|
-
shellScript = "\"$SRCROOT/internal/nativescript-post-build\"
|
|
249
|
+
shellScript = "\"$SRCROOT/internal/nativescript-post-build\"";
|
|
256
250
|
showEnvVarsInLog = 0;
|
|
257
251
|
};
|
|
258
252
|
CD62955B1BB2651D00AE3A93 /* NativeScript PreLink */ = {
|
|
259
253
|
isa = PBXShellScriptBuildPhase;
|
|
260
|
-
alwaysOutOfDate = 1;
|
|
261
254
|
buildActionMask = 2147483647;
|
|
262
255
|
files = (
|
|
263
256
|
);
|
|
@@ -268,7 +261,7 @@
|
|
|
268
261
|
);
|
|
269
262
|
runOnlyForDeploymentPostprocessing = 0;
|
|
270
263
|
shellPath = /bin/sh;
|
|
271
|
-
shellScript = "\"$SRCROOT/internal/nativescript-pre-link\"
|
|
264
|
+
shellScript = "\"$SRCROOT/internal/nativescript-pre-link\"";
|
|
272
265
|
showEnvVarsInLog = 0;
|
|
273
266
|
};
|
|
274
267
|
/* End PBXShellScriptBuildPhase section */
|
|
Binary file
|
|
@@ -1,10 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
|
-
|
|
3
|
-
# Ignore errors while inserting environment variables (some could be readonly)
|
|
2
|
+
#Ignore errors while inserting environment variables (some could be readonly)
|
|
4
3
|
(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
|