@computools/react-native-template-controller 1.0.8 → 1.0.9

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 (66) hide show
  1. package/README.md +8 -1
  2. package/package.json +1 -1
  3. package/template/.env.development +2 -0
  4. package/template/.env.production +2 -0
  5. package/template/.env.staging +2 -0
  6. package/template/android/app/build.gradle +35 -0
  7. package/template/android/app/src/development/AndroidManifest.xml +25 -0
  8. package/template/android/app/src/development/res/drawable/launch_screen.xml +11 -0
  9. package/template/android/app/src/development/res/drawable/rn_edit_text_material.xml +36 -0
  10. package/template/android/app/src/development/res/mipmap-hdpi/ic_launcher.png +0 -0
  11. package/template/android/app/src/development/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  12. package/template/android/app/src/development/res/mipmap-hdpi/logo.png +0 -0
  13. package/template/android/app/src/development/res/mipmap-mdpi/ic_launcher.png +0 -0
  14. package/template/android/app/src/development/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  15. package/template/android/app/src/development/res/mipmap-mdpi/logo.png +0 -0
  16. package/template/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png +0 -0
  17. package/template/android/app/src/development/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  18. package/template/android/app/src/development/res/mipmap-xhdpi/logo.png +0 -0
  19. package/template/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  20. package/template/android/app/src/development/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  21. package/template/android/app/src/development/res/mipmap-xxhdpi/logo.png +0 -0
  22. package/template/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  23. package/template/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  24. package/template/android/app/src/development/res/mipmap-xxxhdpi/logo.png +0 -0
  25. package/template/android/app/src/development/res/values/colors.xml +4 -0
  26. package/template/android/app/src/development/res/values/strings.xml +3 -0
  27. package/template/android/app/src/development/res/values/styles.xml +14 -0
  28. package/template/android/app/src/staging/AndroidManifest.xml +25 -0
  29. package/template/android/app/src/staging/res/drawable/launch_screen.xml +11 -0
  30. package/template/android/app/src/staging/res/drawable/rn_edit_text_material.xml +36 -0
  31. package/template/android/app/src/staging/res/mipmap-hdpi/ic_launcher.png +0 -0
  32. package/template/android/app/src/staging/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  33. package/template/android/app/src/staging/res/mipmap-hdpi/logo.png +0 -0
  34. package/template/android/app/src/staging/res/mipmap-mdpi/ic_launcher.png +0 -0
  35. package/template/android/app/src/staging/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  36. package/template/android/app/src/staging/res/mipmap-mdpi/logo.png +0 -0
  37. package/template/android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png +0 -0
  38. package/template/android/app/src/staging/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  39. package/template/android/app/src/staging/res/mipmap-xhdpi/logo.png +0 -0
  40. package/template/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  41. package/template/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  42. package/template/android/app/src/staging/res/mipmap-xxhdpi/logo.png +0 -0
  43. package/template/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  44. package/template/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  45. package/template/android/app/src/staging/res/mipmap-xxxhdpi/logo.png +0 -0
  46. package/template/android/app/src/staging/res/values/colors.xml +4 -0
  47. package/template/android/app/src/staging/res/values/strings.xml +3 -0
  48. package/template/android/app/src/staging/res/values/styles.xml +14 -0
  49. package/template/ios/Podfile +10 -1
  50. package/template/ios/ReactNativeTemplate/Images.xcassets/AppIcon dev.appiconset/Contents.json +14 -0
  51. package/template/ios/ReactNativeTemplate/Images.xcassets/AppIcon dev.appiconset/appstore.png +0 -0
  52. package/template/ios/ReactNativeTemplate/Images.xcassets/AppIcon stg.appiconset/Contents.json +14 -0
  53. package/template/ios/ReactNativeTemplate/Images.xcassets/AppIcon stg.appiconset/appstore.png +0 -0
  54. package/template/ios/ReactNativeTemplate dev-Info.plist +55 -0
  55. package/template/ios/ReactNativeTemplate stg-Info.plist +55 -0
  56. package/template/ios/ReactNativeTemplate.xcodeproj/project.pbxproj +475 -26
  57. package/template/ios/ReactNativeTemplate.xcodeproj/xcshareddata/xcschemes/ReactNativeTemplate.xcscheme +37 -1
  58. package/template/ios/ReactNativeTemplate.xcodeproj/xcshareddata/xcschemes/ReactNativeTemplateDev.xcscheme +104 -0
  59. package/template/ios/ReactNativeTemplate.xcodeproj/xcshareddata/xcschemes/ReactNativeTemplateStg.xcscheme +95 -0
  60. package/template/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +2008 -0
  61. package/template/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +2448 -0
  62. package/template/ios/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +1523 -0
  63. package/template/ios/build/generated/ios/FBReactNativeSpecJSI.h +5509 -0
  64. package/template/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
  65. package/template/package.json +18 -2
  66. package/template/src/app/infrastructure/onboarding/Onboarding.screen.tsx +4 -1
@@ -1,10 +1,28 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <Scheme
3
3
  LastUpgradeVersion = "1210"
4
- version = "1.3">
4
+ version = "1.7">
5
5
  <BuildAction
