@brightlayer-ui/react-native-template-authentication-typescript 3.0.0 → 4.0.0-alpha.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 +22 -9
- package/README.md +10 -8
- package/package.json +2 -2
- package/template/.prettierrc.js +0 -2
- package/template/App.tsx +6 -7
- package/template/Gemfile +11 -2
- package/template/android/app/build.gradle +15 -13
- package/template/android/app/src/main/AndroidManifest.xml +2 -1
- package/template/android/app/src/main/java/com/example/MainApplication.kt +4 -11
- package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +2 -1
- 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 +13 -11
- package/template/android/gradlew.bat +19 -12
- package/template/android/link-assets-manifest.json +23 -23
- package/template/android/settings.gradle +3 -1
- package/template/ios/Podfile +3 -27
- package/template/ios/Podfile.lock +2224 -662
- package/template/ios/example/AppDelegate.swift +48 -0
- package/template/ios/example/Info.plist +16 -26
- package/template/ios/example/PrivacyInfo.xcprivacy +37 -0
- package/template/ios/example.xcodeproj/project.pbxproj +26 -268
- package/template/ios/exampleTests/Info.plist +31 -18
- package/template/ios/link-assets-manifest.json +23 -23
- package/template/package.json +52 -46
- package/template/src/components/UserMenuComponent.tsx +1 -3
- package/template/src/navigation/navigation-drawer.tsx +1 -1
- package/template/translations/i18n.ts +5 -5
- package/template/tsconfig.json +11 -55
- package/template/yarn.lock +4174 -4298
- package/template/_gitignore +0 -64
- package/template/ios/example/AppDelegate.h +0 -6
- package/template/ios/example/AppDelegate.mm +0 -31
- package/template/ios/example/main.m +0 -10
- package/template/ios/exampleTests/exampleTests.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: "example",
|
|
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
|
+
}
|
|
@@ -33,36 +33,13 @@
|
|
|
33
33
|
</dict>
|
|
34
34
|
<key>NSLocationWhenInUseUsageDescription</key>
|
|
35
35
|
<string></string>
|
|
36
|
-
<key>
|
|
37
|
-
<
|
|
38
|
-
<string>AntDesign.ttf</string>
|
|
39
|
-
<string>Entypo.ttf</string>
|
|
40
|
-
<string>EvilIcons.ttf</string>
|
|
41
|
-
<string>Feather.ttf</string>
|
|
42
|
-
<string>FontAwesome.ttf</string>
|
|
43
|
-
<string>FontAwesome5_Brands.ttf</string>
|
|
44
|
-
<string>FontAwesome5_Regular.ttf</string>
|
|
45
|
-
<string>FontAwesome5_Solid.ttf</string>
|
|
46
|
-
<string>Foundation.ttf</string>
|
|
47
|
-
<string>Ionicons.ttf</string>
|
|
48
|
-
<string>MaterialIcons.ttf</string>
|
|
49
|
-
<string>MaterialCommunityIcons.ttf</string>
|
|
50
|
-
<string>SimpleLineIcons.ttf</string>
|
|
51
|
-
<string>Octicons.ttf</string>
|
|
52
|
-
<string>Zocial.ttf</string>
|
|
53
|
-
<string>Fontisto.ttf</string>
|
|
54
|
-
<string>BLUIIcons.ttf</string>
|
|
55
|
-
<string>OpenSans-Bold.ttf</string>
|
|
56
|
-
<string>OpenSans-ExtraBold.ttf</string>
|
|
57
|
-
<string>OpenSans-Light.ttf</string>
|
|
58
|
-
<string>OpenSans-Regular.ttf</string>
|
|
59
|
-
<string>OpenSans-SemiBold.ttf</string>
|
|
60
|
-
</array>
|
|
36
|
+
<key>RCTNewArchEnabled</key>
|
|
37
|
+
<true/>
|
|
61
38
|
<key>UILaunchStoryboardName</key>
|
|
62
39
|
<string>LaunchScreen</string>
|
|
63
40
|
<key>UIRequiredDeviceCapabilities</key>
|
|
64
41
|
<array>
|
|
65
|
-
<string>
|
|
42
|
+
<string>arm64</string>
|
|
66
43
|
</array>
|
|
67
44
|
<key>UISupportedInterfaceOrientations</key>
|
|
68
45
|
<array>
|
|
@@ -72,5 +49,18 @@
|
|
|
72
49
|
</array>
|
|
73
50
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
74
51
|
<false/>
|
|
52
|
+
<key>UIAppFonts</key>
|
|
53
|
+
<array>
|
|
54
|
+
<string>MaterialIcons.ttf</string>
|
|
55
|
+
<string>MaterialCommunityIcons.ttf</string>
|
|
56
|
+
<string>BLUIIcons.ttf</string>
|
|
57
|
+
<string>OpenSans-Bold.ttf</string>
|
|
58
|
+
<string>OpenSans-ExtraBold.ttf</string>
|
|
59
|
+
<string>OpenSans-Light.ttf</string>
|
|
60
|
+
<string>OpenSans-Regular.ttf</string>
|
|
61
|
+
<string>OpenSans-SemiBold.ttf</string>
|
|
62
|
+
<string>BrightlayerUIIcons.ttf</string>
|
|
63
|
+
<string>MaterialDesignIcons.ttf</string>
|
|
64
|
+
</array>
|
|
75
65
|
</dict>
|
|
76
66
|
</plist>
|
|
@@ -0,0 +1,37 @@
|
|
|
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>NSPrivacyAccessedAPITypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
<dict>
|
|
8
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
9
|
+
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
|
|
10
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
11
|
+
<array>
|
|
12
|
+
<string>C617.1</string>
|
|
13
|
+
</array>
|
|
14
|
+
</dict>
|
|
15
|
+
<dict>
|
|
16
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
17
|
+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
|
|
18
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
19
|
+
<array>
|
|
20
|
+
<string>CA92.1</string>
|
|
21
|
+
</array>
|
|
22
|
+
</dict>
|
|
23
|
+
<dict>
|
|
24
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
25
|
+
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
|
|
26
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
27
|
+
<array>
|
|
28
|
+
<string>35F9.1</string>
|
|
29
|
+
</array>
|
|
30
|
+
</dict>
|
|
31
|
+
</array>
|
|
32
|
+
<key>NSPrivacyCollectedDataTypes</key>
|
|
33
|
+
<array/>
|
|
34
|
+
<key>NSPrivacyTracking</key>
|
|
35
|
+
<false/>
|
|
36
|
+
</dict>
|
|
37
|
+
</plist>
|
|
@@ -7,64 +7,27 @@
|
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
-
00E356F31AD99517003FC87E /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.m */; };
|
|
11
10
|
0C80B921A6F3F58F76C31292 /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-example.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
|
-
5C4CD023189749528BE929CE /* OpenSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 566E419BC2E14F07A312B82E /* OpenSans-Bold.ttf */; };
|
|
17
|
-
69A537ACB0D24CE791A3196B /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FDEC93D7DC24446590FE1000 /* OpenSans-Regular.ttf */; };
|
|
18
|
-
726D989791B24C15BEBBA47B /* OpenSans-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EDEDEA49CA6A486CB83DEE46 /* OpenSans-Light.ttf */; };
|
|
19
|
-
7699B88040F8A987B510C191 /* libPods-example-exampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-example-exampleTests.a */; };
|
|
12
|
+
37B4427036D9526BE658D971 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
|
|
13
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
|
|
20
14
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
21
|
-
9CA7DDD90683481696CCF20A /* OpenSans-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 60359C2DCB98467883D4C24E /* OpenSans-ExtraBold.ttf */; };
|
|
22
15
|
/* End PBXBuildFile section */
|
|
23
16
|
|
|
24
|
-
/* Begin PBXContainerItemProxy section */
|
|
25
|
-
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
|
26
|
-
isa = PBXContainerItemProxy;
|
|
27
|
-
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
28
|
-
proxyType = 1;
|
|
29
|
-
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
30
|
-
remoteInfo = example;
|
|
31
|
-
};
|
|
32
|
-
/* End PBXContainerItemProxy section */
|
|
33
|
-
|
|
34
17
|
/* Begin PBXFileReference section */
|
|
35
|
-
00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
36
|
-
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
37
|
-
00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = "<group>"; };
|
|
38
18
|
13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
39
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = "<group>"; };
|
|
40
|
-
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = example/AppDelegate.mm; sourceTree = "<group>"; };
|
|
41
19
|
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = "<group>"; };
|
|
42
20
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = "<group>"; };
|
|
43
|
-
|
|
44
|
-
19F6CBCC0A4E27FBF8BF4A61 /* libPods-example-exampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example-exampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
21
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = example/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
45
22
|
3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.debug.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.debug.xcconfig"; sourceTree = "<group>"; };
|
|
46
|
-
460012A11B184F8B91CF01A1 /* OpenSans-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-SemiBold.ttf"; path = "../assets/fonts/OpenSans-SemiBold.ttf"; sourceTree = "<group>"; };
|
|
47
|
-
566E419BC2E14F07A312B82E /* OpenSans-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-Bold.ttf"; path = "../assets/fonts/OpenSans-Bold.ttf"; sourceTree = "<group>"; };
|
|
48
23
|
5709B34CF0A7D63546082F79 /* Pods-example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.release.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.release.xcconfig"; sourceTree = "<group>"; };
|
|
49
|
-
5B7EB9410499542E8C5724F5 /* Pods-example-exampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.debug.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
50
24
|
5DCACB8F33CDC322A6C60F78 /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
51
|
-
|
|
25
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = example/AppDelegate.swift; sourceTree = "<group>"; };
|
|
52
26
|
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
53
|
-
89C6BE57DB24E9ADA2F236DE /* Pods-example-exampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.release.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
54
27
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
55
|
-
EDEDEA49CA6A486CB83DEE46 /* OpenSans-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-Light.ttf"; path = "../assets/fonts/OpenSans-Light.ttf"; sourceTree = "<group>"; };
|
|
56
|
-
FDEC93D7DC24446590FE1000 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "OpenSans-Regular.ttf"; path = "../assets/fonts/OpenSans-Regular.ttf"; sourceTree = "<group>"; };
|
|
57
28
|
/* End PBXFileReference section */
|
|
58
29
|
|
|
59
30
|
/* Begin PBXFrameworksBuildPhase section */
|
|
60
|
-
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
|
61
|
-
isa = PBXFrameworksBuildPhase;
|
|
62
|
-
buildActionMask = 2147483647;
|
|
63
|
-
files = (
|
|
64
|
-
7699B88040F8A987B510C191 /* libPods-example-exampleTests.a in Frameworks */,
|
|
65
|
-
);
|
|
66
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
67
|
-
};
|
|
68
31
|
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
69
32
|
isa = PBXFrameworksBuildPhase;
|
|
70
33
|
buildActionMask = 2147483647;
|
|
@@ -76,32 +39,14 @@
|
|
|
76
39
|
/* End PBXFrameworksBuildPhase section */
|
|
77
40
|
|
|
78
41
|
/* Begin PBXGroup section */
|
|
79
|
-
00E356EF1AD99517003FC87E /* exampleTests */ = {
|
|
80
|
-
isa = PBXGroup;
|
|
81
|
-
children = (
|
|
82
|
-
00E356F21AD99517003FC87E /* exampleTests.m */,
|
|
83
|
-
00E356F01AD99517003FC87E /* Supporting Files */,
|
|
84
|
-
);
|
|
85
|
-
path = exampleTests;
|
|
86
|
-
sourceTree = "<group>";
|
|
87
|
-
};
|
|
88
|
-
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
|
89
|
-
isa = PBXGroup;
|
|
90
|
-
children = (
|
|
91
|
-
00E356F11AD99517003FC87E /* Info.plist */,
|
|
92
|
-
);
|
|
93
|
-
name = "Supporting Files";
|
|
94
|
-
sourceTree = "<group>";
|
|
95
|
-
};
|
|
96
42
|
13B07FAE1A68108700A75B9A /* example */ = {
|
|
97
43
|
isa = PBXGroup;
|
|
98
44
|
children = (
|
|
99
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
100
|
-
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
|
101
45
|
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
46
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */,
|
|
102
47
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
103
48
|
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
104
|
-
|
|
49
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
105
50
|
);
|
|
106
51
|
name = example;
|
|
107
52
|
sourceTree = "<group>";
|
|
@@ -111,7 +56,6 @@
|
|
|
111
56
|
children = (
|
|
112
57
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
113
58
|
5DCACB8F33CDC322A6C60F78 /* libPods-example.a */,
|
|
114
|
-
19F6CBCC0A4E27FBF8BF4A61 /* libPods-example-exampleTests.a */,
|
|
115
59
|
);
|
|
116
60
|
name = Frameworks;
|
|
117
61
|
sourceTree = "<group>";
|
|
@@ -128,11 +72,9 @@
|
|
|
128
72
|
children = (
|
|
129
73
|
13B07FAE1A68108700A75B9A /* example */,
|
|
130
74
|
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
131
|
-
00E356EF1AD99517003FC87E /* exampleTests */,
|
|
132
75
|
83CBBA001A601CBA00E9B192 /* Products */,
|
|
133
76
|
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
134
77
|
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
135
|
-
992684D482764793A86F4DFA /* Resources */,
|
|
136
78
|
);
|
|
137
79
|
indentWidth = 2;
|
|
138
80
|
sourceTree = "<group>";
|
|
@@ -143,30 +85,15 @@
|
|
|
143
85
|
isa = PBXGroup;
|
|
144
86
|
children = (
|
|
145
87
|
13B07F961A680F5B00A75B9A /* example.app */,
|
|
146
|
-
00E356EE1AD99517003FC87E /* exampleTests.xctest */,
|
|
147
88
|
);
|
|
148
89
|
name = Products;
|
|
149
90
|
sourceTree = "<group>";
|
|
150
91
|
};
|
|
151
|
-
992684D482764793A86F4DFA /* Resources */ = {
|
|
152
|
-
isa = PBXGroup;
|
|
153
|
-
children = (
|
|
154
|
-
566E419BC2E14F07A312B82E /* OpenSans-Bold.ttf */,
|
|
155
|
-
60359C2DCB98467883D4C24E /* OpenSans-ExtraBold.ttf */,
|
|
156
|
-
EDEDEA49CA6A486CB83DEE46 /* OpenSans-Light.ttf */,
|
|
157
|
-
FDEC93D7DC24446590FE1000 /* OpenSans-Regular.ttf */,
|
|
158
|
-
460012A11B184F8B91CF01A1 /* OpenSans-SemiBold.ttf */,
|
|
159
|
-
);
|
|
160
|
-
name = Resources;
|
|
161
|
-
sourceTree = "<group>";
|
|
162
|
-
};
|
|
163
92
|
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
164
93
|
isa = PBXGroup;
|
|
165
94
|
children = (
|
|
166
95
|
3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */,
|
|
167
96
|
5709B34CF0A7D63546082F79 /* Pods-example.release.xcconfig */,
|
|
168
|
-
5B7EB9410499542E8C5724F5 /* Pods-example-exampleTests.debug.xcconfig */,
|
|
169
|
-
89C6BE57DB24E9ADA2F236DE /* Pods-example-exampleTests.release.xcconfig */,
|
|
170
97
|
);
|
|
171
98
|
path = Pods;
|
|
172
99
|
sourceTree = "<group>";
|
|
@@ -174,27 +101,6 @@
|
|
|
174
101
|
/* End PBXGroup section */
|
|
175
102
|
|
|
176
103
|
/* Begin PBXNativeTarget section */
|
|
177
|
-
00E356ED1AD99517003FC87E /* exampleTests */ = {
|
|
178
|
-
isa = PBXNativeTarget;
|
|
179
|
-
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */;
|
|
180
|
-
buildPhases = (
|
|
181
|
-
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
|
|
182
|
-
00E356EA1AD99517003FC87E /* Sources */,
|
|
183
|
-
00E356EB1AD99517003FC87E /* Frameworks */,
|
|
184
|
-
00E356EC1AD99517003FC87E /* Resources */,
|
|
185
|
-
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
|
|
186
|
-
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
|
|
187
|
-
);
|
|
188
|
-
buildRules = (
|
|
189
|
-
);
|
|
190
|
-
dependencies = (
|
|
191
|
-
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
|
192
|
-
);
|
|
193
|
-
name = exampleTests;
|
|
194
|
-
productName = exampleTests;
|
|
195
|
-
productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */;
|
|
196
|
-
productType = "com.apple.product-type.bundle.unit-test";
|
|
197
|
-
};
|
|
198
104
|
13B07F861A680F5B00A75B9A /* example */ = {
|
|
199
105
|
isa = PBXNativeTarget;
|
|
200
106
|
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
|
|
@@ -224,10 +130,6 @@
|
|
|
224
130
|
attributes = {
|
|
225
131
|
LastUpgradeCheck = 1210;
|
|
226
132
|
TargetAttributes = {
|
|
227
|
-
00E356ED1AD99517003FC87E = {
|
|
228
|
-
CreatedOnToolsVersion = 6.2;
|
|
229
|
-
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
230
|
-
};
|
|
231
133
|
13B07F861A680F5B00A75B9A = {
|
|
232
134
|
LastSwiftMigration = 1120;
|
|
233
135
|
};
|
|
@@ -247,30 +149,18 @@
|
|
|
247
149
|
projectRoot = "";
|
|
248
150
|
targets = (
|
|
249
151
|
13B07F861A680F5B00A75B9A /* example */,
|
|
250
|
-
00E356ED1AD99517003FC87E /* exampleTests */,
|
|
251
152
|
);
|
|
252
153
|
};
|
|
253
154
|
/* End PBXProject section */
|
|
254
155
|
|
|
255
156
|
/* Begin PBXResourcesBuildPhase section */
|
|
256
|
-
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
257
|
-
isa = PBXResourcesBuildPhase;
|
|
258
|
-
buildActionMask = 2147483647;
|
|
259
|
-
files = (
|
|
260
|
-
);
|
|
261
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
262
|
-
};
|
|
263
157
|
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
264
158
|
isa = PBXResourcesBuildPhase;
|
|
265
159
|
buildActionMask = 2147483647;
|
|
266
160
|
files = (
|
|
267
161
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
268
162
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
269
|
-
|
|
270
|
-
9CA7DDD90683481696CCF20A /* OpenSans-ExtraBold.ttf in Resources */,
|
|
271
|
-
726D989791B24C15BEBBA47B /* OpenSans-Light.ttf in Resources */,
|
|
272
|
-
69A537ACB0D24CE791A3196B /* OpenSans-Regular.ttf in Resources */,
|
|
273
|
-
3E5EEB5AF1AA45B89622F682 /* OpenSans-SemiBold.ttf in Resources */,
|
|
163
|
+
37B4427036D9526BE658D971 /* PrivacyInfo.xcprivacy in Resources */,
|
|
274
164
|
);
|
|
275
165
|
runOnlyForDeploymentPostprocessing = 0;
|
|
276
166
|
};
|
|
@@ -291,7 +181,7 @@
|
|
|
291
181
|
);
|
|
292
182
|
runOnlyForDeploymentPostprocessing = 0;
|
|
293
183
|
shellPath = /bin/sh;
|
|
294
|
-
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"
|
|
184
|
+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
295
185
|
};
|
|
296
186
|
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
297
187
|
isa = PBXShellScriptBuildPhase;
|
|
@@ -310,28 +200,6 @@
|
|
|
310
200
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
|
|
311
201
|
showEnvVarsInLog = 0;
|
|
312
202
|
};
|
|
313
|
-
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
|
|
314
|
-
isa = PBXShellScriptBuildPhase;
|
|
315
|
-
buildActionMask = 2147483647;
|
|
316
|
-
files = (
|
|
317
|
-
);
|
|
318
|
-
inputFileListPaths = (
|
|
319
|
-
);
|
|
320
|
-
inputPaths = (
|
|
321
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
322
|
-
"${PODS_ROOT}/Manifest.lock",
|
|
323
|
-
);
|
|
324
|
-
name = "[CP] Check Pods Manifest.lock";
|
|
325
|
-
outputFileListPaths = (
|
|
326
|
-
);
|
|
327
|
-
outputPaths = (
|
|
328
|
-
"$(DERIVED_FILE_DIR)/Pods-example-exampleTests-checkManifestLockResult.txt",
|
|
329
|
-
);
|
|
330
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
331
|
-
shellPath = /bin/sh;
|
|
332
|
-
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";
|
|
333
|
-
showEnvVarsInLog = 0;
|
|
334
|
-
};
|
|
335
203
|
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
336
204
|
isa = PBXShellScriptBuildPhase;
|
|
337
205
|
buildActionMask = 2147483647;
|
|
@@ -354,23 +222,6 @@
|
|
|
354
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";
|
|
355
223
|
showEnvVarsInLog = 0;
|
|
356
224
|
};
|
|
357
|
-
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
|
|
358
|
-
isa = PBXShellScriptBuildPhase;
|
|
359
|
-
buildActionMask = 2147483647;
|
|
360
|
-
files = (
|
|
361
|
-
);
|
|
362
|
-
inputFileListPaths = (
|
|
363
|
-
"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
364
|
-
);
|
|
365
|
-
name = "[CP] Embed Pods Frameworks";
|
|
366
|
-
outputFileListPaths = (
|
|
367
|
-
"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
368
|
-
);
|
|
369
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
370
|
-
shellPath = /bin/sh;
|
|
371
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks.sh\"\n";
|
|
372
|
-
showEnvVarsInLog = 0;
|
|
373
|
-
};
|
|
374
225
|
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
375
226
|
isa = PBXShellScriptBuildPhase;
|
|
376
227
|
buildActionMask = 2147483647;
|
|
@@ -388,105 +239,20 @@
|
|
|
388
239
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
|
|
389
240
|
showEnvVarsInLog = 0;
|
|
390
241
|
};
|
|
391
|
-
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
|
|
392
|
-
isa = PBXShellScriptBuildPhase;
|
|
393
|
-
buildActionMask = 2147483647;
|
|
394
|
-
files = (
|
|
395
|
-
);
|
|
396
|
-
inputFileListPaths = (
|
|
397
|
-
"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
398
|
-
);
|
|
399
|
-
name = "[CP] Copy Pods Resources";
|
|
400
|
-
outputFileListPaths = (
|
|
401
|
-
"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
402
|
-
);
|
|
403
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
404
|
-
shellPath = /bin/sh;
|
|
405
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources.sh\"\n";
|
|
406
|
-
showEnvVarsInLog = 0;
|
|
407
|
-
};
|
|
408
242
|
/* End PBXShellScriptBuildPhase section */
|
|
409
243
|
|
|
410
244
|
/* Begin PBXSourcesBuildPhase section */
|
|
411
|
-
00E356EA1AD99517003FC87E /* Sources */ = {
|
|
412
|
-
isa = PBXSourcesBuildPhase;
|
|
413
|
-
buildActionMask = 2147483647;
|
|
414
|
-
files = (
|
|
415
|
-
00E356F31AD99517003FC87E /* exampleTests.m in Sources */,
|
|
416
|
-
);
|
|
417
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
418
|
-
};
|
|
419
245
|
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
420
246
|
isa = PBXSourcesBuildPhase;
|
|
421
247
|
buildActionMask = 2147483647;
|
|
422
248
|
files = (
|
|
423
|
-
|
|
424
|
-
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
249
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
|
|
425
250
|
);
|
|
426
251
|
runOnlyForDeploymentPostprocessing = 0;
|
|
427
252
|
};
|
|
428
253
|
/* End PBXSourcesBuildPhase section */
|
|
429
254
|
|
|
430
|
-
/* Begin PBXTargetDependency section */
|
|
431
|
-
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
|
432
|
-
isa = PBXTargetDependency;
|
|
433
|
-
target = 13B07F861A680F5B00A75B9A /* example */;
|
|
434
|
-
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
|
435
|
-
};
|
|
436
|
-
/* End PBXTargetDependency section */
|
|
437
|
-
|
|
438
255
|
/* Begin XCBuildConfiguration section */
|
|
439
|
-
00E356F61AD99517003FC87E /* Debug */ = {
|
|
440
|
-
isa = XCBuildConfiguration;
|
|
441
|
-
baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-example-exampleTests.debug.xcconfig */;
|
|
442
|
-
buildSettings = {
|
|
443
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
444
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
445
|
-
"DEBUG=1",
|
|
446
|
-
"$(inherited)",
|
|
447
|
-
);
|
|
448
|
-
INFOPLIST_FILE = exampleTests/Info.plist;
|
|
449
|
-
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
450
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
451
|
-
"$(inherited)",
|
|
452
|
-
"@executable_path/Frameworks",
|
|
453
|
-
"@loader_path/Frameworks",
|
|
454
|
-
);
|
|
455
|
-
OTHER_LDFLAGS = (
|
|
456
|
-
"-ObjC",
|
|
457
|
-
"-lc++",
|
|
458
|
-
"$(inherited)",
|
|
459
|
-
);
|
|
460
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
461
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
462
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
|
|
463
|
-
};
|
|
464
|
-
name = Debug;
|
|
465
|
-
};
|
|
466
|
-
00E356F71AD99517003FC87E /* Release */ = {
|
|
467
|
-
isa = XCBuildConfiguration;
|
|
468
|
-
baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-example-exampleTests.release.xcconfig */;
|
|
469
|
-
buildSettings = {
|
|
470
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
471
|
-
COPY_PHASE_STRIP = NO;
|
|
472
|
-
INFOPLIST_FILE = exampleTests/Info.plist;
|
|
473
|
-
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
474
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
|
475
|
-
"$(inherited)",
|
|
476
|
-
"@executable_path/Frameworks",
|
|
477
|
-
"@loader_path/Frameworks",
|
|
478
|
-
);
|
|
479
|
-
OTHER_LDFLAGS = (
|
|
480
|
-
"-ObjC",
|
|
481
|
-
"-lc++",
|
|
482
|
-
"$(inherited)",
|
|
483
|
-
);
|
|
484
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
485
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
486
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
|
|
487
|
-
};
|
|
488
|
-
name = Release;
|
|
489
|
-
};
|
|
490
256
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
491
257
|
isa = XCBuildConfiguration;
|
|
492
258
|
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */;
|
|
@@ -496,6 +262,7 @@
|
|
|
496
262
|
CURRENT_PROJECT_VERSION = 1;
|
|
497
263
|
ENABLE_BITCODE = NO;
|
|
498
264
|
INFOPLIST_FILE = example/Info.plist;
|
|
265
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
499
266
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
500
267
|
"$(inherited)",
|
|
501
268
|
"@executable_path/Frameworks",
|
|
@@ -508,12 +275,8 @@
|
|
|
508
275
|
);
|
|
509
276
|
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
510
277
|
PRODUCT_NAME = example;
|
|
511
|
-
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
512
|
-
SUPPORTS_MACCATALYST = NO;
|
|
513
|
-
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
|
|
514
278
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
515
279
|
SWIFT_VERSION = 5.0;
|
|
516
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
517
280
|
VERSIONING_SYSTEM = "apple-generic";
|
|
518
281
|
};
|
|
519
282
|
name = Debug;
|
|
@@ -526,6 +289,7 @@
|
|
|
526
289
|
CLANG_ENABLE_MODULES = YES;
|
|
527
290
|
CURRENT_PROJECT_VERSION = 1;
|
|
528
291
|
INFOPLIST_FILE = example/Info.plist;
|
|
292
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
529
293
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
530
294
|
"$(inherited)",
|
|
531
295
|
"@executable_path/Frameworks",
|
|
@@ -538,11 +302,7 @@
|
|
|
538
302
|
);
|
|
539
303
|
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
540
304
|
PRODUCT_NAME = example;
|
|
541
|
-
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
542
|
-
SUPPORTS_MACCATALYST = NO;
|
|
543
|
-
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
|
|
544
305
|
SWIFT_VERSION = 5.0;
|
|
545
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
546
306
|
VERSIONING_SYSTEM = "apple-generic";
|
|
547
307
|
};
|
|
548
308
|
name = Release;
|
|
@@ -580,7 +340,7 @@
|
|
|
580
340
|
COPY_PHASE_STRIP = NO;
|
|
581
341
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
582
342
|
ENABLE_TESTABILITY = YES;
|
|
583
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
343
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
584
344
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
585
345
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
586
346
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
@@ -596,7 +356,7 @@
|
|
|
596
356
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
597
357
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
598
358
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
599
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
359
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
600
360
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
601
361
|
/usr/lib/swift,
|
|
602
362
|
"$(inherited)",
|
|
@@ -608,17 +368,21 @@
|
|
|
608
368
|
);
|
|
609
369
|
MTL_ENABLE_DEBUG_INFO = YES;
|
|
610
370
|
ONLY_ACTIVE_ARCH = YES;
|
|
611
|
-
OTHER_CFLAGS = "$(inherited)";
|
|
612
371
|
OTHER_CPLUSPLUSFLAGS = (
|
|
613
372
|
"$(OTHER_CFLAGS)",
|
|
614
373
|
"-DFOLLY_NO_CONFIG",
|
|
615
374
|
"-DFOLLY_MOBILE=1",
|
|
616
375
|
"-DFOLLY_USE_LIBCPP=1",
|
|
617
376
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
377
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
378
|
+
);
|
|
379
|
+
OTHER_LDFLAGS = (
|
|
380
|
+
"$(inherited)",
|
|
381
|
+
" ",
|
|
618
382
|
);
|
|
619
|
-
OTHER_LDFLAGS = "$(inherited)";
|
|
620
383
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
621
384
|
SDKROOT = iphoneos;
|
|
385
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
622
386
|
USE_HERMES = true;
|
|
623
387
|
};
|
|
624
388
|
name = Debug;
|
|
@@ -656,7 +420,7 @@
|
|
|
656
420
|
COPY_PHASE_STRIP = YES;
|
|
657
421
|
ENABLE_NS_ASSERTIONS = NO;
|
|
658
422
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
659
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
423
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
660
424
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
661
425
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
662
426
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
@@ -665,7 +429,7 @@
|
|
|
665
429
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
666
430
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
667
431
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
668
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
432
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
669
433
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
670
434
|
/usr/lib/swift,
|
|
671
435
|
"$(inherited)",
|
|
@@ -676,15 +440,18 @@
|
|
|
676
440
|
"\"$(inherited)\"",
|
|
677
441
|
);
|
|
678
442
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
679
|
-
OTHER_CFLAGS = "$(inherited)";
|
|
680
443
|
OTHER_CPLUSPLUSFLAGS = (
|
|
681
444
|
"$(OTHER_CFLAGS)",
|
|
682
445
|
"-DFOLLY_NO_CONFIG",
|
|
683
446
|
"-DFOLLY_MOBILE=1",
|
|
684
447
|
"-DFOLLY_USE_LIBCPP=1",
|
|
685
448
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
449
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
450
|
+
);
|
|
451
|
+
OTHER_LDFLAGS = (
|
|
452
|
+
"$(inherited)",
|
|
453
|
+
" ",
|
|
686
454
|
);
|
|
687
|
-
OTHER_LDFLAGS = "$(inherited)";
|
|
688
455
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
689
456
|
SDKROOT = iphoneos;
|
|
690
457
|
USE_HERMES = true;
|
|
@@ -695,15 +462,6 @@
|
|
|
695
462
|
/* End XCBuildConfiguration section */
|
|
696
463
|
|
|
697
464
|
/* Begin XCConfigurationList section */
|
|
698
|
-
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = {
|
|
699
|
-
isa = XCConfigurationList;
|
|
700
|
-
buildConfigurations = (
|
|
701
|
-
00E356F61AD99517003FC87E /* Debug */,
|
|
702
|
-
00E356F71AD99517003FC87E /* Release */,
|
|
703
|
-
);
|
|
704
|
-
defaultConfigurationIsVisible = 0;
|
|
705
|
-
defaultConfigurationName = Release;
|
|
706
|
-
};
|
|
707
465
|
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
|
|
708
466
|
isa = XCConfigurationList;
|
|
709
467
|
buildConfigurations = (
|