@hedia/recommendation-screen 1.0.0 → 1.0.1

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 (86) hide show
  1. package/Changelog.md +8 -4
  2. package/README.md +3 -3
  3. package/android/app/BUCK +55 -55
  4. package/android/app/build.gradle +225 -225
  5. package/android/app/build_defs.bzl +19 -19
  6. package/android/app/proguard-rules.pro +10 -10
  7. package/android/app/src/debug/AndroidManifest.xml +8 -8
  8. package/android/app/src/debug/java/com/hediarecommendationscreen/ReactNativeFlipper.java +72 -72
  9. package/android/app/src/main/AndroidManifest.xml +27 -27
  10. package/android/app/src/main/java/com/hediarecommendationscreen/MainActivity.java +15 -15
  11. package/android/app/src/main/java/com/hediarecommendationscreen/MainApplication.java +80 -80
  12. package/android/app/src/main/res/values/strings.xml +3 -3
  13. package/android/app/src/main/res/values/styles.xml +9 -9
  14. package/android/build.gradle +38 -38
  15. package/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  16. package/android/gradle.properties +28 -28
  17. package/android/gradlew +188 -188
  18. package/android/settings.gradle +3 -3
  19. package/index.d.ts +5 -5
  20. package/index.js +16 -16
  21. package/ios/HediaRecommendationScreen/AppDelegate.h +8 -8
  22. package/ios/HediaRecommendationScreen/AppDelegate.m +58 -58
  23. package/ios/HediaRecommendationScreen/Base.lproj/LaunchScreen.xib +42 -42
  24. package/ios/HediaRecommendationScreen/Images.xcassets/AppIcon.appiconset/Contents.json +37 -37
  25. package/ios/HediaRecommendationScreen/Images.xcassets/Contents.json +6 -6
  26. package/ios/HediaRecommendationScreen/Info.plist +57 -57
  27. package/ios/HediaRecommendationScreen/main.m +9 -9
  28. package/ios/HediaRecommendationScreen-tvOS/Info.plist +53 -53
  29. package/ios/HediaRecommendationScreen-tvOSTests/Info.plist +24 -24
  30. package/ios/HediaRecommendationScreen.xcodeproj/project.pbxproj +807 -807
  31. package/ios/HediaRecommendationScreen.xcodeproj/xcshareddata/xcschemes/HediaRecommendationScreen-tvOS.xcscheme +88 -88
  32. package/ios/HediaRecommendationScreen.xcodeproj/xcshareddata/xcschemes/HediaRecommendationScreen.xcscheme +88 -88
  33. package/ios/HediaRecommendationScreenTests/HediaRecommendationScreenTests.m +65 -65
  34. package/ios/HediaRecommendationScreenTests/Info.plist +24 -24
  35. package/ios/Podfile +104 -104
  36. package/package.json +1 -3
  37. package/src/RecommendationScreen.d.ts +42 -42
  38. package/src/RecommendationScreen.js +126 -127
  39. package/src/RecommendationScreen.tsx +3 -4
  40. package/src/components/Emotion.d.ts +14 -14
  41. package/src/components/Emotion.js +50 -51
  42. package/src/components/Emotion.tsx +1 -2
  43. package/src/components/Header.d.ts +52 -52
  44. package/src/components/Header.js +63 -64
  45. package/src/components/Header.tsx +1 -2
  46. package/src/components/Icon.js +41 -41
  47. package/src/components/InfoBars.d.ts +67 -67
  48. package/src/components/InfoBars.js +71 -71
  49. package/src/components/InvisibleNumberInput.d.ts +24 -24
  50. package/src/components/InvisibleNumberInput.js +64 -64
  51. package/src/components/MoodIcon.d.ts +14 -14
  52. package/src/components/MoodIcon.js +51 -51
  53. package/src/components/RecentInsulin.d.ts +9 -9
  54. package/src/components/RecentInsulin.js +75 -76
  55. package/src/components/RecentInsulin.tsx +4 -5
  56. package/src/components/RecommendedCarbs.d.ts +30 -30
  57. package/src/components/RecommendedCarbs.js +146 -147
  58. package/src/components/RecommendedCarbs.tsx +8 -9
  59. package/src/components/RecommendedInsulin.d.ts +22 -22
  60. package/src/components/RecommendedInsulin.js +93 -94
  61. package/src/components/RecommendedInsulin.tsx +2 -3
  62. package/src/components/Remeasure.d.ts +13 -13
  63. package/src/components/Remeasure.js +76 -77
  64. package/src/components/Remeasure.tsx +3 -4
  65. package/src/components/TransferToLogbook.d.ts +14 -14
  66. package/src/components/TransferToLogbook.js +75 -76
  67. package/src/components/TransferToLogbook.tsx +2 -3
  68. package/src/locale/da/messages.js +1 -1
  69. package/src/locale/da/messages.po +31 -29
  70. package/src/locale/en/messages.js +1 -1
  71. package/src/locale/en/messages.po +32 -30
  72. package/src/locale/i18nUtils.d.ts +5 -5
  73. package/src/locale/i18nUtils.js +22 -22
  74. package/src/types/enum.d.ts +26 -26
  75. package/src/types/enum.js +34 -34
  76. package/src/types/types.d.ts +21 -21
  77. package/src/types/types.js +2 -2
  78. package/src/utils/Constants.d.ts +3 -3
  79. package/src/utils/Constants.js +6 -6
  80. package/src/utils/RecommendationError.d.ts +9 -9
  81. package/src/utils/RecommendationError.js +16 -17
  82. package/src/utils/RecommendationError.ts +4 -6
  83. package/src/utils/Utils.d.ts +5 -5
  84. package/src/utils/Utils.js +24 -24
  85. package/.prettierignore +0 -2
  86. package/index-git.sh +0 -5
