@brightlayer-ui/react-native-template-routing-typescript 4.0.0 → 4.1.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.
Files changed (20) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +1 -1
  3. package/template/android/app/src/main/java/com/routingtemplate/MainActivity.kt +1 -1
  4. package/template/android/app/src/main/res/values/strings.xml +1 -1
  5. package/template/android/settings.gradle +1 -1
  6. package/template/app.json +2 -2
  7. package/template/ios/Podfile +1 -1
  8. package/template/ios/Podfile.lock +1 -1
  9. package/template/ios/{blankTemplate → RoutingTemplate}/AppDelegate.swift +1 -1
  10. package/template/ios/{blankTemplate → RoutingTemplate}/Info.plist +2 -2
  11. package/template/ios/{blankTemplate → RoutingTemplate}/LaunchScreen.storyboard +1 -1
  12. package/template/ios/{blankTemplate.xcodeproj → RoutingTemplate.xcodeproj}/project.pbxproj +42 -40
  13. package/template/ios/{blankTemplate.xcodeproj/xcshareddata/xcschemes/blankTemplate.xcscheme → RoutingTemplate.xcodeproj/xcshareddata/xcschemes/RoutingTemplate.xcscheme} +12 -12
  14. package/template/ios/{blankTemplate.xcworkspace → RoutingTemplate.xcworkspace}/contents.xcworkspacedata +1 -1
  15. package/template/package.json +2 -2
  16. package/template/yarn.lock +4 -4
  17. /package/template/ios/{blankTemplate → RoutingTemplate}/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  18. /package/template/ios/{blankTemplate → RoutingTemplate}/Images.xcassets/Contents.json +0 -0
  19. /package/template/ios/{blankTemplate → RoutingTemplate}/PrivacyInfo.xcprivacy +0 -0
  20. /package/template/ios/{blankTemplate.xcworkspace → RoutingTemplate.xcworkspace}/xcshareddata/IDEWorkspaceChecks.plist +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v4.1.0 (Unreleased)
