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

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 (67) 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 +19 -3
  66. package/template/src/app/config/http.ts +30 -1
  67. package/template/src/app/infrastructure/onboarding/Onboarding.screen.tsx +4 -1
package/README.md CHANGED
@@ -17,13 +17,20 @@ npx react-native init MyApp --template @computools/react-native-template-control
17
17
 
18
18
  ![preview]
19
19
 
20
- See the below table to find out which version of the template to use.
20
+ ### Envs support out of the box:
21
+
22
+ ![envs_preview]
23
+
24
+ Source [article](https://dev.to/leon_arantes/react-native-multiple-environments-setup-schemaflavors-3l7p) how to configure envs in RN, by using [react-native-config](https://www.npmjs.com/package/react-native-config).
21
25
 
22
26
  #### React Native <=> Template Version
23
27
 
28
+ See the below table to find out which version of the template to use.
29
+
24
30
  | React Native | Template |
25
31
  | ------------ | -------- |
26
32
  | 0.72 | 1.0.0 |
27
33
  | 0.71.11 | 0.0.7 |
28
34
 
29
35
  [preview]: <https://ik.imagekit.io/computools/template-snapshots/rn-template.gif>
36
+ [envs_preview]: <https://ik.imagekit.io/computools/template-snapshots/template-env.png>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@computools/react-native-template-controller",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Computools react native template by using mobx as controllers",
5
5
  "main": "template.config.js",
6
6
  "scripts": {
@@ -0,0 +1,2 @@
1
+ ENV=development
2
+ API_URL=https://api.dev.com
@@ -0,0 +1,2 @@
1
+ ENV=production
2
+ API_URL=https://api.com
@@ -0,0 +1,2 @@
1
+ ENV=staging
2
+ API_URL=https://api.staging.com
@@ -1,4 +1,16 @@
1
1
  apply plugin: "com.android.application"
2
+
3
+ project.ext.envConfigFiles = [
4
+ productiondebug: ".env.production",
5
+ productionrelease: ".env.production",
6
+ developmentrelease: ".env.development",
7
+ developmentdebug: ".env.development",
8
+ stagingrelease: ".env.staging",
9
+ stagingdebug: ".env.staging"
10
+ ]
11
+
12
+ apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle"
13
+
2
14
  apply plugin: "com.facebook.react"
3
15
 
4
16
  /**
@@ -73,6 +85,28 @@ android {
73
85
 
74
86
  compileSdkVersion rootProject.ext.compileSdkVersion
75
87
 
88
+ flavorDimensions "default"
89
+ productFlavors {
90
+ production {
91
+ minSdkVersion rootProject.ext.minSdkVersion
92
+ applicationId "com.reactnativetemplate"
93
+ targetSdkVersion rootProject.ext.targetSdkVersion
94
+ resValue "string", "build_config_package", "com.reactnativetemplate"
95
+ }
96
+ staging {
97
+ minSdkVersion rootProject.ext.minSdkVersion
98
+ applicationId "com.reactnativetemplate.staging"
99
+ targetSdkVersion rootProject.ext.targetSdkVersion
100
+ resValue "string", "build_config_package", "com.reactnativetemplate"
101
+ }
102
+ development {
103
+ minSdkVersion rootProject.ext.minSdkVersion
104
+ applicationId "com.reactnativetemplate.development"
105
+ targetSdkVersion rootProject.ext.targetSdkVersion
106
+ resValue "string", "build_config_package", "com.reactnativetemplate"
107
+ }
108
+ }
109
+
76
110
  namespace "com.reactnativetemplate"
77
111
  defaultConfig {
78
112
  applicationId "com.reactnativetemplate"
@@ -93,6 +127,7 @@ android {
93
127
  buildTypes {
94
128
  debug {
95
129
  signingConfig signingConfigs.debug
130
+ matchingFallbacks = ['debug', 'release']
96
131
  }
97
132
  release {
98
133
  // Caution! In production, you need to generate your own keystore file.
@@ -0,0 +1,25 @@
1
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android">
2
+
3
+ <uses-permission android:name="android.permission.INTERNET" />
4
+
5
+ <application
6
+ android:name=".MainApplication"
7
+ android:label="@string/app_name"
8
+ android:icon="@mipmap/ic_launcher"
9
+ android:roundIcon="@mipmap/ic_launcher_round"
10
+ android:allowBackup="false"
11
+ android:theme="@style/BootTheme">
12
+ <activity
13
+ android:name=".MainActivity"
14
+ android:label="@string/app_name"
15
+ android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
16
+ android:launchMode="singleTask"
17
+ android:windowSoftInputMode="adjustResize"
18
+ android:exported="true">
19
+ <intent-filter>
20
+ <action android:name="android.intent.action.MAIN" />
21
+ <category android:name="android.intent.category.LAUNCHER" />
22
+ </intent-filter>
23
+ </activity>
24
+ </application>
25
+ </manifest>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3
+ <item
4
+ android:drawable="@color/primary"/>
5
+ <item
6
+ android:width="109dp"
7
+ android:height="109dp"
8
+ android:gravity="center">
9
+ <bitmap android:src="@mipmap/logo" />
10
+ </item>
11
+ </layer-list>
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2014 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+ <inset xmlns:android="http://schemas.android.com/apk/res/android"
17
+ android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
18
+ android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
19
+ android:insetTop="@dimen/abc_edit_text_inset_top_material"
20
+ android:insetBottom="@dimen/abc_edit_text_inset_bottom_material">
21
+
22
+ <selector>
23
+ <!--
24
+ This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I).
25
+ The item below with state_pressed="false" and state_focused="false" causes a NullPointerException.
26
+ NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)'
27
+
28
+ <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
29
+
30
+ For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR.
31
+ -->
32
+ <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
33
+ <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/>
34
+ </selector>
35
+
36
+ </inset>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <resources>
3
+ <color name="primary">#ffa83e</color>
4
+ </resources>
@@ -0,0 +1,3 @@
1
+ <resources>
2
+ <string name="app_name">ReactNativeTemplate Dev</string>
3
+ </resources>
@@ -0,0 +1,14 @@
1
+ <resources>
2
+
3
+ <!-- Base application theme. -->
4
+ <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
5
+ <!-- Customize your theme here. -->
6
+ <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
7
+ </style>
8
+
9
+ <style name="BootTheme" parent="Theme.SplashScreen">
10
+ <item name="windowSplashScreenBackground">@color/primary</item>
11
+ <item name="windowSplashScreenAnimatedIcon">@drawable/launch_screen</item>
12
+ <item name="postSplashScreenTheme">@style/AppTheme</item>
13
+ </style>
14
+ </resources>
@@ -0,0 +1,25 @@
1
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android">
2
+
3
+ <uses-permission android:name="android.permission.INTERNET" />
4
+
5
+ <application
6
+ android:name=".MainApplication"
7
+ android:label="@string/app_name"
8
+ android:icon="@mipmap/ic_launcher"
9
+ android:roundIcon="@mipmap/ic_launcher_round"
10
+ android:allowBackup="false"
11
+ android:theme="@style/BootTheme">
12
+ <activity
13
+ android:name=".MainActivity"
14
+ android:label="@string/app_name"
15
+ android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
16
+ android:launchMode="singleTask"
17
+ android:windowSoftInputMode="adjustResize"
18
+ android:exported="true">
19
+ <intent-filter>
20
+ <action android:name="android.intent.action.MAIN" />
21
+ <category android:name="android.intent.category.LAUNCHER" />
22
+ </intent-filter>
23
+ </activity>
24
+ </application>
25
+ </manifest>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3
+ <item
4
+ android:drawable="@color/primary"/>
5
+ <item
6
+ android:width="109dp"
7
+ android:height="109dp"
8
+ android:gravity="center">
9
+ <bitmap android:src="@mipmap/logo" />
10
+ </item>
11
+ </layer-list>
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2014 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+ <inset xmlns:android="http://schemas.android.com/apk/res/android"
17
+ android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
18
+ android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
19
+ android:insetTop="@dimen/abc_edit_text_inset_top_material"
20
+ android:insetBottom="@dimen/abc_edit_text_inset_bottom_material">
21
+
22
+ <selector>
23
+ <!--
24
+ This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I).
25
+ The item below with state_pressed="false" and state_focused="false" causes a NullPointerException.
26
+ NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)'
27
+
28
+ <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
29
+
30
+ For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR.
31
+ -->
32
+ <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
33
+ <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/>
34
+ </selector>
35
+
36
+ </inset>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <resources>
3
+ <color name="primary">#eeeeee</color>
4
+ </resources>
@@ -0,0 +1,3 @@
1
+ <resources>
2
+ <string name="app_name">ReactNativeTemplate Stg</string>
3
+ </resources>
@@ -0,0 +1,14 @@
1
+ <resources>
2
+
3
+ <!-- Base application theme. -->
4
+ <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
5
+ <!-- Customize your theme here. -->
6
+ <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
7
+ </style>
8
+
9
+ <style name="BootTheme" parent="Theme.SplashScreen">
10
+ <item name="windowSplashScreenBackground">@color/primary</item>
11
+ <item name="windowSplashScreenAnimatedIcon">@drawable/launch_screen</item>
12
+ <item name="postSplashScreenTheme">@style/AppTheme</item>
13
+ </style>
14
+ </resources>
@@ -25,7 +25,7 @@ if linkage != nil
25
25
  use_frameworks! :linkage => linkage.to_sym
26
26
  end
27
27
 
28
- target 'ReactNativeTemplate' do
28
+ abstract_target 'ReactNativeTemplateCommonPods' do
29
29
  config = use_native_modules!
30
30
 
31
31
  # Flags change depending on the env values.
@@ -59,4 +59,13 @@ target 'ReactNativeTemplate' do
59
59
  )
60
60
  __apply_Xcode_12_5_M1_post_install_workaround(installer)
61
61
  end
62
+
63
+ target 'ReactNativeTemplateDev' do
64
+ end
65
+
66
+ target 'ReactNativeTemplateStg' do
67
+ end
68
+
69
+ target 'ReactNativeTemplate' do
70
+ end
62
71
  end
@@ -0,0 +1,14 @@
1
+ {
2
+ "images" : [
3
+ {
4
+ "filename" : "appstore.png",
5
+ "idiom" : "universal",
6
+ "platform" : "ios",
7
+ "size" : "1024x1024"
8
+ }
9
+ ],
10
+ "info" : {
11
+ "author" : "xcode",
12
+ "version" : 1
13
+ }
14
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "images" : [
3
+ {
4
+ "filename" : "appstore.png",
5
+ "idiom" : "universal",
6
+ "platform" : "ios",
7
+ "size" : "1024x1024"
8
+ }
9
+ ],
10
+ "info" : {
11
+ "author" : "xcode",
12
+ "version" : 1
13
+ }
14
+ }
@@ -0,0 +1,55 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleDisplayName</key>
8
+ <string>ReactNativeTemplate</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>$(EXECUTABLE_NAME)</string>
11
+ <key>CFBundleIdentifier</key>
12
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
+ <key>CFBundleInfoDictionaryVersion</key>
14
+ <string>6.0</string>
15
+ <key>CFBundleName</key>
16
+ <string>$(PRODUCT_NAME)</string>
17
+ <key>CFBundlePackageType</key>
18
+ <string>APPL</string>
19
+ <key>CFBundleShortVersionString</key>
20
+ <string>$(MARKETING_VERSION)</string>
21
+ <key>CFBundleSignature</key>
22
+ <string>????</string>
23
+ <key>CFBundleVersion</key>
24
+ <string>$(CURRENT_PROJECT_VERSION)</string>
25
+ <key>LSRequiresIPhoneOS</key>
26
+ <true/>
27
+ <key>NSAppTransportSecurity</key>
28
+ <dict>
29
+ <key>NSExceptionDomains</key>
30
+ <dict>
31
+ <key>localhost</key>
32
+ <dict>
33
+ <key>NSExceptionAllowsInsecureHTTPLoads</key>
34
+ <true/>
35
+ </dict>
36
+ </dict>
37
+ </dict>
38
+ <key>NSLocationWhenInUseUsageDescription</key>
39
+ <string></string>
40
+ <key>UILaunchStoryboardName</key>
41
+ <string>LaunchScreen</string>
42
+ <key>UIRequiredDeviceCapabilities</key>
43
+ <array>
44
+ <string>armv7</string>
45
+ </array>
46
+ <key>UISupportedInterfaceOrientations</key>
47
+ <array>
48
+ <string>UIInterfaceOrientationPortrait</string>
49
+ <string>UIInterfaceOrientationLandscapeLeft</string>
50
+ <string>UIInterfaceOrientationLandscapeRight</string>
51
+ </array>
52
+ <key>UIViewControllerBasedStatusBarAppearance</key>
53
+ <false/>
54
+ </dict>
55
+ </plist>
@@ -0,0 +1,55 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleDisplayName</key>
8
+ <string>ReactNativeTemplate</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>$(EXECUTABLE_NAME)</string>
11
+ <key>CFBundleIdentifier</key>
12
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
+ <key>CFBundleInfoDictionaryVersion</key>
14
+ <string>6.0</string>
15
+ <key>CFBundleName</key>
16
+ <string>$(PRODUCT_NAME)</string>
17
+ <key>CFBundlePackageType</key>
18
+ <string>APPL</string>
19
+ <key>CFBundleShortVersionString</key>
20
+ <string>$(MARKETING_VERSION)</string>
21
+ <key>CFBundleSignature</key>
22
+ <string>????</string>
23
+ <key>CFBundleVersion</key>
24
+ <string>$(CURRENT_PROJECT_VERSION)</string>
25
+ <key>LSRequiresIPhoneOS</key>
26
+ <true/>
27
+ <key>NSAppTransportSecurity</key>
28
+ <dict>
29
+ <key>NSExceptionDomains</key>
30
+ <dict>
31
+ <key>localhost</key>
32
+ <dict>
33
+ <key>NSExceptionAllowsInsecureHTTPLoads</key>
34
+ <true/>
35
+ </dict>
36
+ </dict>
37
+ </dict>
38
+ <key>NSLocationWhenInUseUsageDescription</key>
39
+ <string></string>
40
+ <key>UILaunchStoryboardName</key>
41
+ <string>LaunchScreen</string>
42
+ <key>UIRequiredDeviceCapabilities</key>
43
+ <array>
44
+ <string>armv7</string>
45
+ </array>
46
+ <key>UISupportedInterfaceOrientations</key>
47
+ <array>
48
+ <string>UIInterfaceOrientationPortrait</string>
49
+ <string>UIInterfaceOrientationLandscapeLeft</string>
50
+ <string>UIInterfaceOrientationLandscapeRight</string>
51
+ </array>
52
+ <key>UIViewControllerBasedStatusBarAppearance</key>
53
+ <false/>
54
+ </dict>
55
+ </plist>