@@ -1,42 +1,42 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14D136" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
3
- <dependencies>
4
- <deployment identifier="iOS"/>
5
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
6
- <capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
7
- </dependencies>
8
- <objects>
9
- <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
10
- <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
11
- <view contentMode="scaleToFill" id="iN0-l3-epB">
12
- <rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
13
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
14
- <subviews>
15
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
16
- <rect key="frame" x="20" y="439" width="441" height="21"/>
17
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
18
- <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
19
- <nil key="highlightedColor"/>
20
- </label>
21
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="HediaRecommendationScreen" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
22
- <rect key="frame" x="20" y="140" width="441" height="43"/>
23
- <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
24
- <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
25
- <nil key="highlightedColor"/>
26
- </label>
27
- </subviews>
28
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
29
- <constraints>
30
- <constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
31
- <constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
32
- <constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
33
- <constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
34
- <constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
35
- <constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
36
- </constraints>
37
- <nil key="simulatedStatusBarMetrics"/>
38
- <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
39
- <point key="canvasLocation" x="548" y="455"/>
40
- </view>
41
- </objects>
42
- </document>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14D136" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
3
+ <dependencies>
4
+ <deployment identifier="iOS"/>
5
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
6
+ <capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
7
+ </dependencies>
8
+ <objects>
9
+ <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
10
+ <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
11
+ <view contentMode="scaleToFill" id="iN0-l3-epB">
12
+ <rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
13
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
14
+ <subviews>
15
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
16
+ <rect key="frame" x="20" y="439" width="441" height="21"/>
17
+ <fontDescription key="fontDescription" type="system" pointSize="17"/>
18
+ <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
19
+ <nil key="highlightedColor"/>
20
+ </label>
21
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="HediaRecommendationScreen" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
22
+ <rect key="frame" x="20" y="140" width="441" height="43"/>
23
+ <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
24
+ <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
25
+ <nil key="highlightedColor"/>
26
+ </label>
27
+ </subviews>
28
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
29
+ <constraints>
30
+ <constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
31
+ <constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
32
+ <constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
33
+ <constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
34
+ <constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
35
+ <constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
36
+ </constraints>
37
+ <nil key="simulatedStatusBarMetrics"/>
38
+ <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
39
+ <point key="canvasLocation" x="548" y="455"/>
40
+ </view>
41
+ </objects>
42
+ </document>
@@ -1,38 +1,38 @@
1
- {
2
- "images" : [
3
- {
4
- "idiom" : "iphone",
5
- "size" : "29x29",
6
- "scale" : "2x"
7
- },
8
- {
9
- "idiom" : "iphone",
10
- "size" : "29x29",
11
- "scale" : "3x"
12
- },
13
- {
14
- "idiom" : "iphone",
15
- "size" : "40x40",
16
- "scale" : "2x"
17
- },
18
- {
19
- "idiom" : "iphone",
20
- "size" : "40x40",
21
- "scale" : "3x"
22
- },
23
- {
24
- "idiom" : "iphone",
25
- "size" : "60x60",
26
- "scale" : "2x"
27
- },
28
- {
29
- "idiom" : "iphone",
30
- "size" : "60x60",
31
- "scale" : "3x"
32
- }
33
- ],
34
- "info" : {
35
- "version" : 1,
36
- "author" : "xcode"
37
- }
1
+ {
2
+ "images" : [
3
+ {
4
+ "idiom" : "iphone",
5
+ "size" : "29x29",
6
+ "scale" : "2x"
7
+ },
8
+ {
9
+ "idiom" : "iphone",
10
+ "size" : "29x29",
11
+ "scale" : "3x"
12
+ },
13
+ {
14
+ "idiom" : "iphone",
15
+ "size" : "40x40",
16
+ "scale" : "2x"
17
+ },
18
+ {
19
+ "idiom" : "iphone",
20
+ "size" : "40x40",
21
+ "scale" : "3x"
22
+ },
23
+ {
24
+ "idiom" : "iphone",
25
+ "size" : "60x60",
26
+ "scale" : "2x"
27
+ },
28
+ {
29
+ "idiom" : "iphone",
30
+ "size" : "60x60",
31
+ "scale" : "3x"
32
+ }
33
+ ],
34
+ "info" : {
35
+ "version" : 1,
36
+ "author" : "xcode"
37
+ }
38
38
  }
@@ -1,6 +1,6 @@
1
- {
2
- "info" : {
3
- "version" : 1,
4
- "author" : "xcode"
5
- }
6
- }
1
+ {
2
+ "info" : {
3
+ "version" : 1,
4
+ "author" : "xcode"
5
+ }
6
+ }
@@ -1,57 +1,57 @@
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>HediaRecommendationScreen</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>1.0</string>
21
- <key>CFBundleSignature</key>
22
- <string>????</string>
23
- <key>CFBundleVersion</key>
24
- <string>1</string>
25
- <key>LSRequiresIPhoneOS</key>
26
- <true/>
27
- <key>NSAppTransportSecurity</key>
28
- <dict>
29
- <key>NSAllowsArbitraryLoads</key>
30
- <true/>
31
- <key>NSExceptionDomains</key>
32
- <dict>
33
- <key>localhost</key>
34
- <dict>
35
- <key>NSExceptionAllowsInsecureHTTPLoads</key>
36
- <true/>
37
- </dict>
38
- </dict>
39
- </dict>
40
- <key>NSLocationWhenInUseUsageDescription</key>
41
- <string></string>
42
- <key>UILaunchStoryboardName</key>
43
- <string>LaunchScreen</string>
44
- <key>UIRequiredDeviceCapabilities</key>
45
- <array>
46
- <string>armv7</string>
47
- </array>
48
- <key>UISupportedInterfaceOrientations</key>
49
- <array>
50
- <string>UIInterfaceOrientationPortrait</string>
51
- <string>UIInterfaceOrientationLandscapeLeft</string>
52
- <string>UIInterfaceOrientationLandscapeRight</string>
53
- </array>
54
- <key>UIViewControllerBasedStatusBarAppearance</key>
55
- <false/>
56
- </dict>
57
- </plist>
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>HediaRecommendationScreen</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>1.0</string>
21
+ <key>CFBundleSignature</key>
22
+ <string>????</string>
23
+ <key>CFBundleVersion</key>
24
+ <string>1</string>
25
+ <key>LSRequiresIPhoneOS</key>
26
+ <true/>
27
+ <key>NSAppTransportSecurity</key>
28
+ <dict>
29
+ <key>NSAllowsArbitraryLoads</key>
30
+ <true/>
31
+ <key>NSExceptionDomains</key>
32
+ <dict>
33
+ <key>localhost</key>
34
+ <dict>
35
+ <key>NSExceptionAllowsInsecureHTTPLoads</key>
36
+ <true/>
37
+ </dict>
38
+ </dict>
39
+ </dict>
40
+ <key>NSLocationWhenInUseUsageDescription</key>
41
+ <string></string>
42
+ <key>UILaunchStoryboardName</key>
43
+ <string>LaunchScreen</string>
44
+ <key>UIRequiredDeviceCapabilities</key>
45
+ <array>
46
+ <string>armv7</string>
47
+ </array>
48
+ <key>UISupportedInterfaceOrientations</key>
49
+ <array>
50
+ <string>UIInterfaceOrientationPortrait</string>
51
+ <string>UIInterfaceOrientationLandscapeLeft</string>
52
+ <string>UIInterfaceOrientationLandscapeRight</string>
53
+ </array>
54
+ <key>UIViewControllerBasedStatusBarAppearance</key>
55
+ <false/>
56
+ </dict>
57
+ </plist>
@@ -1,9 +1,9 @@
1
- #import <UIKit/UIKit.h>
2
-
3
- #import "AppDelegate.h"
4
-
5
- int main(int argc, char * argv[]) {
6
- @autoreleasepool {
7
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
8
- }
9
- }
1
+ #import <UIKit/UIKit.h>
2
+
3
+ #import "AppDelegate.h"
4
+
5
+ int main(int argc, char * argv[]) {
6
+ @autoreleasepool {
7
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
8
+ }
9
+ }
@@ -1,53 +1,53 @@
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>CFBundleExecutable</key>
8
- <string>$(EXECUTABLE_NAME)</string>
9
- <key>CFBundleIdentifier</key>
10
- <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
- <key>CFBundleInfoDictionaryVersion</key>
12
- <string>6.0</string>
13
- <key>CFBundleName</key>
14
- <string>$(PRODUCT_NAME)</string>
15
- <key>CFBundlePackageType</key>
16
- <string>APPL</string>
17
- <key>CFBundleShortVersionString</key>
18
- <string>1.0</string>
19
- <key>CFBundleSignature</key>
20
- <string>????</string>
21
- <key>CFBundleVersion</key>
22
- <string>1</string>
23
- <key>LSRequiresIPhoneOS</key>
24
- <true/>
25
- <key>NSAppTransportSecurity</key>
26
- <dict>
27
- <key>NSExceptionDomains</key>
28
- <dict>
29
- <key>localhost</key>
30
- <dict>
31
- <key>NSExceptionAllowsInsecureHTTPLoads</key>
32
- <true/>
33
- </dict>
34
- </dict>
35
- </dict>
36
- <key>NSLocationWhenInUseUsageDescription</key>
37
- <string></string>
38
- <key>UILaunchStoryboardName</key>
39
- <string>LaunchScreen</string>
40
- <key>UIRequiredDeviceCapabilities</key>
41
- <array>
42
- <string>armv7</string>
43
- </array>
44
- <key>UISupportedInterfaceOrientations</key>
45
- <array>
46
- <string>UIInterfaceOrientationPortrait</string>
47
- <string>UIInterfaceOrientationLandscapeLeft</string>
48
- <string>UIInterfaceOrientationLandscapeRight</string>
49
- </array>
50
- <key>UIViewControllerBasedStatusBarAppearance</key>
51
- <false/>
52
- </dict>
53
- </plist>
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>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>APPL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ <key>LSRequiresIPhoneOS</key>
24
+ <true/>
25
+ <key>NSAppTransportSecurity</key>
26
+ <dict>
27
+ <key>NSExceptionDomains</key>
28
+ <dict>
29
+ <key>localhost</key>
30
+ <dict>
31
+ <key>NSExceptionAllowsInsecureHTTPLoads</key>
32
+ <true/>
33
+ </dict>
34
+ </dict>
35
+ </dict>
36
+ <key>NSLocationWhenInUseUsageDescription</key>
37
+ <string></string>
38
+ <key>UILaunchStoryboardName</key>
39
+ <string>LaunchScreen</string>
40
+ <key>UIRequiredDeviceCapabilities</key>
41
+ <array>
42
+ <string>armv7</string>
43
+ </array>
44
+ <key>UISupportedInterfaceOrientations</key>
45
+ <array>
46
+ <string>UIInterfaceOrientationPortrait</string>
47
+ <string>UIInterfaceOrientationLandscapeLeft</string>
48
+ <string>UIInterfaceOrientationLandscapeRight</string>
49
+ </array>
50
+ <key>UIViewControllerBasedStatusBarAppearance</key>
51
+ <false/>
52
+ </dict>
53
+ </plist>
@@ -1,24 +1,24 @@
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>CFBundleExecutable</key>
8
- <string>$(EXECUTABLE_NAME)</string>
9
- <key>CFBundleIdentifier</key>
10
- <string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
11
- <key>CFBundleInfoDictionaryVersion</key>
12
- <string>6.0</string>
13
- <key>CFBundleName</key>
14
- <string>$(PRODUCT_NAME)</string>
15
- <key>CFBundlePackageType</key>
16
- <string>BNDL</string>
17
- <key>CFBundleShortVersionString</key>
18
- <string>1.0</string>
19
- <key>CFBundleSignature</key>
20
- <string>????</string>
21
- <key>CFBundleVersion</key>
22
- <string>1</string>
23
- </dict>
24
- </plist>
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>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>BNDL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ </dict>
24
+ </plist>