6
6
  parallelizeBuildables = "YES"
7
7
  buildImplicitDependencies = "YES">
8
+ <PreActions>
9
+ <ExecutionAction
10
+ ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
11
+ <ActionContent
12
+ title = "Run Script"
13
+ scriptText = "# Type a script or drag a script file from your workspace to insert its path.&#10;echo &quot;.env.production&quot; &gt; /tmp/envfile&#10;">
14
+ <EnvironmentBuildable>
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
+ BuildableName = "ReactNativeTemplate.app"
19
+ BlueprintName = "ReactNativeTemplate"
20
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
21
+ </BuildableReference>
22
+ </EnvironmentBuildable>
23
+ </ActionContent>
24
+ </ExecutionAction>
25
+ </PreActions>
8
26
  <BuildActionEntries>
9
27
  <BuildActionEntry
10
28
  buildForTesting = "YES"
@@ -50,6 +68,24 @@
50
68
  debugDocumentVersioning = "YES"
51
69
  debugServiceExtension = "internal"
52
70
  allowLocationSimulation = "YES">
71
+ <PreActions>
72
+ <ExecutionAction
73
+ ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
74
+ <ActionContent
75
+ title = "Run Script"
76
+ scriptText = "# Type a script or drag a script file from your workspace to insert its path.&#10;echo &quot;.env.production&quot; &gt; /tmp/envfile&#10;">
77
+ <EnvironmentBuildable>
78
+ <BuildableReference
79
+ BuildableIdentifier = "primary"
80
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
81
+ BuildableName = "ReactNativeTemplate.app"
82
+ BlueprintName = "ReactNativeTemplate"
83
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
84
+ </BuildableReference>
85
+ </EnvironmentBuildable>
86
+ </ActionContent>
87
+ </ExecutionAction>
88
+ </PreActions>
53
89
  <BuildableProductRunnable
54
90
  runnableDebuggingMode = "0">
55
91
  <BuildableReference
