@brightlayer-ui/react-native-template-routing-typescript 3.0.1-alpha.0 → 4.0.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.
- package/CHANGELOG.md +21 -8
- package/README.md +6 -3
- package/package.json +2 -2
- package/template/.prettierrc.js +0 -2
- package/template/Gemfile +11 -4
- package/template/android/app/build.gradle +13 -12
- package/template/android/app/src/main/AndroidManifest.xml +2 -1
- package/template/android/app/src/main/java/com/routingtemplate/MainApplication.kt +2 -7
- package/template/android/build.gradle +6 -6
- package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/template/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/template/android/gradle.properties +1 -3
- package/template/android/gradlew +7 -5
- package/template/android/gradlew.bat +9 -2
- package/template/android/settings.gradle +3 -1
- package/template/ios/Podfile +0 -5
- package/template/ios/Podfile.lock +1937 -607
- package/template/ios/blankTemplate/AppDelegate.swift +48 -0
- package/template/ios/blankTemplate/Info.plist +18 -15
- package/template/ios/blankTemplate.xcodeproj/project.pbxproj +11 -266
- package/template/metro.config.js +1 -1
- package/template/package.json +45 -38
- package/template/yarn.lock +7692 -0
- package/template/_gitignore +0 -74
- package/template/ios/blankTemplate/AppDelegate.h +0 -6
- package/template/ios/blankTemplate/AppDelegate.mm +0 -31
- package/template/ios/blankTemplate/main.m +0 -10
- package/template/ios/blankTemplateTests/Info.plist +0 -24
- package/template/ios/blankTemplateTests/blankTemplateTests.m +0 -66
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import UIKit
|
|
2
|
+
import React
|
|
3
|
+
import React_RCTAppDelegate
|
|
4
|
+
import ReactAppDependencyProvider
|
|
5
|
+
|
|
6
|
+
@main
|
|
7
|
+
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
8
|
+
var window: UIWindow?
|
|
9
|
+
|
|
10
|
+
var reactNativeDelegate: ReactNativeDelegate?
|
|
11
|
+
var reactNativeFactory: RCTReactNativeFactory?
|
|
12
|
+
|
|
13
|
+
func application(
|
|
14
|
+
_ application: UIApplication,
|
|
15
|
+
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
16
|
+
) -> Bool {
|
|
17
|
+
let delegate = ReactNativeDelegate()
|
|
18
|
+
let factory = RCTReactNativeFactory(delegate: delegate)
|
|
19
|
+
delegate.dependencyProvider = RCTAppDependencyProvider()
|
|
20
|
+
|
|
21
|
+
reactNativeDelegate = delegate
|
|
22
|
+
reactNativeFactory = factory
|
|
23
|
+
|
|
24
|
+
window = UIWindow(frame: UIScreen.main.bounds)
|
|
25
|
+
|
|
26
|
+
factory.startReactNative(
|
|
27
|
+
withModuleName: "blankTemplate",
|
|
28
|
+
in: window,
|
|
29
|
+
launchOptions: launchOptions
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
return true
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
|
|
37
|
+
override func sourceURL(for bridge: RCTBridge) -> URL? {
|
|
38
|
+
self.bundleURL()
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
override func bundleURL() -> URL? {
|
|
42
|
+
#if DEBUG
|
|
43
|
+
RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")
|
|
44
|
+
#else
|
|
45
|
+
Bundle.main.url(forResource: "main", withExtension: "jsbundle")
|
|
46
|
+
#endif
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -32,21 +32,9 @@
|
|
|
32
32
|
<true/>
|
|
33
33
|
</dict>
|
|
34
34
|
<key>NSLocationWhenInUseUsageDescription</key>
|
|
35
|
-
<string
|
|
36
|
-
<key>
|
|
37
|
-
<
|
|
38
|
-
<key>UIRequiredDeviceCapabilities</key>
|
|
39
|
-
<array>
|
|
40
|
-
<string>arm64</string>
|
|
41
|
-
</array>
|
|
42
|
-
<key>UISupportedInterfaceOrientations</key>
|
|
43
|
-
<array>
|
|
44
|
-
<string>UIInterfaceOrientationPortrait</string>
|
|
45
|
-
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
46
|
-
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
47
|
-
</array>
|
|
48
|
-
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
49
|
-
<false/>
|
|
35
|
+
<string></string>
|
|
36
|
+
<key>RCTNewArchEnabled</key>
|
|
37
|
+
<true/>
|
|
50
38
|
<key>UIAppFonts</key>
|
|
51
39
|
<array>
|
|
52
40
|
<string>OpenSans-Bold.ttf</string>
|
|
@@ -70,6 +58,21 @@
|
|
|
70
58
|
<string>Octicons.ttf</string>
|
|
71
59
|
<string>SimpleLineIcons.ttf</string>
|
|
72
60
|
<string>Zocial.ttf</string>
|
|
61
|
+
<string>BrightlayerUIIcons.ttf</string>
|
|
73
62
|
</array>
|
|
63
|
+
<key>UILaunchStoryboardName</key>
|
|
64
|
+
<string>LaunchScreen</string>
|
|
65
|
+
<key>UIRequiredDeviceCapabilities</key>
|
|
66
|
+
<array>
|
|
67
|
+
<string>arm64</string>
|
|
68
|
+
</array>
|
|
69
|
+
<key>UISupportedInterfaceOrientations</key>
|
|
70
|
+
<array>
|
|
71
|
+
<string>UIInterfaceOrientationPortrait</string>
|
|
72
|
+
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
73
|
+
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
74
|
+
</array>
|
|
75
|
+
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
76
|
+
<false/>
|
|
74
77
|
</dict>
|
|
75
78
|
</plist>
|
|
@@ -7,67 +7,27 @@
|
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
-
00E356F31AD99517003FC87E /* blankTemplateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* blankTemplateTests.m */; };
|
|
11
10
|
0C80B921A6F3F58F76C31292 /* libPods-blankTemplate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-blankTemplate.a */; };
|
|
12
|
-
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
13
11
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
34869A713A0B4342A7AA62AE /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3031A8A925194771A2DEE557 /* OpenSans-Regular.ttf */; };
|
|
17
|
-
7699B88040F8A987B510C191 /* libPods-blankTemplate-blankTemplateTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-blankTemplate-blankTemplateTests.a */; };
|
|
12
|
+
3C9C40EEC2EBCF8D684D73AF /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
|
|
13
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
|
|
18
14
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
19
|
-
BF4F5A4E7CB546E69141454B /* OpenSans-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E2A5726D55904784B264106E /* OpenSans-ExtraBold.ttf */; };
|
|
20
|
-
CD61E800382B4B8280951825 /* OpenSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EC71A9630CF14940933E4407 /* OpenSans-Bold.ttf */; };
|
|
21
|
-
EBE98CCFD2318FE4FA606A2B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D12E18218E10642B6A49CB3E /* PrivacyInfo.xcprivacy */; };
|
|
22
|
-
F27F1270ABE248FCAACEDCCF /* OpenSans-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0DDB34EDE26849A38E2698AB /* OpenSans-Light.ttf */; };
|
|
23
15
|
/* End PBXBuildFile section */
|
|
24
16
|
|
|
25
|
-
/* Begin PBXContainerItemProxy section */
|
|
26
|
-
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
|
27
|
-
isa = PBXContainerItemProxy;
|
|
28
|
-
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
29
|
-
proxyType = 1;
|
|
30
|
-
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
31
|
-
remoteInfo = blankTemplate;
|
|
32
|
-
};
|
|
33
|
-
/* End PBXContainerItemProxy section */
|
|
34
|
-
|
|
35
17
|
/* Begin PBXFileReference section */
|
|
36
|
-
00E356EE1AD99517003FC87E /* blankTemplateTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = blankTemplateTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
37
|
-
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
38
|
-
00E356F21AD99517003FC87E /* blankTemplateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = blankTemplateTests.m; sourceTree = "<group>"; };
|
|
39
|
-
0DDB34EDE26849A38E2698AB /* OpenSans-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-Light.ttf"; path = "../assets/fonts/OpenSans-Light.ttf"; sourceTree = "<group>"; };
|
|
40
18
|
13B07F961A680F5B00A75B9A /* blankTemplate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = blankTemplate.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
41
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = blankTemplate/AppDelegate.h; sourceTree = "<group>"; };
|
|
42
|
-
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = blankTemplate/AppDelegate.mm; sourceTree = "<group>"; };
|
|
43
19
|
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = blankTemplate/Images.xcassets; sourceTree = "<group>"; };
|
|
44
20
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = blankTemplate/Info.plist; sourceTree = "<group>"; };
|
|
45
|
-
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = blankTemplate/main.m; sourceTree = "<group>"; };
|
|
46
21
|
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = blankTemplate/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
47
|
-
19F6CBCC0A4E27FBF8BF4A61 /* libPods-blankTemplate-blankTemplateTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-blankTemplate-blankTemplateTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
48
|
-
22EF0808E5BA4AD8BAB11BB6 /* OpenSans-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-SemiBold.ttf"; path = "../assets/fonts/OpenSans-SemiBold.ttf"; sourceTree = "<group>"; };
|
|
49
|
-
3031A8A925194771A2DEE557 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-Regular.ttf"; path = "../assets/fonts/OpenSans-Regular.ttf"; sourceTree = "<group>"; };
|
|
50
22
|
3B4392A12AC88292D35C810B /* Pods-blankTemplate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-blankTemplate.debug.xcconfig"; path = "Target Support Files/Pods-blankTemplate/Pods-blankTemplate.debug.xcconfig"; sourceTree = "<group>"; };
|
|
51
23
|
5709B34CF0A7D63546082F79 /* Pods-blankTemplate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-blankTemplate.release.xcconfig"; path = "Target Support Files/Pods-blankTemplate/Pods-blankTemplate.release.xcconfig"; sourceTree = "<group>"; };
|
|
52
|
-
5B7EB9410499542E8C5724F5 /* Pods-blankTemplate-blankTemplateTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-blankTemplate-blankTemplateTests.debug.xcconfig"; path = "Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
53
24
|
5DCACB8F33CDC322A6C60F78 /* libPods-blankTemplate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-blankTemplate.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
25
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = blankTemplate/AppDelegate.swift; sourceTree = "<group>"; };
|
|
54
26
|
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = blankTemplate/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
55
|
-
89C6BE57DB24E9ADA2F236DE /* Pods-blankTemplate-blankTemplateTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-blankTemplate-blankTemplateTests.release.xcconfig"; path = "Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
56
|
-
D12E18218E10642B6A49CB3E /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = blankTemplate/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
57
|
-
E2A5726D55904784B264106E /* OpenSans-ExtraBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-ExtraBold.ttf"; path = "../assets/fonts/OpenSans-ExtraBold.ttf"; sourceTree = "<group>"; };
|
|
58
|
-
EC71A9630CF14940933E4407 /* OpenSans-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-Bold.ttf"; path = "../assets/fonts/OpenSans-Bold.ttf"; sourceTree = "<group>"; };
|
|
59
27
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
60
28
|
/* End PBXFileReference section */
|
|
61
29
|
|
|
62
30
|
/* Begin PBXFrameworksBuildPhase section */
|
|
63
|
-
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
|
64
|
-
isa = PBXFrameworksBuildPhase;
|
|
65
|
-
buildActionMask = 2147483647;
|
|
66
|
-
files = (
|
|
67
|
-
7699B88040F8A987B510C191 /* libPods-blankTemplate-blankTemplateTests.a in Frameworks */,
|
|
68
|
-
);
|
|
69
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
70
|
-
};
|
|
71
31
|
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
72
32
|
isa = PBXFrameworksBuildPhase;
|
|
73
33
|
buildActionMask = 2147483647;
|
|
@@ -79,34 +39,14 @@
|
|
|
79
39
|
/* End PBXFrameworksBuildPhase section */
|
|
80
40
|
|
|
81
41
|
/* Begin PBXGroup section */
|
|
82
|
-
00E356EF1AD99517003FC87E /* blankTemplateTests */ = {
|
|
83
|
-
isa = PBXGroup;
|
|
84
|
-
children = (
|
|
85
|
-
00E356F21AD99517003FC87E /* blankTemplateTests.m */,
|
|
86
|
-
00E356F01AD99517003FC87E /* Supporting Files */,
|
|
87
|
-
);
|
|
88
|
-
path = blankTemplateTests;
|
|
89
|
-
sourceTree = "<group>";
|
|
90
|
-
};
|
|
91
|
-
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
|
92
|
-
isa = PBXGroup;
|
|
93
|
-
children = (
|
|
94
|
-
00E356F11AD99517003FC87E /* Info.plist */,
|
|
95
|
-
);
|
|
96
|
-
name = "Supporting Files";
|
|
97
|
-
sourceTree = "<group>";
|
|
98
|
-
};
|
|
99
42
|
13B07FAE1A68108700A75B9A /* blankTemplate */ = {
|
|
100
43
|
isa = PBXGroup;
|
|
101
44
|
children = (
|
|
102
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
103
|
-
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
|
104
45
|
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
46
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */,
|
|
105
47
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
106
48
|
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
107
|
-
13B07FB71A68108700A75B9A /* main.m */,
|
|
108
49
|
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
109
|
-
D12E18218E10642B6A49CB3E /* PrivacyInfo.xcprivacy */,
|
|
110
50
|
);
|
|
111
51
|
name = blankTemplate;
|
|
112
52
|
sourceTree = "<group>";
|
|
@@ -116,24 +56,10 @@
|
|
|
116
56
|
children = (
|
|
117
57
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
118
58
|
5DCACB8F33CDC322A6C60F78 /* libPods-blankTemplate.a */,
|
|
119
|
-
19F6CBCC0A4E27FBF8BF4A61 /* libPods-blankTemplate-blankTemplateTests.a */,
|
|
120
59
|
);
|
|
121
60
|
name = Frameworks;
|
|
122
61
|
sourceTree = "<group>";
|
|
123
62
|
};
|
|
124
|
-
690B9B8055CE4088BA942DF3 /* Resources */ = {
|
|
125
|
-
isa = PBXGroup;
|
|
126
|
-
children = (
|
|
127
|
-
EC71A9630CF14940933E4407 /* OpenSans-Bold.ttf */,
|
|
128
|
-
E2A5726D55904784B264106E /* OpenSans-ExtraBold.ttf */,
|
|
129
|
-
0DDB34EDE26849A38E2698AB /* OpenSans-Light.ttf */,
|
|
130
|
-
3031A8A925194771A2DEE557 /* OpenSans-Regular.ttf */,
|
|
131
|
-
22EF0808E5BA4AD8BAB11BB6 /* OpenSans-SemiBold.ttf */,
|
|
132
|
-
);
|
|
133
|
-
name = Resources;
|
|
134
|
-
path = "";
|
|
135
|
-
sourceTree = "<group>";
|
|
136
|
-
};
|
|
137
63
|
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
138
64
|
isa = PBXGroup;
|
|
139
65
|
children = (
|
|
@@ -146,11 +72,9 @@
|
|
|
146
72
|
children = (
|
|
147
73
|
13B07FAE1A68108700A75B9A /* blankTemplate */,
|
|
148
74
|
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
149
|
-
00E356EF1AD99517003FC87E /* blankTemplateTests */,
|
|
150
75
|
83CBBA001A601CBA00E9B192 /* Products */,
|
|
151
76
|
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
152
77
|
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
153
|
-
690B9B8055CE4088BA942DF3 /* Resources */,
|
|
154
78
|
);
|
|
155
79
|
indentWidth = 2;
|
|
156
80
|
sourceTree = "<group>";
|
|
@@ -161,7 +85,6 @@
|
|
|
161
85
|
isa = PBXGroup;
|
|
162
86
|
children = (
|
|
163
87
|
13B07F961A680F5B00A75B9A /* blankTemplate.app */,
|
|
164
|
-
00E356EE1AD99517003FC87E /* blankTemplateTests.xctest */,
|
|
165
88
|
);
|
|
166
89
|
name = Products;
|
|
167
90
|
sourceTree = "<group>";
|
|
@@ -171,8 +94,6 @@
|
|
|
171
94
|
children = (
|
|
172
95
|
3B4392A12AC88292D35C810B /* Pods-blankTemplate.debug.xcconfig */,
|
|
173
96
|
5709B34CF0A7D63546082F79 /* Pods-blankTemplate.release.xcconfig */,
|
|
174
|
-
5B7EB9410499542E8C5724F5 /* Pods-blankTemplate-blankTemplateTests.debug.xcconfig */,
|
|
175
|
-
89C6BE57DB24E9ADA2F236DE /* Pods-blankTemplate-blankTemplateTests.release.xcconfig */,
|
|
176
97
|
);
|
|
177
98
|
path = Pods;
|
|
178
99
|
sourceTree = "<group>";
|
|
@@ -180,27 +101,6 @@
|
|
|
180
101
|
/* End PBXGroup section */
|
|
181
102
|
|
|
182
103
|
/* Begin PBXNativeTarget section */
|
|
183
|
-
00E356ED1AD99517003FC87E /* blankTemplateTests */ = {
|
|
184
|
-
isa = PBXNativeTarget;
|
|
185
|
-
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "blankTemplateTests" */;
|
|
186
|
-
buildPhases = (
|
|
187
|
-
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
|
|
188
|
-
00E356EA1AD99517003FC87E /* Sources */,
|
|
189
|
-
00E356EB1AD99517003FC87E /* Frameworks */,
|
|
190
|
-
00E356EC1AD99517003FC87E /* Resources */,
|
|
191
|
-
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
|
|
192
|
-
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
|
|
193
|
-
);
|
|
194
|
-
buildRules = (
|
|
195
|
-
);
|
|
196
|
-
dependencies = (
|
|
197
|
-
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
|
198
|
-
);
|
|
199
|
-
name = blankTemplateTests;
|
|
200
|
-
productName = blankTemplateTests;
|
|
201
|
-
productReference = 00E356EE1AD99517003FC87E /* blankTemplateTests.xctest */;
|
|
202
|
-
productType = "com.apple.product-type.bundle.unit-test";
|
|
203
|
-
};
|
|
204
104
|
13B07F861A680F5B00A75B9A /* blankTemplate */ = {
|
|
205
105
|
isa = PBXNativeTarget;
|
|
206
106
|
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "blankTemplate" */;
|
|
@@ -230,10 +130,6 @@
|
|
|
230
130
|
attributes = {
|
|
231
131
|
LastUpgradeCheck = 1210;
|
|
232
132
|
TargetAttributes = {
|
|
233
|
-
00E356ED1AD99517003FC87E = {
|
|
234
|
-
CreatedOnToolsVersion = 6.2;
|
|
235
|
-
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
236
|
-
};
|
|
237
133
|
13B07F861A680F5B00A75B9A = {
|
|
238
134
|
LastSwiftMigration = 1120;
|
|
239
135
|
};
|
|
@@ -253,31 +149,18 @@
|
|
|
253
149
|
projectRoot = "";
|
|
254
150
|
targets = (
|
|
255
151
|
13B07F861A680F5B00A75B9A /* blankTemplate */,
|
|
256
|
-
00E356ED1AD99517003FC87E /* blankTemplateTests */,
|
|
257
152
|
);
|
|
258
153
|
};
|
|
259
154
|
/* End PBXProject section */
|
|
260
155
|
|
|
261
156
|
/* Begin PBXResourcesBuildPhase section */
|
|
262
|
-
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
263
|
-
isa = PBXResourcesBuildPhase;
|
|
264
|
-
buildActionMask = 2147483647;
|
|
265
|
-
files = (
|
|
266
|
-
);
|
|
267
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
268
|
-
};
|
|
269
157
|
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
270
158
|
isa = PBXResourcesBuildPhase;
|
|
271
159
|
buildActionMask = 2147483647;
|
|
272
160
|
files = (
|
|
273
161
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
274
162
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
275
|
-
|
|
276
|
-
CD61E800382B4B8280951825 /* OpenSans-Bold.ttf in Resources */,
|
|
277
|
-
BF4F5A4E7CB546E69141454B /* OpenSans-ExtraBold.ttf in Resources */,
|
|
278
|
-
F27F1270ABE248FCAACEDCCF /* OpenSans-Light.ttf in Resources */,
|
|
279
|
-
34869A713A0B4342A7AA62AE /* OpenSans-Regular.ttf in Resources */,
|
|
280
|
-
25C7C70C6173488FB4246E37 /* OpenSans-SemiBold.ttf in Resources */,
|
|
163
|
+
3C9C40EEC2EBCF8D684D73AF /* PrivacyInfo.xcprivacy in Resources */,
|
|
281
164
|
);
|
|
282
165
|
runOnlyForDeploymentPostprocessing = 0;
|
|
283
166
|
};
|
|
@@ -317,28 +200,6 @@
|
|
|
317
200
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-frameworks.sh\"\n";
|
|
318
201
|
showEnvVarsInLog = 0;
|
|
319
202
|
};
|
|
320
|
-
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
|
|
321
|
-
isa = PBXShellScriptBuildPhase;
|
|
322
|
-
buildActionMask = 2147483647;
|
|
323
|
-
files = (
|
|
324
|
-
);
|
|
325
|
-
inputFileListPaths = (
|
|
326
|
-
);
|
|
327
|
-
inputPaths = (
|
|
328
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
329
|
-
"${PODS_ROOT}/Manifest.lock",
|
|
330
|
-
);
|
|
331
|
-
name = "[CP] Check Pods Manifest.lock";
|
|
332
|
-
outputFileListPaths = (
|
|
333
|
-
);
|
|
334
|
-
outputPaths = (
|
|
335
|
-
"$(DERIVED_FILE_DIR)/Pods-blankTemplate-blankTemplateTests-checkManifestLockResult.txt",
|
|
336
|
-
);
|
|
337
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
338
|
-
shellPath = /bin/sh;
|
|
339
|
-
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
340
|
-
showEnvVarsInLog = 0;
|
|
341
|
-
};
|
|
342
203
|
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
343
204
|
isa = PBXShellScriptBuildPhase;
|
|
344
205
|
buildActionMask = 2147483647;
|
|
@@ -361,23 +222,6 @@
|
|
|
361
222
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
362
223
|
showEnvVarsInLog = 0;
|
|
363
224
|
};
|
|
364
|
-
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
|
|
365
|
-
isa = PBXShellScriptBuildPhase;
|
|
366
|
-
buildActionMask = 2147483647;
|
|
367
|
-
files = (
|
|
368
|
-
);
|
|
369
|
-
inputFileListPaths = (
|
|
370
|
-
"${PODS_ROOT}/Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
371
|
-
);
|
|
372
|
-
name = "[CP] Embed Pods Frameworks";
|
|
373
|
-
outputFileListPaths = (
|
|
374
|
-
"${PODS_ROOT}/Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
375
|
-
);
|
|
376
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
377
|
-
shellPath = /bin/sh;
|
|
378
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests-frameworks.sh\"\n";
|
|
379
|
-
showEnvVarsInLog = 0;
|
|
380
|
-
};
|
|
381
225
|
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
382
226
|
isa = PBXShellScriptBuildPhase;
|
|
383
227
|
buildActionMask = 2147483647;
|
|
@@ -395,105 +239,20 @@
|
|
|
395
239
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-resources.sh\"\n";
|
|
396
240
|
showEnvVarsInLog = 0;
|
|
397
241
|
};
|
|
398
|
-
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
|
|
399
|
-
isa = PBXShellScriptBuildPhase;
|
|
400
|
-
buildActionMask = 2147483647;
|
|
401
|
-
files = (
|
|
402
|
-
);
|
|
403
|
-
inputFileListPaths = (
|
|
404
|
-
"${PODS_ROOT}/Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
405
|
-
);
|
|
406
|
-
name = "[CP] Copy Pods Resources";
|
|
407
|
-
outputFileListPaths = (
|
|
408
|
-
"${PODS_ROOT}/Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
409
|
-
);
|
|
410
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
411
|
-
shellPath = /bin/sh;
|
|
412
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-blankTemplate-blankTemplateTests/Pods-blankTemplate-blankTemplateTests-resources.sh\"\n";
|
|
413
|
-
showEnvVarsInLog = 0;
|
|
414
|
-
};
|
|
415
242
|
/* End PBXShellScriptBuildPhase section */
|
|
416
243
|
|
|
417
244
|
/* Begin PBXSourcesBuildPhase section */
|
|
418
|
-
00E356EA1AD99517003FC87E /* Sources */ = {
|
|
419
|
-
isa = PBXSourcesBuildPhase;
|
|
420
|
-
buildActionMask = 2147483647;
|
|
421
|
-
files = (
|
|
422
|
-
00E356F31AD99517003FC87E /* blankTemplateTests.m in Sources */,
|
|
423
|
-
);
|
|
424
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
425
|
-
};
|
|
426
245
|
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
427
246
|
isa = PBXSourcesBuildPhase;
|
|
428
247
|
buildActionMask = 2147483647;
|
|
429
248
|
files = (
|
|
430
|
-
|
|
431
|
-
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
249
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
|
|
432
250
|
);
|
|
433
251
|
runOnlyForDeploymentPostprocessing = 0;
|
|
434
252
|
};
|
|
435
253
|
/* End PBXSourcesBuildPhase section */
|
|
436
254
|
|
|
437
|
-
/* Begin PBXTargetDependency section */
|
|
438
|
-
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
|
439
|
-
isa = PBXTargetDependency;
|
|
440
|
-
target = 13B07F861A680F5B00A75B9A /* blankTemplate */;
|
|
441
|
-
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
|
442
|
-
};
|
|
443
|
-
/* End PBXTargetDependency section */
|
|
444
|
-
|
|
445
255
|
/* Begin XCBuildConfiguration section */
|
|
446
|
-
00E356F61AD99517003FC87E /* Debug */ = {
|
|
447
|
-
isa = XCBuildConfiguration;
|
|
448
|
-
baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-blankTemplate-blankTemplateTests.debug.xcconfig */;
|
|
449
|
-
buildSettings = {
|
|
450
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
451
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
452
|
-
"DEBUG=1",
|
|
453
|
-
"$(inherited)",
|
|
454
|
-
);
|
|
455
|
-
INFOPLIST_FILE = blankTemplateTests/Info.plist;
|
|
456
|
-
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
457
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
458
|
-
"$(inherited)",
|
|
459
|
-
"@executable_path/Frameworks",
|
|
460
|
-
"@loader_path/Frameworks",
|
|
461
|
-
);
|
|
462
|
-
OTHER_LDFLAGS = (
|
|
463
|
-
"-ObjC",
|
|
464
|
-
"-lc++",
|
|
465
|
-
"$(inherited)",
|
|
466
|
-
);
|
|
467
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
468
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
469
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/blankTemplate.app/blankTemplate";
|
|
470
|
-
};
|
|
471
|
-
name = Debug;
|
|
472
|
-
};
|
|
473
|
-
00E356F71AD99517003FC87E /* Release */ = {
|
|
474
|
-
isa = XCBuildConfiguration;
|
|
475
|
-
baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-blankTemplate-blankTemplateTests.release.xcconfig */;
|
|
476
|
-
buildSettings = {
|
|
477
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
478
|
-
COPY_PHASE_STRIP = NO;
|
|
479
|
-
INFOPLIST_FILE = blankTemplateTests/Info.plist;
|
|
480
|
-
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
481
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
482
|
-
"$(inherited)",
|
|
483
|
-
"@executable_path/Frameworks",
|
|
484
|
-
"@loader_path/Frameworks",
|
|
485
|
-
);
|
|
486
|
-
OTHER_LDFLAGS = (
|
|
487
|
-
"-ObjC",
|
|
488
|
-
"-lc++",
|
|
489
|
-
"$(inherited)",
|
|
490
|
-
);
|
|
491
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
492
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
493
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/blankTemplate.app/blankTemplate";
|
|
494
|
-
};
|
|
495
|
-
name = Release;
|
|
496
|
-
};
|
|
497
256
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
498
257
|
isa = XCBuildConfiguration;
|
|
499
258
|
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-blankTemplate.debug.xcconfig */;
|
|
@@ -503,6 +262,7 @@
|
|
|
503
262
|
CURRENT_PROJECT_VERSION = 1;
|
|
504
263
|
ENABLE_BITCODE = NO;
|
|
505
264
|
INFOPLIST_FILE = blankTemplate/Info.plist;
|
|
265
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
506
266
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
507
267
|
"$(inherited)",
|
|
508
268
|
"@executable_path/Frameworks",
|
|
@@ -529,6 +289,7 @@
|
|
|
529
289
|
CLANG_ENABLE_MODULES = YES;
|
|
530
290
|
CURRENT_PROJECT_VERSION = 1;
|
|
531
291
|
INFOPLIST_FILE = blankTemplate/Info.plist;
|
|
292
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
532
293
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
533
294
|
"$(inherited)",
|
|
534
295
|
"@executable_path/Frameworks",
|
|
@@ -550,7 +311,6 @@
|
|
|
550
311
|
isa = XCBuildConfiguration;
|
|
551
312
|
buildSettings = {
|
|
552
313
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
553
|
-
CC = "";
|
|
554
314
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
555
315
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
556
316
|
CLANG_CXX_LIBRARY = "libc++";
|
|
@@ -578,7 +338,6 @@
|
|
|
578
338
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
579
339
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
580
340
|
COPY_PHASE_STRIP = NO;
|
|
581
|
-
CXX = "";
|
|
582
341
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
583
342
|
ENABLE_TESTABILITY = YES;
|
|
584
343
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
@@ -597,9 +356,7 @@
|
|
|
597
356
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
598
357
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
599
358
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
600
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
601
|
-
LD = "";
|
|
602
|
-
LDPLUSPLUS = "";
|
|
359
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
603
360
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
604
361
|
/usr/lib/swift,
|
|
605
362
|
"$(inherited)",
|
|
@@ -625,6 +382,7 @@
|
|
|
625
382
|
);
|
|
626
383
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
627
384
|
SDKROOT = iphoneos;
|
|
385
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
628
386
|
USE_HERMES = true;
|
|
629
387
|
};
|
|
630
388
|
name = Debug;
|
|
@@ -633,7 +391,6 @@
|
|
|
633
391
|
isa = XCBuildConfiguration;
|
|
634
392
|
buildSettings = {
|
|
635
393
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
636
|
-
CC = "";
|
|
637
394
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
638
395
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
639
396
|
CLANG_CXX_LIBRARY = "libc++";
|
|
@@ -661,7 +418,6 @@
|
|
|
661
418
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
662
419
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
663
420
|
COPY_PHASE_STRIP = YES;
|
|
664
|
-
CXX = "";
|
|
665
421
|
ENABLE_NS_ASSERTIONS = NO;
|
|
666
422
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
667
423
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
@@ -673,9 +429,7 @@
|
|
|
673
429
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
674
430
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
675
431
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
676
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
677
|
-
LD = "";
|
|
678
|
-
LDPLUSPLUS = "";
|
|
432
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
679
433
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
680
434
|
/usr/lib/swift,
|
|
681
435
|
"$(inherited)",
|
|
@@ -708,15 +462,6 @@
|
|
|
708
462
|
/* End XCBuildConfiguration section */
|
|
709
463
|
|
|
710
464
|
/* Begin XCConfigurationList section */
|
|
711
|
-
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "blankTemplateTests" */ = {
|
|
712
|
-
isa = XCConfigurationList;
|
|
713
|
-
buildConfigurations = (
|
|
714
|
-
00E356F61AD99517003FC87E /* Debug */,
|
|
715
|
-
00E356F71AD99517003FC87E /* Release */,
|
|
716
|
-
);
|
|
717
|
-
defaultConfigurationIsVisible = 0;
|
|
718
|
-
defaultConfigurationName = Release;
|
|
719
|
-
};
|
|
720
465
|
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "blankTemplate" */ = {
|
|
721
466
|
isa = XCConfigurationList;
|
|
722
467
|
buildConfigurations = (
|
package/template/metro.config.js
CHANGED
|
@@ -4,7 +4,7 @@ const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
|
|
|
4
4
|
* Metro configuration
|
|
5
5
|
* https://reactnative.dev/docs/metro
|
|
6
6
|
*
|
|
7
|
-
* @type {import('metro-config').MetroConfig}
|
|
7
|
+
* @type {import('@react-native/metro-config').MetroConfig}
|
|
8
8
|
*/
|
|
9
9
|
const config = {};
|
|
10
10
|
|