4
+
5
+ ### Changed
6
+
7
+ - Updated all the dependencies to the latest stable versions ([#448](https://github.com/etn-ccis/blui-react-native/issues/448)).
8
+
3
9
  ## v4.0.0 (July 30, 2025)
4
10
 
5
11
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightlayer-ui/react-native-template-routing-typescript",
3
- "version": "4.0.0",
3
+ "version": "4.1.0-alpha.0",
4
4
  "author": "brightlayer-ui <brightlayer-ui@eaton.com>",
5
5
  "keywords": [
6
6
  "react native",
@@ -17,7 +17,7 @@ override fun onCreate(savedInstanceState: Bundle?) {
17
17
  * Returns the name of the main component registered from JavaScript. This is used to schedule
18
18
  * rendering of the component.
19
19
  */
20
- override fun getMainComponentName(): String = "blankTemplate"
20
+ override fun getMainComponentName(): String = "RoutingTemplate"
21
21
 
22
22
  /**
23
23
  * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
@@ -1,3 +1,3 @@
1
1
  <resources>
2
- <string name="app_name">blankTemplate</string>
2
+ <string name="app_name">RoutingTemplate</string>
3
3
  </resources>
@@ -1,6 +1,6 @@
1
1
  pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
2
2
  plugins { id("com.facebook.react.settings") }
3
3
  extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
4
- rootProject.name = 'blankTemplate'
4
+ rootProject.name = "RoutingTemplate"
5
5
  include ':app'
6
6
  includeBuild('../node_modules/@react-native/gradle-plugin')
package/template/app.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "name": "blankTemplate",
3
- "displayName": "blankTemplate"
2
+ "name": "RoutingTemplate",
3
+ "displayName": "RoutingTemplate"
4
4
  }
@@ -14,7 +14,7 @@ if linkage != nil
14
14
  use_frameworks! :linkage => linkage.to_sym
15
15
  end
16
16
 
17
- target 'blankTemplate' do
17
+ target 'RoutingTemplate' do
18
18
  config = use_native_modules!
19
19
 
20
20
  use_react_native!(
@@ -2821,6 +2821,6 @@ SPEC CHECKSUMS:
2821
2821
  SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
2822
2822
  Yoga: daa1e4de4b971b977b23bc842aaa3e135324f1f3
2823
2823
 
2824
- PODFILE CHECKSUM: 8e0c0853756da28f53fe92184dff5231a2d5314c
2824
+ PODFILE CHECKSUM: ecf2cd5600330f24ce00756054cd612579e0093e
2825
2825
 
2826
2826
  COCOAPODS: 1.16.2
@@ -24,7 +24,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
24
24
  window = UIWindow(frame: UIScreen.main.bounds)
25
25
 
26
26
  factory.startReactNative(
27
- withModuleName: "blankTemplate",
27
+ withModuleName: "RoutingTemplate",
28
28
  in: window,
29
29
  launchOptions: launchOptions
30
30
  )
@@ -5,7 +5,7 @@
5
5
  <key>CFBundleDevelopmentRegion</key>
6
6
  <string>en</string>
7
7
  <key>CFBundleDisplayName</key>
8
- <string>blankTemplate</string>
8
+ <string>RoutingTemplate</string>
9
9
  <key>CFBundleExecutable</key>
10
10
  <string>$(EXECUTABLE_NAME)</string>
11
11
  <key>CFBundleIdentifier</key>
@@ -32,7 +32,7 @@
32
32
  <true/>
33
33
  </dict>
34
34
  <key>NSLocationWhenInUseUsageDescription</key>
35
- <string></string>
35
+ <string/>
36
36
  <key>RCTNewArchEnabled</key>
37
37
  <true/>
38
38
  <key>UIAppFonts</key>
@@ -16,7 +16,7 @@
16
16
  <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
17
17
  <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
18
18
  <subviews>
19
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="blankTemplate" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
19
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="RoutingTemplate" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
20
20
  <rect key="frame" x="0.0" y="202" width="375" height="43"/>
21
21
  <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
22
22
  <nil key="highlightedColor"/>
@@ -7,7 +7,7 @@
7
7
  objects = {
8
8
 
9
9
  /* Begin PBXBuildFile section */
10
- 0C80B921A6F3F58F76C31292 /* libPods-blankTemplate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-blankTemplate.a */; };
10
+ 0C80B921A6F3F58F76C31292 /* libPods-RoutingTemplate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-RoutingTemplate.a */; };
11
11
  13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12
12
  3C9C40EEC2EBCF8D684D73AF /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
13
13
  761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
@@ -15,15 +15,15 @@
15
15
  /* End PBXBuildFile section */
16
16
 
17
17
  /* Begin PBXFileReference section */
18
- 13B07F961A680F5B00A75B9A /* blankTemplate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = blankTemplate.app; sourceTree = BUILT_PRODUCTS_DIR; };
19
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = blankTemplate/Images.xcassets; sourceTree = "<group>"; };
20
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = blankTemplate/Info.plist; sourceTree = "<group>"; };
21
- 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = blankTemplate/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
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>"; };
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>"; };
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>"; };
26
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = blankTemplate/LaunchScreen.storyboard; sourceTree = "<group>"; };
18
+ 13B07F961A680F5B00A75B9A /* RoutingTemplate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RoutingTemplate.app; sourceTree = BUILT_PRODUCTS_DIR; };
19
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RoutingTemplate/Images.xcassets; sourceTree = "<group>"; };
20
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RoutingTemplate/Info.plist; sourceTree = "<group>"; };
21
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = RoutingTemplate/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
22
+ 3B4392A12AC88292D35C810B /* Pods-RoutingTemplate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RoutingTemplate.debug.xcconfig"; path = "Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate.debug.xcconfig"; sourceTree = "<group>"; };
23
+ 5709B34CF0A7D63546082F79 /* Pods-RoutingTemplate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RoutingTemplate.release.xcconfig"; path = "Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate.release.xcconfig"; sourceTree = "<group>"; };
24
+ 5DCACB8F33CDC322A6C60F78 /* libPods-RoutingTemplate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RoutingTemplate.a"; sourceTree = BUILT_PRODUCTS_DIR; };
25
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = RoutingTemplate/AppDelegate.swift; sourceTree = "<group>"; };
26
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = RoutingTemplate/LaunchScreen.storyboard; sourceTree = "<group>"; };
27
27
  ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
28
28
  /* End PBXFileReference section */
29
29
 
@@ -32,14 +32,14 @@
32
32
  isa = PBXFrameworksBuildPhase;
33
33
  buildActionMask = 2147483647;
34
34
  files = (
35
- 0C80B921A6F3F58F76C31292 /* libPods-blankTemplate.a in Frameworks */,
35
+ 0C80B921A6F3F58F76C31292 /* libPods-RoutingTemplate.a in Frameworks */,
36
36
  );
37
37
  runOnlyForDeploymentPostprocessing = 0;
38
38
  };
39
39
  /* End PBXFrameworksBuildPhase section */
40
40
 
41
41
  /* Begin PBXGroup section */
42
- 13B07FAE1A68108700A75B9A /* blankTemplate */ = {
42
+ 13B07FAE1A68108700A75B9A /* RoutingTemplate */ = {
43
43
  isa = PBXGroup;
44
44
  children = (
45
45
  13B07FB51A68108700A75B9A /* Images.xcassets */,
@@ -48,14 +48,14 @@
48
48
  81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
49
49
  13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
50
50
  );
51
- name = blankTemplate;
51
+ name = RoutingTemplate;
52
52
  sourceTree = "<group>";
53
53
  };
54
54
  2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
55
55
  isa = PBXGroup;
56
56
  children = (
57
57
  ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
58
- 5DCACB8F33CDC322A6C60F78 /* libPods-blankTemplate.a */,
58
+ 5DCACB8F33CDC322A6C60F78 /* libPods-RoutingTemplate.a */,
59
59
  );
60
60
  name = Frameworks;
61
61
  sourceTree = "<group>";
@@ -70,7 +70,7 @@
70
70
  83CBB9F61A601CBA00E9B192 = {
71
71
  isa = PBXGroup;
72
72
  children = (
73
- 13B07FAE1A68108700A75B9A /* blankTemplate */,
73
+ 13B07FAE1A68108700A75B9A /* RoutingTemplate */,
74
74
  832341AE1AAA6A7D00B99B32 /* Libraries */,
75
75
  83CBBA001A601CBA00E9B192 /* Products */,
76
76
  2D16E6871FA4F8E400B85C8A /* Frameworks */,
@@ -84,7 +84,7 @@
84
84
  83CBBA001A601CBA00E9B192 /* Products */ = {
85
85
  isa = PBXGroup;
86
86
  children = (
87
- 13B07F961A680F5B00A75B9A /* blankTemplate.app */,
87
+ 13B07F961A680F5B00A75B9A /* RoutingTemplate.app */,
88
88
  );
89
89
  name = Products;
90
90
  sourceTree = "<group>";
@@ -92,8 +92,8 @@
92
92
  BBD78D7AC51CEA395F1C20DB /* Pods */ = {
93
93
  isa = PBXGroup;
94
94
  children = (
95
- 3B4392A12AC88292D35C810B /* Pods-blankTemplate.debug.xcconfig */,
96
- 5709B34CF0A7D63546082F79 /* Pods-blankTemplate.release.xcconfig */,
95
+ 3B4392A12AC88292D35C810B /* Pods-RoutingTemplate.debug.xcconfig */,
96
+ 5709B34CF0A7D63546082F79 /* Pods-RoutingTemplate.release.xcconfig */,
97
97
  );
98
98
  path = Pods;
99
99
  sourceTree = "<group>";
@@ -101,9 +101,9 @@
101
101
  /* End PBXGroup section */
102
102
 
103
103
  /* Begin PBXNativeTarget section */
104
- 13B07F861A680F5B00A75B9A /* blankTemplate */ = {
104
+ 13B07F861A680F5B00A75B9A /* RoutingTemplate */ = {
105
105
  isa = PBXNativeTarget;
106
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "blankTemplate" */;
106
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RoutingTemplate" */;
107
107
  buildPhases = (
108
108
  C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
109
109
  13B07F871A680F5B00A75B9A /* Sources */,
@@ -117,9 +117,9 @@
117
117
  );
118
118
  dependencies = (
119
119
  );
120
- name = blankTemplate;
121
- productName = blankTemplate;
122
- productReference = 13B07F961A680F5B00A75B9A /* blankTemplate.app */;
120
+ name = RoutingTemplate;
121
+ productName = RoutingTemplate;
122
+ productReference = 13B07F961A680F5B00A75B9A /* RoutingTemplate.app */;
123
123
  productType = "com.apple.product-type.application";
124
124
  };
125
125
  /* End PBXNativeTarget section */
@@ -135,7 +135,7 @@
135
135
  };
136
136
  };
137
137
  };
138
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "blankTemplate" */;
138
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RoutingTemplate" */;
139
139
  compatibilityVersion = "Xcode 12.0";
140
140
  developmentRegion = en;
141
141
  hasScannedForEncodings = 0;
@@ -148,7 +148,7 @@
148
148
  projectDirPath = "";
149
149
  projectRoot = "";
150
150
  targets = (
151
- 13B07F861A680F5B00A75B9A /* blankTemplate */,
151
+ 13B07F861A680F5B00A75B9A /* RoutingTemplate */,
152
152
  );
153
153
  };
154
154
  /* End PBXProject section */
@@ -189,15 +189,15 @@
189
189
  files = (
190
190
  );
191
191
  inputFileListPaths = (
192
- "${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-frameworks-${CONFIGURATION}-input-files.xcfilelist",
192
+ "${PODS_ROOT}/Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate-frameworks-${CONFIGURATION}-input-files.xcfilelist",
193
193
  );
194
194
  name = "[CP] Embed Pods Frameworks";
195
195
  outputFileListPaths = (
196
- "${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-frameworks-${CONFIGURATION}-output-files.xcfilelist",
196
+ "${PODS_ROOT}/Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate-frameworks-${CONFIGURATION}-output-files.xcfilelist",
197
197
  );
198
198
  runOnlyForDeploymentPostprocessing = 0;
199
199
  shellPath = /bin/sh;
200
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-frameworks.sh\"\n";
200
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate-frameworks.sh\"\n";
201
201
  showEnvVarsInLog = 0;
202
202
  };
203
203
  C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
@@ -215,7 +215,7 @@
215
215
  outputFileListPaths = (
216
216
  );
217
217
  outputPaths = (
218
- "$(DERIVED_FILE_DIR)/Pods-blankTemplate-checkManifestLockResult.txt",
218
+ "$(DERIVED_FILE_DIR)/Pods-RoutingTemplate-checkManifestLockResult.txt",
219
219
  );
220
220
  runOnlyForDeploymentPostprocessing = 0;
221
221
  shellPath = /bin/sh;
@@ -228,15 +228,15 @@
228
228
  files = (
229
229
  );
230
230
  inputFileListPaths = (
231
- "${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-resources-${CONFIGURATION}-input-files.xcfilelist",
231
+ "${PODS_ROOT}/Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate-resources-${CONFIGURATION}-input-files.xcfilelist",
232
232
  );
233
233
  name = "[CP] Copy Pods Resources";
234
234
  outputFileListPaths = (
235
- "${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-resources-${CONFIGURATION}-output-files.xcfilelist",
235
+ "${PODS_ROOT}/Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate-resources-${CONFIGURATION}-output-files.xcfilelist",
236
236
  );
237
237
  runOnlyForDeploymentPostprocessing = 0;
238
238
  shellPath = /bin/sh;
239
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-blankTemplate/Pods-blankTemplate-resources.sh\"\n";
239
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RoutingTemplate/Pods-RoutingTemplate-resources.sh\"\n";
240
240
  showEnvVarsInLog = 0;
241
241
  };
242
242
  /* End PBXShellScriptBuildPhase section */
@@ -255,13 +255,14 @@
255
255
  /* Begin XCBuildConfiguration section */
256
256
  13B07F941A680F5B00A75B9A /* Debug */ = {
257
257
  isa = XCBuildConfiguration;
258
- baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-blankTemplate.debug.xcconfig */;
258
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-RoutingTemplate.debug.xcconfig */;
259
259
  buildSettings = {
260
260
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
261
261
  CLANG_ENABLE_MODULES = YES;
262
262
  CURRENT_PROJECT_VERSION = 1;
263
263
  ENABLE_BITCODE = NO;
264
- INFOPLIST_FILE = blankTemplate/Info.plist;
264
+ INFOPLIST_FILE = RoutingTemplate/Info.plist;
265
+ INFOPLIST_KEY_CFBundleDisplayName = RoutingTemplate;
265
266
  IPHONEOS_DEPLOYMENT_TARGET = 15.1;
266
267
  LD_RUNPATH_SEARCH_PATHS = (
267
268
  "$(inherited)",
@@ -274,7 +275,7 @@
274
275
  "-lc++",
275
276
  );
276
277
  PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
277
- PRODUCT_NAME = blankTemplate;
278
+ PRODUCT_NAME = RoutingTemplate;
278
279
  SWIFT_OPTIMIZATION_LEVEL = "-Onone";
279
280
  SWIFT_VERSION = 5.0;
280
281
  VERSIONING_SYSTEM = "apple-generic";
@@ -283,12 +284,13 @@
283
284
  };
284
285
  13B07F951A680F5B00A75B9A /* Release */ = {
285
286
  isa = XCBuildConfiguration;
286
- baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-blankTemplate.release.xcconfig */;
287
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-RoutingTemplate.release.xcconfig */;
287
288
  buildSettings = {
288
289
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
289
290
  CLANG_ENABLE_MODULES = YES;
290
291
  CURRENT_PROJECT_VERSION = 1;
291
- INFOPLIST_FILE = blankTemplate/Info.plist;
292
+ INFOPLIST_FILE = RoutingTemplate/Info.plist;
293
+ INFOPLIST_KEY_CFBundleDisplayName = RoutingTemplate;
292
294
  IPHONEOS_DEPLOYMENT_TARGET = 15.1;
293
295
  LD_RUNPATH_SEARCH_PATHS = (
294
296
  "$(inherited)",
@@ -301,7 +303,7 @@
301
303
  "-lc++",
302
304
  );
303
305
  PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
304
- PRODUCT_NAME = blankTemplate;
306
+ PRODUCT_NAME = RoutingTemplate;
305
307
  SWIFT_VERSION = 5.0;
306
308
  VERSIONING_SYSTEM = "apple-generic";
307
309
  };
@@ -462,7 +464,7 @@
462
464
  /* End XCBuildConfiguration section */
463
465
 
464
466
  /* Begin XCConfigurationList section */
465
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "blankTemplate" */ = {
467
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RoutingTemplate" */ = {
466
468
  isa = XCConfigurationList;
467
469
  buildConfigurations = (
468
470
  13B07F941A680F5B00A75B9A /* Debug */,
@@ -471,7 +473,7 @@
471
473
  defaultConfigurationIsVisible = 0;
472
474
  defaultConfigurationName = Release;
473
475
  };
474
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "blankTemplate" */ = {
476
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RoutingTemplate" */ = {
475
477
  isa = XCConfigurationList;
476
478
  buildConfigurations = (
477
479
  83CBBA201A601CBA00E9B192 /* Debug */,
@@ -15,9 +15,9 @@
15
15
  <BuildableReference
16
16
  BuildableIdentifier = "primary"
17
17
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
- BuildableName = "blankTemplate.app"
19
- BlueprintName = "blankTemplate"
20
- ReferencedContainer = "container:blankTemplate.xcodeproj">
18
+ BuildableName = "RoutingTemplate.app"
19
+ BlueprintName = "RoutingTemplate"
20
+ ReferencedContainer = "container:RoutingTemplate.xcodeproj">
21
21
  </BuildableReference>
22
22
  </BuildActionEntry>
23
23
  </BuildActionEntries>
@@ -33,9 +33,9 @@
33
33
  <BuildableReference
34
34
  BuildableIdentifier = "primary"
35
35
  BlueprintIdentifier = "00E356ED1AD99517003FC87E"
36
- BuildableName = "blankTemplateTests.xctest"
37
- BlueprintName = "blankTemplateTests"
38
- ReferencedContainer = "container:blankTemplate.xcodeproj">
36
+ BuildableName = "RoutingTemplateTests.xctest"
37
+ BlueprintName = "RoutingTemplateTests"
38
+ ReferencedContainer = "container:RoutingTemplate.xcodeproj">
39
39
  </BuildableReference>
40
40
  </TestableReference>
41
41
  </Testables>
@@ -55,9 +55,9 @@
55
55
  <BuildableReference
56
56
  BuildableIdentifier = "primary"
57
57
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
58
- BuildableName = "blankTemplate.app"
59
- BlueprintName = "blankTemplate"
60
- ReferencedContainer = "container:blankTemplate.xcodeproj">
58
+ BuildableName = "RoutingTemplate.app"
59
+ BlueprintName = "RoutingTemplate"
60
+ ReferencedContainer = "container:RoutingTemplate.xcodeproj">
61
61
  </BuildableReference>
62
62
  </BuildableProductRunnable>
63
63
  </LaunchAction>
@@ -72,9 +72,9 @@
72
72
  <BuildableReference
73
73
  BuildableIdentifier = "primary"
74
74
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
75
- BuildableName = "blankTemplate.app"
76
- BlueprintName = "blankTemplate"
77
- ReferencedContainer = "container:blankTemplate.xcodeproj">
75
+ BuildableName = "RoutingTemplate.app"
76
+ BlueprintName = "RoutingTemplate"
77
+ ReferencedContainer = "container:RoutingTemplate.xcodeproj">
78
78
  </BuildableReference>
79
79
  </BuildableProductRunnable>
80
80
  </ProfileAction>
@@ -2,7 +2,7 @@
2
2
  <Workspace
3
3
  version = "1.0">
4
4
  <FileRef
5
- location = "group:blankTemplate.xcodeproj">
5
+ location = "group:RoutingTemplate.xcodeproj">
6
6
  </FileRef>
7
7
  <FileRef
8
8
  location = "group:Pods/Pods.xcodeproj">
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "blank-template",
2
+ "name": "routing-template",
3
3
  "version": "0.0.1",
4
4
  "private": true,
5
5
  "scripts": {
@@ -12,7 +12,7 @@
12
12
  "test": "jest"
13
13
  },
14
14
  "dependencies": {
15
- "@brightlayer-ui/react-native-components": "^9.0.0",
15
+ "@brightlayer-ui/react-native-components": "^9.1.1",
16
16
  "@brightlayer-ui/react-native-themes": "^8.0.0",
17
17
  "@brightlayer-ui/react-native-vector-icons": "^3.0.0",
18
18
  "@react-native-vector-icons/material-design-icons": "^12.2.0",
@@ -1048,10 +1048,10 @@
1048
1048
  resolved "https://registry.yarnpkg.com/@brightlayer-ui/prettier-config/-/prettier-config-1.0.3.tgz#e40a7ae7435c6fd5118acbf249080e0aa81e93af"
1049
1049
  integrity sha512-EYm3+V7Qd+oYEF+8FadsXAZqXryEHHbGnrV1BMp9selhABjceqUqXPVE4Sn3SKWQdBNJ3En2A3EzgrzRbvRTaw==
1050
1050
 
1051
- "@brightlayer-ui/react-native-components@^9.0.0":
1052
- version "9.0.0"
1053
- resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-components/-/react-native-components-9.0.0.tgz#eb5412be3f9237e9ea92e21d25c9fe1d3ead74a2"
1054
- integrity sha512-xQfpubAUgMDjOxKVIRjVgC0H20og2Ntx59xK84Zx1qO6P6PasECvXYl+CyqTCWlXptJ0rcBeWZzEWhjqGw7izQ==
1051
+ "@brightlayer-ui/react-native-components@^9.1.1":
1052
+ version "9.1.1"
1053
+ resolved "https://registry.yarnpkg.com/@brightlayer-ui/react-native-components/-/react-native-components-9.1.1.tgz#86643c371a00e5f9b28207be13229cfa02cbfd09"
1054
+ integrity sha512-0bYUGOeB/fsLiRzkikki0NBBwoxnuS9M5UgOrmHMDNmoeosdHYVkmhPf3sVZT1LWajrN4sPLRhhC3017VUvuCQ==
1055
1055
  dependencies:
1056
1056
  "@brightlayer-ui/react-native-themes" "7.0.1"
1057
1057
  "@callstack/react-theme-provider" "^3.0.9"