@@ -0,0 +1,104 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1430"
4
+ version = "1.7">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <PreActions>
9
+ <ExecutionAction
10
+ ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
11
+ <ActionContent
12
+ title = "Run Script"
13
+ scriptText = "# Type a script or drag a script file from your workspace to insert its path.&#10;echo &quot;.env.development&quot; &gt; /tmp/envfile&#10;">
14
+ </ActionContent>
15
+ </ExecutionAction>
16
+ </PreActions>
17
+ <BuildActionEntries>
18
+ <BuildActionEntry
19
+ buildForTesting = "YES"
20
+ buildForRunning = "YES"
21
+ buildForProfiling = "YES"
22
+ buildForArchiving = "YES"
23
+ buildForAnalyzing = "YES">
24
+ <BuildableReference
25
+ BuildableIdentifier = "primary"
26
+ BlueprintIdentifier = "9314CDBC2AF3CEA200F58B73"
27
+ BuildableName = "ReactNativeTemplateDev.app"
28
+ BlueprintName = "ReactNativeTemplateDev"
29
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
30
+ </BuildableReference>
31
+ </BuildActionEntry>
32
+ </BuildActionEntries>
33
+ </BuildAction>
34
+ <TestAction
35
+ buildConfiguration = "Debug"
36
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
37
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
38
+ shouldUseLaunchSchemeArgsEnv = "YES"
39
+ shouldAutocreateTestPlan = "YES">
40
+ </TestAction>
41
+ <LaunchAction
42
+ buildConfiguration = "Debug"
43
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
44
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
45
+ launchStyle = "0"
46
+ useCustomWorkingDirectory = "NO"
47
+ ignoresPersistentStateOnLaunch = "NO"
48
+ debugDocumentVersioning = "YES"
49
+ debugServiceExtension = "internal"
50
+ allowLocationSimulation = "YES">
51
+ <PreActions>
52
+ <ExecutionAction
53
+ ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
54
+ <ActionContent
55
+ title = "Run Script"
56
+ scriptText = "# Type a script or drag a script file from your workspace to insert its path.&#10;echo &quot;.env.development&quot; &gt; /tmp/envfile&#10;">
57
+ <EnvironmentBuildable>
58
+ <BuildableReference
59
+ BuildableIdentifier = "primary"
60
+ BlueprintIdentifier = "9314CDBC2AF3CEA200F58B73"
61
+ BuildableName = "ReactNativeTemplateDev.app"
62
+ BlueprintName = "ReactNativeTemplateDev"
63
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
64
+ </BuildableReference>
65
+ </EnvironmentBuildable>
66
+ </ActionContent>
67
+ </ExecutionAction>
68
+ </PreActions>
69
+ <BuildableProductRunnable
70
+ runnableDebuggingMode = "0">
71
+ <BuildableReference
72
+ BuildableIdentifier = "primary"
73
+ BlueprintIdentifier = "9314CDBC2AF3CEA200F58B73"
74
+ BuildableName = "ReactNativeTemplateDev.app"
75
+ BlueprintName = "ReactNativeTemplateDev"
76
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
77
+ </BuildableReference>
78
+ </BuildableProductRunnable>
79
+ </LaunchAction>
80
+ <ProfileAction
81
+ buildConfiguration = "Release"
82
+ shouldUseLaunchSchemeArgsEnv = "YES"
83
+ savedToolIdentifier = ""
84
+ useCustomWorkingDirectory = "NO"
85
+ debugDocumentVersioning = "YES">
86
+ <BuildableProductRunnable
87
+ runnableDebuggingMode = "0">
88
+ <BuildableReference
89
+ BuildableIdentifier = "primary"
90
+ BlueprintIdentifier = "9314CDBC2AF3CEA200F58B73"
91
+ BuildableName = "ReactNativeTemplateDev.app"
92
+ BlueprintName = "ReactNativeTemplateDev"
93
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
94
+ </BuildableReference>
95
+ </BuildableProductRunnable>
96
+ </ProfileAction>
97
+ <AnalyzeAction
98
+ buildConfiguration = "Debug">
99
+ </AnalyzeAction>
100
+ <ArchiveAction
101
+ buildConfiguration = "Release"
102
+ revealArchiveInOrganizer = "YES">
103
+ </ArchiveAction>
104
+ </Scheme>
@@ -0,0 +1,95 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1430"
4
+ version = "1.7">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <PreActions>
9
+ <ExecutionAction
10
+ ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
11
+ <ActionContent
12
+ title = "Run Script"
13
+ scriptText = "# Type a script or drag a script file from your workspace to insert its path.&#10;echo &quot;.env.staging&quot; &gt; /tmp/envfile&#10;">
14
+ </ActionContent>
15
+ </ExecutionAction>
16
+ </PreActions>
17
+ <BuildActionEntries>
18
+ <BuildActionEntry
19
+ buildForTesting = "YES"
20
+ buildForRunning = "YES"
21
+ buildForProfiling = "YES"
22
+ buildForArchiving = "YES"
23
+ buildForAnalyzing = "YES">
24
+ <BuildableReference
25
+ BuildableIdentifier = "primary"
26
+ BlueprintIdentifier = "9314CDCF2AF3CEAA00F58B73"
27
+ BuildableName = "ReactNativeTemplateStg.app"
28
+ BlueprintName = "ReactNativeTemplateStg"
29
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
30
+ </BuildableReference>
31
+ </BuildActionEntry>
32
+ </BuildActionEntries>
33
+ </BuildAction>
34
+ <TestAction
35
+ buildConfiguration = "Debug"
36
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
37
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
38
+ shouldUseLaunchSchemeArgsEnv = "YES"
39
+ shouldAutocreateTestPlan = "YES">
40
+ </TestAction>
41
+ <LaunchAction
42
+ buildConfiguration = "Debug"
43
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
44
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
45
+ launchStyle = "0"
46
+ useCustomWorkingDirectory = "NO"
47
+ ignoresPersistentStateOnLaunch = "NO"
48
+ debugDocumentVersioning = "YES"
49
+ debugServiceExtension = "internal"
50
+ allowLocationSimulation = "YES">
51
+ <PreActions>
52
+ <ExecutionAction
53
+ ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
54
+ <ActionContent
55
+ title = "Run Script"
56
+ scriptText = "# Type a script or drag a script file from your workspace to insert its path.&#10;echo &quot;.env.staging&quot; &gt; /tmp/envfile&#10;">
57
+ </ActionContent>
58
+ </ExecutionAction>
59
+ </PreActions>
60
+ <BuildableProductRunnable
61
+ runnableDebuggingMode = "0">
62
+ <BuildableReference
63
+ BuildableIdentifier = "primary"
64
+ BlueprintIdentifier = "9314CDCF2AF3CEAA00F58B73"
65
+ BuildableName = "ReactNativeTemplateStg.app"
66
+ BlueprintName = "ReactNativeTemplateStg"
67
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
68
+ </BuildableReference>
69
+ </BuildableProductRunnable>
70
+ </LaunchAction>
71
+ <ProfileAction
72
+ buildConfiguration = "Release"
73
+ shouldUseLaunchSchemeArgsEnv = "YES"
74
+ savedToolIdentifier = ""
75
+ useCustomWorkingDirectory = "NO"
76
+ debugDocumentVersioning = "YES">
77
+ <BuildableProductRunnable
78
+ runnableDebuggingMode = "0">
79
+ <BuildableReference
80
+ BuildableIdentifier = "primary"
81
+ BlueprintIdentifier = "9314CDCF2AF3CEAA00F58B73"
82
+ BuildableName = "ReactNativeTemplateStg.app"
83
+ BlueprintName = "ReactNativeTemplateStg"
84
+ ReferencedContainer = "container:ReactNativeTemplate.xcodeproj">
85
+ </BuildableReference>
86
+ </BuildableProductRunnable>
87
+ </ProfileAction>
88
+ <AnalyzeAction
89
+ buildConfiguration = "Debug">
90
+ </AnalyzeAction>
91
+ <ArchiveAction
92
+ buildConfiguration = "Release"
93
+ revealArchiveInOrganizer = "YES">
94
+ </ArchiveAction>
95
+ </Scheme>