Skip to content

Commit 7331a3e

Browse files
committed
re-run ./build_all_ios.sh --no-engine on macOS 26.0 stable
1 parent 4ac99f9 commit 7331a3e

File tree

9 files changed

+363
-0
lines changed

9 files changed

+363
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>AvailableLibraries</key>
6+
<array>
7+
<dict>
8+
<key>BinaryPath</key>
9+
<string>NativeScript.framework/NativeScript</string>
10+
<key>LibraryIdentifier</key>
11+
<string>ios-arm64</string>
12+
<key>LibraryPath</key>
13+
<string>NativeScript.framework</string>
14+
<key>SupportedArchitectures</key>
15+
<array>
16+
<string>arm64</string>
17+
</array>
18+
<key>SupportedPlatform</key>
19+
<string>ios</string>
20+
</dict>
21+
<dict>
22+
<key>BinaryPath</key>
23+
<string>NativeScript.framework/NativeScript</string>
24+
<key>LibraryIdentifier</key>
25+
<string>ios-arm64_x86_64-simulator</string>
26+
<key>LibraryPath</key>
27+
<string>NativeScript.framework</string>
28+
<key>SupportedArchitectures</key>
29+
<array>
30+
<string>arm64</string>
31+
<string>x86_64</string>
32+
</array>
33+
<key>SupportedPlatform</key>
34+
<string>ios</string>
35+
<key>SupportedPlatformVariant</key>
36+
<string>simulator</string>
37+
</dict>
38+
</array>
39+
<key>CFBundlePackageType</key>
40+
<string>XFWK</string>
41+
<key>XCFrameworkFormatVersion</key>
42+
<string>1.0</string>
43+
</dict>
44+
</plist>
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#ifndef NATIVESCRIPT_H
2+
#define NATIVESCRIPT_H
3+
4+
#ifdef __cplusplus
5+
6+
extern "C"
7+
8+
#endif // __cplusplus
9+
10+
void
11+
nativescript_init(void* env, const char* metadata_path, const void* metadata_ptr);
12+
13+
#ifdef __OBJC__
14+
15+
#import <Foundation/Foundation.h>
16+
17+
__attribute__((visibility("default")))
18+
@interface Config : NSObject
19+
20+
@property(nonatomic, retain) NSString* BaseDir;
21+
@property(nonatomic, retain) NSString* ApplicationPath;
22+
@property(nonatomic) void* MetadataPtr;
23+
@property BOOL IsDebug;
24+
@property BOOL LogToSystemConsole;
25+
@property int ArgumentsCount;
26+
@property(nonatomic) char** Arguments;
27+
28+
@end
29+
30+
__attribute__((visibility("default")))
31+
@interface NativeScript : NSObject
32+
33+
- (instancetype)initWithConfig:(Config*)config;
34+
- (void)runScriptString:(NSString*)script runLoop:(BOOL)runLoop;
35+
- (void)restartWithConfig:(Config*)config;
36+
- (void)shutdownRuntime;
37+
38+
/**
39+
WARNING: this method does not return in most applications. (UIApplicationMain)
40+
*/
41+
- (void)runMainApplication;
42+
- (bool)liveSync;
43+
44+
@end
45+
46+
#endif // __OBJC__
47+
48+
#endif /* NATIVESCRIPT_H */
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>BuildMachineOSBuild</key>
6+
<string>25A354</string>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>English</string>
9+
<key>CFBundleExecutable</key>
10+
<string>NativeScript</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>org.nativescript.runtime</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>0.1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleSupportedPlatforms</key>
22+
<array>
23+
<string>iPhoneOS</string>
24+
</array>
25+
<key>CFBundleVersion</key>
26+
<string>0.1.0</string>
27+
<key>CSResourcesFileMapped</key>
28+
<true/>
29+
<key>DTCompiler</key>
30+
<string>com.apple.compilers.llvm.clang.1_0</string>
31+
<key>DTPlatformBuild</key>
32+
<string>23A339</string>
33+
<key>DTPlatformName</key>
34+
<string>iphoneos</string>
35+
<key>DTPlatformVersion</key>
36+
<string>26.0</string>
37+
<key>DTSDKBuild</key>
38+
<string>23A339</string>
39+
<key>DTSDKName</key>
40+
<string>iphoneos26.0</string>
41+
<key>DTXcode</key>
42+
<string>2601</string>
43+
<key>DTXcodeBuild</key>
44+
<string>17A400</string>
45+
<key>MinimumOSVersion</key>
46+
<string>13.0</string>
47+
<key>UIDeviceFamily</key>
48+
<array>
49+
<integer>1</integer>
50+
<integer>2</integer>
51+
</array>
52+
<key>UIRequiredDeviceCapabilities</key>
53+
<array>
54+
<string>arm64</string>
55+
</array>
56+
</dict>
57+
</plist>
443 KB
Binary file not shown.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#ifndef NATIVESCRIPT_H
2+
#define NATIVESCRIPT_H
3+
4+
#ifdef __cplusplus
5+
6+
extern "C"
7+
8+
#endif // __cplusplus
9+
10+
void
11+
nativescript_init(void* env, const char* metadata_path, const void* metadata_ptr);
12+
13+
#ifdef __OBJC__
14+
15+
#import <Foundation/Foundation.h>
16+
17+
__attribute__((visibility("default")))
18+
@interface Config : NSObject
19+
20+
@property(nonatomic, retain) NSString* BaseDir;
21+
@property(nonatomic, retain) NSString* ApplicationPath;
22+
@property(nonatomic) void* MetadataPtr;
23+
@property BOOL IsDebug;
24+
@property BOOL LogToSystemConsole;
25+
@property int ArgumentsCount;
26+
@property(nonatomic) char** Arguments;
27+
28+
@end
29+
30+
__attribute__((visibility("default")))
31+
@interface NativeScript : NSObject
32+
33+
- (instancetype)initWithConfig:(Config*)config;
34+
- (void)runScriptString:(NSString*)script runLoop:(BOOL)runLoop;
35+
- (void)restartWithConfig:(Config*)config;
36+
- (void)shutdownRuntime;
37+
38+
/**
39+
WARNING: this method does not return in most applications. (UIApplicationMain)
40+
*/
41+
- (void)runMainApplication;
42+
- (bool)liveSync;
43+
44+
@end
45+
46+
#endif // __OBJC__
47+
48+
#endif /* NATIVESCRIPT_H */
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>BuildMachineOSBuild</key>
6+
<string>25A354</string>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>English</string>
9+
<key>CFBundleExecutable</key>
10+
<string>NativeScript</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>org.nativescript.runtime</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>0.1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleSupportedPlatforms</key>
22+
<array>
23+
<string>iPhoneSimulator</string>
24+
</array>
25+
<key>CFBundleVersion</key>
26+
<string>0.1.0</string>
27+
<key>CSResourcesFileMapped</key>
28+
<true/>
29+
<key>DTCompiler</key>
30+
<string>com.apple.compilers.llvm.clang.1_0</string>
31+
<key>DTPlatformBuild</key>
32+
<string>23A339</string>
33+
<key>DTPlatformName</key>
34+
<string>iphonesimulator</string>
35+
<key>DTPlatformVersion</key>
36+
<string>26.0</string>
37+
<key>DTSDKBuild</key>
38+
<string>23A339</string>
39+
<key>DTSDKName</key>
40+
<string>iphonesimulator26.0</string>
41+
<key>DTXcode</key>
42+
<string>2601</string>
43+
<key>DTXcodeBuild</key>
44+
<string>17A400</string>
45+
<key>MinimumOSVersion</key>
46+
<string>13.0</string>
47+
<key>UIDeviceFamily</key>
48+
<array>
49+
<integer>1</integer>
50+
<integer>2</integer>
51+
</array>
52+
</dict>
53+
</plist>
942 KB
Binary file not shown.
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>files</key>
6+
<dict>
7+
<key>Headers/NativeScript.h</key>
8+
<data>
9+
39ICnat7eEdDM8V81X+AgQ8An7I=
10+
</data>
11+
<key>Info.plist</key>
12+
<data>
13+
3BGT6TO+fMFmUiq5+n2XFjRQ6ig=
14+
</data>
15+
</dict>
16+
<key>files2</key>
17+
<dict>
18+
<key>Headers/NativeScript.h</key>
19+
<dict>
20+
<key>hash2</key>
21+
<data>
22+
b2VIqZHl3+JydH2yR49bt1Gfz27RYQtgJNc6pl/6RdA=
23+
</data>
24+
</dict>
25+
</dict>
26+
<key>rules</key>
27+
<dict>
28+
<key>^.*</key>
29+
<true/>
30+
<key>^.*\.lproj/</key>
31+
<dict>
32+
<key>optional</key>
33+
<true/>
34+
<key>weight</key>
35+
<real>1000</real>
36+
</dict>
37+
<key>^.*\.lproj/locversion.plist$</key>
38+
<dict>
39+
<key>omit</key>
40+
<true/>
41+
<key>weight</key>
42+
<real>1100</real>
43+
</dict>
44+
<key>^Base\.lproj/</key>
45+
<dict>
46+
<key>weight</key>
47+
<real>1010</real>
48+
</dict>
49+
<key>^version.plist$</key>
50+
<true/>
51+
</dict>
52+
<key>rules2</key>
53+
<dict>
54+
<key>.*\.dSYM($|/)</key>
55+
<dict>
56+
<key>weight</key>
57+
<real>11</real>
58+
</dict>
59+
<key>^(.*/)?\.DS_Store$</key>
60+
<dict>
61+
<key>omit</key>
62+
<true/>
63+
<key>weight</key>
64+
<real>2000</real>
65+
</dict>
66+
<key>^.*</key>
67+
<true/>
68+
<key>^.*\.lproj/</key>
69+
<dict>
70+
<key>optional</key>
71+
<true/>
72+
<key>weight</key>
73+
<real>1000</real>
74+
</dict>
75+
<key>^.*\.lproj/locversion.plist$</key>
76+
<dict>
77+
<key>omit</key>
78+
<true/>
79+
<key>weight</key>
80+
<real>1100</real>
81+
</dict>
82+
<key>^Base\.lproj/</key>
83+
<dict>
84+
<key>weight</key>
85+
<real>1010</real>
86+
</dict>
87+
<key>^Info\.plist$</key>
88+
<dict>
89+
<key>omit</key>
90+
<true/>
91+
<key>weight</key>
92+
<real>20</real>
93+
</dict>
94+
<key>^PkgInfo$</key>
95+
<dict>
96+
<key>omit</key>
97+
<true/>
98+
<key>weight</key>
99+
<real>20</real>
100+
</dict>
101+
<key>^embedded\.provisionprofile$</key>
102+
<dict>
103+
<key>weight</key>
104+
<real>20</real>
105+
</dict>
106+
<key>^version\.plist$</key>
107+
<dict>
108+
<key>weight</key>
109+
<real>20</real>
110+
</dict>
111+
</dict>
112+
</dict>
113+
</plist>

packages/ios/build/RelWithDebInfo/NativeScript.apple.node/react-native-node-api-module

Whitespace-only changes.

0 commit comments

Comments
 (0)