expo-template-bare-minimum 53.0.0-canary-20250122-166c2cb → 53.0.0-canary-20250124-42fe332
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/android/app/src/main/res/values/styles.xml +8 -1
- package/android/build.gradle +2 -18
- package/ios/HelloWorld/AppDelegate.h +7 -0
- package/ios/HelloWorld/AppDelegate.mm +62 -0
- package/ios/HelloWorld/main.m +10 -0
- package/ios/HelloWorld.xcodeproj/project.pbxproj +53 -25
- package/package.json +4 -4
- package/ios/HelloWorld/AppDelegate.swift +0 -42
- package/ios/HelloWorld/HelloWorld-Bridging-Header.h +0 -3
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
<resources>
|
|
2
|
-
<style name="AppTheme" parent="Theme.AppCompat.
|
|
2
|
+
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
|
3
|
+
<item name="android:textColor">@android:color/black</item>
|
|
4
|
+
<item name="android:editTextStyle">@style/ResetEditText</item>
|
|
3
5
|
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
|
|
4
6
|
</style>
|
|
7
|
+
<style name="ResetEditText" parent="@android:style/Widget.EditText">
|
|
8
|
+
<item name="android:padding">0dp</item>
|
|
9
|
+
<item name="android:textColorHint">#c8c8c8</item>
|
|
10
|
+
<item name="android:textColor">@android:color/black</item>
|
|
11
|
+
</style>
|
|
5
12
|
<style name="Theme.App.SplashScreen" parent="AppTheme">
|
|
6
13
|
<item name="android:windowBackground">@drawable/splashscreen_logo</item>
|
|
7
14
|
</style>
|
package/android/build.gradle
CHANGED
|
@@ -23,31 +23,15 @@ buildscript {
|
|
|
23
23
|
|
|
24
24
|
apply plugin: "com.facebook.react.rootproject"
|
|
25
25
|
|
|
26
|
-
def reactNativeAndroidDir = new File(
|
|
27
|
-
providers.exec {
|
|
28
|
-
workingDir(rootDir)
|
|
29
|
-
commandLine("node", "--print", "require.resolve('react-native/package.json')")
|
|
30
|
-
}.standardOutput.asText.get().trim(),
|
|
31
|
-
"../android"
|
|
32
|
-
)
|
|
33
|
-
|
|
34
|
-
def jscAndroidDir = new File(
|
|
35
|
-
providers.exec {
|
|
36
|
-
workingDir(rootDir)
|
|
37
|
-
commandLine("node", "--print", "require.resolve('jsc-android/package.json', { paths: [require.resolve('react-native/package.json')] })")
|
|
38
|
-
}.standardOutput.asText.get().trim(),
|
|
39
|
-
"../dist"
|
|
40
|
-
)
|
|
41
|
-
|
|
42
26
|
allprojects {
|
|
43
27
|
repositories {
|
|
44
28
|
maven {
|
|
45
29
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
46
|
-
url(
|
|
30
|
+
url(new File(['node', '--print', "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), '../android'))
|
|
47
31
|
}
|
|
48
32
|
maven {
|
|
49
33
|
// Android JSC is installed from npm
|
|
50
|
-
url(
|
|
34
|
+
url(new File(['node', '--print', "require.resolve('jsc-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), '../dist'))
|
|
51
35
|
}
|
|
52
36
|
|
|
53
37
|
google()
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
#import "AppDelegate.h"
|
|
2
|
+
|
|
3
|
+
#import <React/RCTBundleURLProvider.h>
|
|
4
|
+
#import <React/RCTLinkingManager.h>
|
|
5
|
+
|
|
6
|
+
@implementation AppDelegate
|
|
7
|
+
|
|
8
|
+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
9
|
+
{
|
|
10
|
+
self.moduleName = @"main";
|
|
11
|
+
|
|
12
|
+
// You can add your custom initial props in the dictionary below.
|
|
13
|
+
// They will be passed down to the ViewController used by React Native.
|
|
14
|
+
self.initialProps = @{};
|
|
15
|
+
|
|
16
|
+
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
20
|
+
{
|
|
21
|
+
return [self bundleURL];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
- (NSURL *)bundleURL
|
|
25
|
+
{
|
|
26
|
+
#if DEBUG
|
|
27
|
+
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@".expo/.virtual-metro-entry"];
|
|
28
|
+
#else
|
|
29
|
+
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
30
|
+
#endif
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Linking API
|
|
34
|
+
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
|
|
35
|
+
return [super application:application openURL:url options:options] || [RCTLinkingManager application:application openURL:url options:options];
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Universal Links
|
|
39
|
+
- (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray<id<UIUserActivityRestoring>> * _Nullable))restorationHandler {
|
|
40
|
+
BOOL result = [RCTLinkingManager application:application continueUserActivity:userActivity restorationHandler:restorationHandler];
|
|
41
|
+
return [super application:application continueUserActivity:userActivity restorationHandler:restorationHandler] || result;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
|
|
45
|
+
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
|
|
46
|
+
{
|
|
47
|
+
return [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
|
|
51
|
+
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
|
|
52
|
+
{
|
|
53
|
+
return [super application:application didFailToRegisterForRemoteNotificationsWithError:error];
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
|
|
57
|
+
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
|
|
58
|
+
{
|
|
59
|
+
return [super application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@end
|
|
@@ -3,25 +3,33 @@
|
|
|
3
3
|
archiveVersion = 1;
|
|
4
4
|
classes = {
|
|
5
5
|
};
|
|
6
|
-
objectVersion =
|
|
6
|
+
objectVersion = 46;
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
10
11
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
12
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
11
13
|
3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
|
|
14
|
+
96905EF65AED1B983A6B3ABC /* libPods-HelloWorld.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-HelloWorld.a */; };
|
|
15
|
+
B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; };
|
|
12
16
|
BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
|
|
13
|
-
F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11748412D0307B40044C1D9 /* AppDelegate.swift */; };
|
|
14
17
|
/* End PBXBuildFile section */
|
|
15
18
|
|
|
16
19
|
/* Begin PBXFileReference section */
|
|
17
20
|
13B07F961A680F5B00A75B9A /* HelloWorld.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
21
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = HelloWorld/AppDelegate.h; sourceTree = "<group>"; };
|
|
22
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = HelloWorld/AppDelegate.mm; sourceTree = "<group>"; };
|
|
18
23
|
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = HelloWorld/Images.xcassets; sourceTree = "<group>"; };
|
|
19
24
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = HelloWorld/Info.plist; sourceTree = "<group>"; };
|
|
25
|
+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = HelloWorld/main.m; sourceTree = "<group>"; };
|
|
26
|
+
58EEBF8E8E6FB1BC6CAF49B5 /* libPods-HelloWorld.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-HelloWorld.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
27
|
+
6C2E3173556A471DD304B334 /* Pods-HelloWorld.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloWorld.debug.xcconfig"; path = "Target Support Files/Pods-HelloWorld/Pods-HelloWorld.debug.xcconfig"; sourceTree = "<group>"; };
|
|
28
|
+
7A4D352CD337FB3A3BF06240 /* Pods-HelloWorld.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloWorld.release.xcconfig"; path = "Target Support Files/Pods-HelloWorld/Pods-HelloWorld.release.xcconfig"; sourceTree = "<group>"; };
|
|
20
29
|
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = HelloWorld/SplashScreen.storyboard; sourceTree = "<group>"; };
|
|
21
30
|
BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
|
|
22
31
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
23
|
-
|
|
24
|
-
F11748442D0722820044C1D9 /* HelloWorld-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "HelloWorld-Bridging-Header.h"; path = "HelloWorld/HelloWorld-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
32
|
+
FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-HelloWorld/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
|
|
25
33
|
/* End PBXFileReference section */
|
|
26
34
|
|
|
27
35
|
/* Begin PBXFrameworksBuildPhase section */
|
|
@@ -29,6 +37,7 @@
|
|
|
29
37
|
isa = PBXFrameworksBuildPhase;
|
|
30
38
|
buildActionMask = 2147483647;
|
|
31
39
|
files = (
|
|
40
|
+
96905EF65AED1B983A6B3ABC /* libPods-HelloWorld.a in Frameworks */,
|
|
32
41
|
);
|
|
33
42
|
runOnlyForDeploymentPostprocessing = 0;
|
|
34
43
|
};
|
|
@@ -38,11 +47,12 @@
|
|
|
38
47
|
13B07FAE1A68108700A75B9A /* HelloWorld */ = {
|
|
39
48
|
isa = PBXGroup;
|
|
40
49
|
children = (
|
|
41
|
-
F11748412D0307B40044C1D9 /* AppDelegate.swift */,
|
|
42
|
-
F11748442D0722820044C1D9 /* HelloWorld-Bridging-Header.h */,
|
|
43
50
|
BB2F792B24A3F905000567C9 /* Supporting */,
|
|
51
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
52
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
|
44
53
|
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
45
54
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
55
|
+
13B07FB71A68108700A75B9A /* main.m */,
|
|
46
56
|
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
|
|
47
57
|
);
|
|
48
58
|
name = HelloWorld;
|
|
@@ -52,6 +62,7 @@
|
|
|
52
62
|
isa = PBXGroup;
|
|
53
63
|
children = (
|
|
54
64
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
65
|
+
58EEBF8E8E6FB1BC6CAF49B5 /* libPods-HelloWorld.a */,
|
|
55
66
|
);
|
|
56
67
|
name = Frameworks;
|
|
57
68
|
sourceTree = "<group>";
|
|
@@ -70,6 +81,8 @@
|
|
|
70
81
|
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
71
82
|
83CBBA001A601CBA00E9B192 /* Products */,
|
|
72
83
|
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
84
|
+
D65327D7A22EEC0BE12398D9 /* Pods */,
|
|
85
|
+
D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */,
|
|
73
86
|
);
|
|
74
87
|
indentWidth = 2;
|
|
75
88
|
sourceTree = "<group>";
|
|
@@ -84,6 +97,14 @@
|
|
|
84
97
|
name = Products;
|
|
85
98
|
sourceTree = "<group>";
|
|
86
99
|
};
|
|
100
|
+
92DBD88DE9BF7D494EA9DA96 /* HelloWorld */ = {
|
|
101
|
+
isa = PBXGroup;
|
|
102
|
+
children = (
|
|
103
|
+
FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */,
|
|
104
|
+
);
|
|
105
|
+
name = HelloWorld;
|
|
106
|
+
sourceTree = "<group>";
|
|
107
|
+
};
|
|
87
108
|
BB2F792B24A3F905000567C9 /* Supporting */ = {
|
|
88
109
|
isa = PBXGroup;
|
|
89
110
|
children = (
|
|
@@ -93,6 +114,23 @@
|
|
|
93
114
|
path = HelloWorld/Supporting;
|
|
94
115
|
sourceTree = "<group>";
|
|
95
116
|
};
|
|
117
|
+
D65327D7A22EEC0BE12398D9 /* Pods */ = {
|
|
118
|
+
isa = PBXGroup;
|
|
119
|
+
children = (
|
|
120
|
+
6C2E3173556A471DD304B334 /* Pods-HelloWorld.debug.xcconfig */,
|
|
121
|
+
7A4D352CD337FB3A3BF06240 /* Pods-HelloWorld.release.xcconfig */,
|
|
122
|
+
);
|
|
123
|
+
path = Pods;
|
|
124
|
+
sourceTree = "<group>";
|
|
125
|
+
};
|
|
126
|
+
D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = {
|
|
127
|
+
isa = PBXGroup;
|
|
128
|
+
children = (
|
|
129
|
+
92DBD88DE9BF7D494EA9DA96 /* HelloWorld */,
|
|
130
|
+
);
|
|
131
|
+
name = ExpoModulesProviders;
|
|
132
|
+
sourceTree = "<group>";
|
|
133
|
+
};
|
|
96
134
|
/* End PBXGroup section */
|
|
97
135
|
|
|
98
136
|
/* Begin PBXNativeTarget section */
|
|
@@ -227,7 +265,9 @@
|
|
|
227
265
|
isa = PBXSourcesBuildPhase;
|
|
228
266
|
buildActionMask = 2147483647;
|
|
229
267
|
files = (
|
|
230
|
-
|
|
268
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
|
|
269
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
270
|
+
B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */,
|
|
231
271
|
);
|
|
232
272
|
runOnlyForDeploymentPostprocessing = 0;
|
|
233
273
|
};
|
|
@@ -236,6 +276,7 @@
|
|
|
236
276
|
/* Begin XCBuildConfiguration section */
|
|
237
277
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
238
278
|
isa = XCBuildConfiguration;
|
|
279
|
+
baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-HelloWorld.debug.xcconfig */;
|
|
239
280
|
buildSettings = {
|
|
240
281
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
241
282
|
CLANG_ENABLE_MODULES = YES;
|
|
@@ -247,10 +288,7 @@
|
|
|
247
288
|
);
|
|
248
289
|
INFOPLIST_FILE = HelloWorld/Info.plist;
|
|
249
290
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
250
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
251
|
-
"$(inherited)",
|
|
252
|
-
"@executable_path/Frameworks",
|
|
253
|
-
);
|
|
291
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
254
292
|
MARKETING_VERSION = 1.0;
|
|
255
293
|
OTHER_LDFLAGS = (
|
|
256
294
|
"$(inherited)",
|
|
@@ -259,7 +297,6 @@
|
|
|
259
297
|
);
|
|
260
298
|
PRODUCT_BUNDLE_IDENTIFIER = org.name.HelloWorld;
|
|
261
299
|
PRODUCT_NAME = HelloWorld;
|
|
262
|
-
SWIFT_OBJC_BRIDGING_HEADER = "HelloWorld/HelloWorld-Bridging-Header.h";
|
|
263
300
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
264
301
|
SWIFT_VERSION = 5.0;
|
|
265
302
|
VERSIONING_SYSTEM = "apple-generic";
|
|
@@ -268,16 +305,14 @@
|
|
|
268
305
|
};
|
|
269
306
|
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
270
307
|
isa = XCBuildConfiguration;
|
|
308
|
+
baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-HelloWorld.release.xcconfig */;
|
|
271
309
|
buildSettings = {
|
|
272
310
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
273
311
|
CLANG_ENABLE_MODULES = YES;
|
|
274
312
|
CURRENT_PROJECT_VERSION = 1;
|
|
275
313
|
INFOPLIST_FILE = HelloWorld/Info.plist;
|
|
276
314
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
277
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
278
|
-
"$(inherited)",
|
|
279
|
-
"@executable_path/Frameworks",
|
|
280
|
-
);
|
|
315
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
281
316
|
MARKETING_VERSION = 1.0;
|
|
282
317
|
OTHER_LDFLAGS = (
|
|
283
318
|
"$(inherited)",
|
|
@@ -286,7 +321,6 @@
|
|
|
286
321
|
);
|
|
287
322
|
PRODUCT_BUNDLE_IDENTIFIER = org.name.HelloWorld;
|
|
288
323
|
PRODUCT_NAME = HelloWorld;
|
|
289
|
-
SWIFT_OBJC_BRIDGING_HEADER = "HelloWorld/HelloWorld-Bridging-Header.h";
|
|
290
324
|
SWIFT_VERSION = 5.0;
|
|
291
325
|
VERSIONING_SYSTEM = "apple-generic";
|
|
292
326
|
};
|
|
@@ -340,10 +374,7 @@
|
|
|
340
374
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
341
375
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
342
376
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
343
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
344
|
-
/usr/lib/swift,
|
|
345
|
-
"$(inherited)",
|
|
346
|
-
);
|
|
377
|
+
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
|
347
378
|
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
|
348
379
|
MTL_ENABLE_DEBUG_INFO = YES;
|
|
349
380
|
ONLY_ACTIVE_ARCH = YES;
|
|
@@ -392,10 +423,7 @@
|
|
|
392
423
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
393
424
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
394
425
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
395
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
396
|
-
/usr/lib/swift,
|
|
397
|
-
"$(inherited)",
|
|
398
|
-
);
|
|
426
|
+
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
|
399
427
|
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
|
400
428
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
401
429
|
SDKROOT = iphoneos;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "expo-template-bare-minimum",
|
|
3
3
|
"description": "This bare project template includes a minimal setup for using unimodules with React Native.",
|
|
4
4
|
"license": "0BSD",
|
|
5
|
-
"version": "53.0.0-canary-
|
|
5
|
+
"version": "53.0.0-canary-20250124-42fe332",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "expo start --dev-client",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"web": "expo start --web"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"expo": "53.0.0-canary-
|
|
15
|
-
"expo-status-bar": "2.0.2-canary-
|
|
14
|
+
"expo": "53.0.0-canary-20250124-42fe332",
|
|
15
|
+
"expo-status-bar": "2.0.2-canary-20250124-42fe332",
|
|
16
16
|
"react": "18.3.1",
|
|
17
|
-
"react-native": "0.76.
|
|
17
|
+
"react-native": "0.76.6"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@babel/core": "^7.20.0"
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import React
|
|
2
|
-
import Expo
|
|
3
|
-
|
|
4
|
-
@UIApplicationMain
|
|
5
|
-
public class AppDelegate: ExpoAppDelegate {
|
|
6
|
-
public override func application(
|
|
7
|
-
_ application: UIApplication,
|
|
8
|
-
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
9
|
-
) -> Bool {
|
|
10
|
-
self.moduleName = "main"
|
|
11
|
-
self.initialProps = [:]
|
|
12
|
-
|
|
13
|
-
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
public override func bundleURL() -> URL? {
|
|
17
|
-
#if DEBUG
|
|
18
|
-
return RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: ".expo/.virtual-metro-entry")
|
|
19
|
-
#else
|
|
20
|
-
return Bundle.main.url(forResource: "main", withExtension: "jsbundle")
|
|
21
|
-
#endif
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// Linking API
|
|
25
|
-
public override func application(
|
|
26
|
-
_ app: UIApplication,
|
|
27
|
-
open url: URL,
|
|
28
|
-
options: [UIApplication.OpenURLOptionsKey: Any] = [:]
|
|
29
|
-
) -> Bool {
|
|
30
|
-
return super.application(app, open: url, options: options) || RCTLinkingManager.application(app, open: url, options: options)
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
// Universal Links
|
|
34
|
-
public override func application(
|
|
35
|
-
_ application: UIApplication,
|
|
36
|
-
continue userActivity: NSUserActivity,
|
|
37
|
-
restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void
|
|
38
|
-
) -> Bool {
|
|
39
|
-
let result = RCTLinkingManager.application(application, continue: userActivity, restorationHandler: restorationHandler)
|
|
40
|
-
return super.application(application, continue: userActivity, restorationHandler: restorationHandler) || result
|
|
41
|
-
}
|
|
42
|
-
}
|