@domir/react-native-measure-text 0.1.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 (139) hide show
  1. package/.eslintrc.js +5 -0
  2. package/LICENSE +21 -0
  3. package/Readme.md +46 -0
  4. package/android/build.gradle +93 -0
  5. package/android/src/main/AndroidManifest.xml +2 -0
  6. package/android/src/main/java/expo/modules.measuretext/ReactNativeMeasureTextModule.kt +51 -0
  7. package/build/ReactNativeMeasureText.d.ts +6 -0
  8. package/build/ReactNativeMeasureText.d.ts.map +1 -0
  9. package/build/ReactNativeMeasureText.js +5 -0
  10. package/build/ReactNativeMeasureText.js.map +1 -0
  11. package/build/ReactNativeMeasureText.types.d.ts +4 -0
  12. package/build/ReactNativeMeasureText.types.d.ts.map +1 -0
  13. package/build/ReactNativeMeasureText.types.js +2 -0
  14. package/build/ReactNativeMeasureText.types.js.map +1 -0
  15. package/build/ReactNativeMeasureTextModule.d.ts +3 -0
  16. package/build/ReactNativeMeasureTextModule.d.ts.map +1 -0
  17. package/build/ReactNativeMeasureTextModule.js +5 -0
  18. package/build/ReactNativeMeasureTextModule.js.map +1 -0
  19. package/build/ReactNativeMeasureTextModule.web.d.ts +5 -0
  20. package/build/ReactNativeMeasureTextModule.web.d.ts.map +1 -0
  21. package/build/ReactNativeMeasureTextModule.web.js +6 -0
  22. package/build/ReactNativeMeasureTextModule.web.js.map +1 -0
  23. package/example/.expo-shared/assets.json +4 -0
  24. package/example/App.tsx +45 -0
  25. package/example/android/app/BUCK +55 -0
  26. package/example/android/app/build.gradle +376 -0
  27. package/example/android/app/build_defs.bzl +19 -0
  28. package/example/android/app/debug.keystore +0 -0
  29. package/example/android/app/proguard-rules.pro +14 -0
  30. package/example/android/app/src/debug/AndroidManifest.xml +7 -0
  31. package/example/android/app/src/debug/java/expo/modules/measuretext/example/ReactNativeFlipper.java +69 -0
  32. package/example/android/app/src/main/AndroidManifest.xml +34 -0
  33. package/example/android/app/src/main/java/expo/modules/measuretext/example/MainActivity.java +83 -0
  34. package/example/android/app/src/main/java/expo/modules/measuretext/example/MainApplication.java +106 -0
  35. package/example/android/app/src/main/java/expo/modules/measuretext/example/newarchitecture/MainApplicationReactNativeHost.java +117 -0
  36. package/example/android/app/src/main/java/expo/modules/measuretext/example/newarchitecture/components/MainComponentsRegistry.java +36 -0
  37. package/example/android/app/src/main/java/expo/modules/measuretext/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -0
  38. package/example/android/app/src/main/jni/Android.mk +48 -0
  39. package/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp +24 -0
  40. package/example/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -0
  41. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -0
  42. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -0
  43. package/example/android/app/src/main/jni/MainComponentsRegistry.cpp +61 -0
  44. package/example/android/app/src/main/jni/MainComponentsRegistry.h +32 -0
  45. package/example/android/app/src/main/jni/OnLoad.cpp +11 -0
  46. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  47. package/example/android/app/src/main/res/drawable/splashscreen.xml +3 -0
  48. package/example/android/app/src/main/res/drawable-hdpi/splashscreen_image.png +0 -0
  49. package/example/android/app/src/main/res/drawable-mdpi/splashscreen_image.png +0 -0
  50. package/example/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png +0 -0
  51. package/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png +0 -0
  52. package/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png +0 -0
  53. package/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
  54. package/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
  55. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  56. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png +0 -0
  57. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  58. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  59. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png +0 -0
  60. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  61. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  62. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
  63. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  64. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  65. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
  66. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  67. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  68. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
  69. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  70. package/example/android/app/src/main/res/values/colors.xml +6 -0
  71. package/example/android/app/src/main/res/values/strings.xml +5 -0
  72. package/example/android/app/src/main/res/values/styles.xml +17 -0
  73. package/example/android/app/src/main/res/values-night/colors.xml +1 -0
  74. package/example/android/build.gradle +59 -0
  75. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  76. package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  77. package/example/android/gradle.properties +53 -0
  78. package/example/android/gradlew +234 -0
  79. package/example/android/gradlew.bat +89 -0
  80. package/example/android/settings.gradle +17 -0
  81. package/example/app.json +35 -0
  82. package/example/assets/adaptive-icon.png +0 -0
  83. package/example/assets/favicon.png +0 -0
  84. package/example/assets/icon.png +0 -0
  85. package/example/assets/splash.png +0 -0
  86. package/example/babel.config.js +19 -0
  87. package/example/index.js +8 -0
  88. package/example/ios/.xcode.env +11 -0
  89. package/example/ios/Podfile +59 -0
  90. package/example/ios/Podfile.lock +482 -0
  91. package/example/ios/Podfile.properties.json +3 -0
  92. package/example/ios/reactnativemeasuretextexample/AppDelegate.h +9 -0
  93. package/example/ios/reactnativemeasuretextexample/AppDelegate.mm +166 -0
  94. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@1x.png +0 -0
  95. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@2x.png +0 -0
  96. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@3x.png +0 -0
  97. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@1x.png +0 -0
  98. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@2x.png +0 -0
  99. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@3x.png +0 -0
  100. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@1x.png +0 -0
  101. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@2x.png +0 -0
  102. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@3x.png +0 -0
  103. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@2x.png +0 -0
  104. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@3x.png +0 -0
  105. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@1x.png +0 -0
  106. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@2x.png +0 -0
  107. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/App-Icon-83.5x83.5@2x.png +0 -0
  108. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/Contents.json +122 -0
  109. package/example/ios/reactnativemeasuretextexample/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png +0 -0
  110. package/example/ios/reactnativemeasuretextexample/Images.xcassets/Contents.json +6 -0
  111. package/example/ios/reactnativemeasuretextexample/Images.xcassets/SplashScreen.imageset/Contents.json +21 -0
  112. package/example/ios/reactnativemeasuretextexample/Images.xcassets/SplashScreen.imageset/image.png +0 -0
  113. package/example/ios/reactnativemeasuretextexample/Images.xcassets/SplashScreenBackground.imageset/Contents.json +21 -0
  114. package/example/ios/reactnativemeasuretextexample/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
  115. package/example/ios/reactnativemeasuretextexample/Info.plist +76 -0
  116. package/example/ios/reactnativemeasuretextexample/SplashScreen.storyboard +51 -0
  117. package/example/ios/reactnativemeasuretextexample/Supporting/Expo.plist +16 -0
  118. package/example/ios/reactnativemeasuretextexample/main.m +10 -0
  119. package/example/ios/reactnativemeasuretextexample/noop-file.swift +4 -0
  120. package/example/ios/reactnativemeasuretextexample/reactnativemeasuretextexample.entitlements +8 -0
  121. package/example/ios/reactnativemeasuretextexample.xcodeproj/project.pbxproj +497 -0
  122. package/example/ios/reactnativemeasuretextexample.xcodeproj/xcshareddata/xcschemes/reactnativemeasuretextexample.xcscheme +88 -0
  123. package/example/ios/reactnativemeasuretextexample.xcworkspace/contents.xcworkspacedata +10 -0
  124. package/example/ios/reactnativemeasuretextexample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  125. package/example/metro.config.js +14 -0
  126. package/example/package-lock.json +21620 -0
  127. package/example/package.json +29 -0
  128. package/example/tsconfig.json +10 -0
  129. package/example/webpack.config.js +20 -0
  130. package/example/yarn.lock +6664 -0
  131. package/expo-module.config.json +9 -0
  132. package/ios/ReactNativeMeasureText.podspec +32 -0
  133. package/ios/ReactNativeMeasureTextModule.swift +33 -0
  134. package/package.json +38 -0
  135. package/src/ReactNativeMeasureText.ts +8 -0
  136. package/src/ReactNativeMeasureText.types.ts +3 -0
  137. package/src/ReactNativeMeasureTextModule.ts +5 -0
  138. package/src/ReactNativeMeasureTextModule.web.ts +5 -0
  139. package/tsconfig.json +9 -0
@@ -0,0 +1,497 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
11
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
13
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
14
+ 6FCEF4D476D349999D08CAE4 /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B11239BABC47D88559E392 /* noop-file.swift */; };
15
+ 96905EF65AED1B983A6B3ABC /* libPods-reactnativemeasuretextexample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-reactnativemeasuretextexample.a */; };
16
+ B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; };
17
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
18
+ /* End PBXBuildFile section */
19
+
20
+ /* Begin PBXFileReference section */
21
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
22
+ 13B07F961A680F5B00A75B9A /* reactnativemeasuretextexample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactnativemeasuretextexample.app; sourceTree = BUILT_PRODUCTS_DIR; };
23
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactnativemeasuretextexample/AppDelegate.h; sourceTree = "<group>"; };
24
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = reactnativemeasuretextexample/AppDelegate.mm; sourceTree = "<group>"; };
25
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactnativemeasuretextexample/Images.xcassets; sourceTree = "<group>"; };
26
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactnativemeasuretextexample/Info.plist; sourceTree = "<group>"; };
27
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactnativemeasuretextexample/main.m; sourceTree = "<group>"; };
28
+ 38B11239BABC47D88559E392 /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "reactnativemeasuretextexample/noop-file.swift"; sourceTree = "<group>"; };
29
+ 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-reactnativemeasuretextexample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativemeasuretextexample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
30
+ 6C2E3173556A471DD304B334 /* Pods-reactnativemeasuretextexample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemeasuretextexample.debug.xcconfig"; path = "Target Support Files/Pods-reactnativemeasuretextexample/Pods-reactnativemeasuretextexample.debug.xcconfig"; sourceTree = "<group>"; };
31
+ 7A4D352CD337FB3A3BF06240 /* Pods-reactnativemeasuretextexample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemeasuretextexample.release.xcconfig"; path = "Target Support Files/Pods-reactnativemeasuretextexample/Pods-reactnativemeasuretextexample.release.xcconfig"; sourceTree = "<group>"; };
32
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = reactnativemeasuretextexample/SplashScreen.storyboard; sourceTree = "<group>"; };
33
+ BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
34
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
35
+ FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-reactnativemeasuretextexample/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
36
+ /* End PBXFileReference section */
37
+
38
+ /* Begin PBXFrameworksBuildPhase section */
39
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
40
+ isa = PBXFrameworksBuildPhase;
41
+ buildActionMask = 2147483647;
42
+ files = (
43
+ 96905EF65AED1B983A6B3ABC /* libPods-reactnativemeasuretextexample.a in Frameworks */,
44
+ );
45
+ runOnlyForDeploymentPostprocessing = 0;
46
+ };
47
+ /* End PBXFrameworksBuildPhase section */
48
+
49
+ /* Begin PBXGroup section */
50
+ 13B07FAE1A68108700A75B9A /* reactnativemeasuretextexample */ = {
51
+ isa = PBXGroup;
52
+ children = (
53
+ BB2F792B24A3F905000567C9 /* Supporting */,
54
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
55
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
56
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
57
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
58
+ 13B07FB61A68108700A75B9A /* Info.plist */,
59
+ 13B07FB71A68108700A75B9A /* main.m */,
60
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
61
+ 38B11239BABC47D88559E392 /* noop-file.swift */,
62
+ );
63
+ name = reactnativemeasuretextexample;
64
+ sourceTree = "<group>";
65
+ };
66
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
67
+ isa = PBXGroup;
68
+ children = (
69
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
70
+ 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-reactnativemeasuretextexample.a */,
71
+ );
72
+ name = Frameworks;
73
+ sourceTree = "<group>";
74
+ };
75
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
76
+ isa = PBXGroup;
77
+ children = (
78
+ );
79
+ name = Libraries;
80
+ sourceTree = "<group>";
81
+ };
82
+ 83CBB9F61A601CBA00E9B192 = {
83
+ isa = PBXGroup;
84
+ children = (
85
+ 13B07FAE1A68108700A75B9A /* reactnativemeasuretextexample */,
86
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
87
+ 83CBBA001A601CBA00E9B192 /* Products */,
88
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
89
+ D65327D7A22EEC0BE12398D9 /* Pods */,
90
+ D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */,
91
+ );
92
+ indentWidth = 2;
93
+ sourceTree = "<group>";
94
+ tabWidth = 2;
95
+ usesTabs = 0;
96
+ };
97
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
98
+ isa = PBXGroup;
99
+ children = (
100
+ 13B07F961A680F5B00A75B9A /* reactnativemeasuretextexample.app */,
101
+ );
102
+ name = Products;
103
+ sourceTree = "<group>";
104
+ };
105
+ 92DBD88DE9BF7D494EA9DA96 /* reactnativemeasuretextexample */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */,
109
+ );
110
+ name = reactnativemeasuretextexample;
111
+ sourceTree = "<group>";
112
+ };
113
+ BB2F792B24A3F905000567C9 /* Supporting */ = {
114
+ isa = PBXGroup;
115
+ children = (
116
+ BB2F792C24A3F905000567C9 /* Expo.plist */,
117
+ );
118
+ name = Supporting;
119
+ path = reactnativemeasuretextexample/Supporting;
120
+ sourceTree = "<group>";
121
+ };
122
+ D65327D7A22EEC0BE12398D9 /* Pods */ = {
123
+ isa = PBXGroup;
124
+ children = (
125
+ 6C2E3173556A471DD304B334 /* Pods-reactnativemeasuretextexample.debug.xcconfig */,
126
+ 7A4D352CD337FB3A3BF06240 /* Pods-reactnativemeasuretextexample.release.xcconfig */,
127
+ );
128
+ path = Pods;
129
+ sourceTree = "<group>";
130
+ };
131
+ D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = {
132
+ isa = PBXGroup;
133
+ children = (
134
+ 92DBD88DE9BF7D494EA9DA96 /* reactnativemeasuretextexample */,
135
+ );
136
+ name = ExpoModulesProviders;
137
+ sourceTree = "<group>";
138
+ };
139
+ /* End PBXGroup section */
140
+
141
+ /* Begin PBXNativeTarget section */
142
+ 13B07F861A680F5B00A75B9A /* reactnativemeasuretextexample */ = {
143
+ isa = PBXNativeTarget;
144
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativemeasuretextexample" */;
145
+ buildPhases = (
146
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
147
+ FD10A7F022414F080027D42C /* Start Packager */,
148
+ 13B07F871A680F5B00A75B9A /* Sources */,
149
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
150
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
151
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
152
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
153
+ );
154
+ buildRules = (
155
+ );
156
+ dependencies = (
157
+ );
158
+ name = reactnativemeasuretextexample;
159
+ productName = reactnativemeasuretextexample;
160
+ productReference = 13B07F961A680F5B00A75B9A /* reactnativemeasuretextexample.app */;
161
+ productType = "com.apple.product-type.application";
162
+ };
163
+ /* End PBXNativeTarget section */
164
+
165
+ /* Begin PBXProject section */
166
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
167
+ isa = PBXProject;
168
+ attributes = {
169
+ LastUpgradeCheck = 1130;
170
+ TargetAttributes = {
171
+ 13B07F861A680F5B00A75B9A = {
172
+ DevelopmentTeam = ZYQ98AX7AU;
173
+ LastSwiftMigration = 1250;
174
+ ProvisioningStyle = Automatic;
175
+ };
176
+ };
177
+ };
178
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativemeasuretextexample" */;
179
+ compatibilityVersion = "Xcode 3.2";
180
+ developmentRegion = en;
181
+ hasScannedForEncodings = 0;
182
+ knownRegions = (
183
+ en,
184
+ Base,
185
+ );
186
+ mainGroup = 83CBB9F61A601CBA00E9B192;
187
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
188
+ projectDirPath = "";
189
+ projectRoot = "";
190
+ targets = (
191
+ 13B07F861A680F5B00A75B9A /* reactnativemeasuretextexample */,
192
+ );
193
+ };
194
+ /* End PBXProject section */
195
+
196
+ /* Begin PBXResourcesBuildPhase section */
197
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
198
+ isa = PBXResourcesBuildPhase;
199
+ buildActionMask = 2147483647;
200
+ files = (
201
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
202
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
203
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
204
+ );
205
+ runOnlyForDeploymentPostprocessing = 0;
206
+ };
207
+ /* End PBXResourcesBuildPhase section */
208
+
209
+ /* Begin PBXShellScriptBuildPhase section */
210
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
211
+ isa = PBXShellScriptBuildPhase;
212
+ buildActionMask = 2147483647;
213
+ files = (
214
+ );
215
+ inputPaths = (
216
+ );
217
+ name = "Bundle React Native code and images";
218
+ outputPaths = (
219
+ );
220
+ runOnlyForDeploymentPostprocessing = 0;
221
+ shellPath = /bin/sh;
222
+ shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
223
+ };
224
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
225
+ isa = PBXShellScriptBuildPhase;
226
+ buildActionMask = 2147483647;
227
+ files = (
228
+ );
229
+ inputFileListPaths = (
230
+ );
231
+ inputPaths = (
232
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
233
+ "${PODS_ROOT}/Manifest.lock",
234
+ );
235
+ name = "[CP] Check Pods Manifest.lock";
236
+ outputFileListPaths = (
237
+ );
238
+ outputPaths = (
239
+ "$(DERIVED_FILE_DIR)/Pods-reactnativemeasuretextexample-checkManifestLockResult.txt",
240
+ );
241
+ runOnlyForDeploymentPostprocessing = 0;
242
+ shellPath = /bin/sh;
243
+ 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";
244
+ showEnvVarsInLog = 0;
245
+ };
246
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
247
+ isa = PBXShellScriptBuildPhase;
248
+ buildActionMask = 2147483647;
249
+ files = (
250
+ );
251
+ inputPaths = (
252
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemeasuretextexample/Pods-reactnativemeasuretextexample-resources.sh",
253
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
254
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
255
+ );
256
+ name = "[CP] Copy Pods Resources";
257
+ outputPaths = (
258
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
259
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
260
+ );
261
+ runOnlyForDeploymentPostprocessing = 0;
262
+ shellPath = /bin/sh;
263
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemeasuretextexample/Pods-reactnativemeasuretextexample-resources.sh\"\n";
264
+ showEnvVarsInLog = 0;
265
+ };
266
+ FD10A7F022414F080027D42C /* Start Packager */ = {
267
+ isa = PBXShellScriptBuildPhase;
268
+ buildActionMask = 2147483647;
269
+ files = (
270
+ );
271
+ inputFileListPaths = (
272
+ );
273
+ inputPaths = (
274
+ );
275
+ name = "Start Packager";
276
+ outputFileListPaths = (
277
+ );
278
+ outputPaths = (
279
+ );
280
+ runOnlyForDeploymentPostprocessing = 0;
281
+ shellPath = /bin/sh;
282
+ shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\nexport RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > `$NODE_BINARY --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/.packager.env'\"`\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open `$NODE_BINARY --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/launchPackager.command'\"` || echo \"Can't start packager automatically\"\n fi\nfi\n";
283
+ showEnvVarsInLog = 0;
284
+ };
285
+ /* End PBXShellScriptBuildPhase section */
286
+
287
+ /* Begin PBXSourcesBuildPhase section */
288
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
289
+ isa = PBXSourcesBuildPhase;
290
+ buildActionMask = 2147483647;
291
+ files = (
292
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
293
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
294
+ B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */,
295
+ 6FCEF4D476D349999D08CAE4 /* noop-file.swift in Sources */,
296
+ );
297
+ runOnlyForDeploymentPostprocessing = 0;
298
+ };
299
+ /* End PBXSourcesBuildPhase section */
300
+
301
+ /* Begin XCBuildConfiguration section */
302
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
303
+ isa = XCBuildConfiguration;
304
+ baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-reactnativemeasuretextexample.debug.xcconfig */;
305
+ buildSettings = {
306
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
307
+ CLANG_ENABLE_MODULES = YES;
308
+ CODE_SIGN_ENTITLEMENTS = reactnativemeasuretextexample/reactnativemeasuretextexample.entitlements;
309
+ CODE_SIGN_IDENTITY = "Apple Development";
310
+ CODE_SIGN_STYLE = Automatic;
311
+ CURRENT_PROJECT_VERSION = 1;
312
+ DEVELOPMENT_TEAM = ZYQ98AX7AU;
313
+ ENABLE_BITCODE = NO;
314
+ GCC_PREPROCESSOR_DEFINITIONS = (
315
+ "$(inherited)",
316
+ "FB_SONARKIT_ENABLED=1",
317
+ );
318
+ INFOPLIST_FILE = reactnativemeasuretextexample/Info.plist;
319
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
320
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
321
+ OTHER_LDFLAGS = (
322
+ "$(inherited)",
323
+ "-ObjC",
324
+ "-lc++",
325
+ );
326
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
327
+ PRODUCT_BUNDLE_IDENTIFIER = expo.modules.measuretext.example;
328
+ PRODUCT_NAME = reactnativemeasuretextexample;
329
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
330
+ SWIFT_VERSION = 5.0;
331
+ TARGETED_DEVICE_FAMILY = "1,2";
332
+ VERSIONING_SYSTEM = "apple-generic";
333
+ };
334
+ name = Debug;
335
+ };
336
+ 13B07F951A680F5B00A75B9A /* Release */ = {
337
+ isa = XCBuildConfiguration;
338
+ baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-reactnativemeasuretextexample.release.xcconfig */;
339
+ buildSettings = {
340
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
341
+ CLANG_ENABLE_MODULES = YES;
342
+ CODE_SIGN_ENTITLEMENTS = reactnativemeasuretextexample/reactnativemeasuretextexample.entitlements;
343
+ CODE_SIGN_IDENTITY = "Apple Development";
344
+ CODE_SIGN_STYLE = Automatic;
345
+ CURRENT_PROJECT_VERSION = 1;
346
+ DEVELOPMENT_TEAM = ZYQ98AX7AU;
347
+ INFOPLIST_FILE = reactnativemeasuretextexample/Info.plist;
348
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
349
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
350
+ OTHER_LDFLAGS = (
351
+ "$(inherited)",
352
+ "-ObjC",
353
+ "-lc++",
354
+ );
355
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
356
+ PRODUCT_BUNDLE_IDENTIFIER = expo.modules.measuretext.example;
357
+ PRODUCT_NAME = reactnativemeasuretextexample;
358
+ SWIFT_VERSION = 5.0;
359
+ TARGETED_DEVICE_FAMILY = "1,2";
360
+ VERSIONING_SYSTEM = "apple-generic";
361
+ };
362
+ name = Release;
363
+ };
364
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
365
+ isa = XCBuildConfiguration;
366
+ buildSettings = {
367
+ ALWAYS_SEARCH_USER_PATHS = NO;
368
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
369
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
370
+ CLANG_CXX_LIBRARY = "libc++";
371
+ CLANG_ENABLE_MODULES = YES;
372
+ CLANG_ENABLE_OBJC_ARC = YES;
373
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
374
+ CLANG_WARN_BOOL_CONVERSION = YES;
375
+ CLANG_WARN_COMMA = YES;
376
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
377
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
378
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
379
+ CLANG_WARN_EMPTY_BODY = YES;
380
+ CLANG_WARN_ENUM_CONVERSION = YES;
381
+ CLANG_WARN_INFINITE_RECURSION = YES;
382
+ CLANG_WARN_INT_CONVERSION = YES;
383
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
384
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
385
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
386
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
387
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
388
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
389
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
390
+ CLANG_WARN_UNREACHABLE_CODE = YES;
391
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
392
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
393
+ COPY_PHASE_STRIP = NO;
394
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
395
+ ENABLE_TESTABILITY = YES;
396
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
397
+ GCC_C_LANGUAGE_STANDARD = gnu99;
398
+ GCC_DYNAMIC_NO_PIC = NO;
399
+ GCC_NO_COMMON_BLOCKS = YES;
400
+ GCC_OPTIMIZATION_LEVEL = 0;
401
+ GCC_PREPROCESSOR_DEFINITIONS = (
402
+ "DEBUG=1",
403
+ "$(inherited)",
404
+ );
405
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
406
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
407
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
408
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
409
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
410
+ GCC_WARN_UNUSED_FUNCTION = YES;
411
+ GCC_WARN_UNUSED_VARIABLE = YES;
412
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
413
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
414
+ LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
415
+ MTL_ENABLE_DEBUG_INFO = YES;
416
+ ONLY_ACTIVE_ARCH = YES;
417
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
418
+ SDKROOT = iphoneos;
419
+ };
420
+ name = Debug;
421
+ };
422
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
423
+ isa = XCBuildConfiguration;
424
+ buildSettings = {
425
+ ALWAYS_SEARCH_USER_PATHS = NO;
426
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
427
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
428
+ CLANG_CXX_LIBRARY = "libc++";
429
+ CLANG_ENABLE_MODULES = YES;
430
+ CLANG_ENABLE_OBJC_ARC = YES;
431
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
432
+ CLANG_WARN_BOOL_CONVERSION = YES;
433
+ CLANG_WARN_COMMA = YES;
434
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
435
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
436
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
437
+ CLANG_WARN_EMPTY_BODY = YES;
438
+ CLANG_WARN_ENUM_CONVERSION = YES;
439
+ CLANG_WARN_INFINITE_RECURSION = YES;
440
+ CLANG_WARN_INT_CONVERSION = YES;
441
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
442
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
443
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
444
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
445
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
446
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
447
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
448
+ CLANG_WARN_UNREACHABLE_CODE = YES;
449
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
450
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
451
+ COPY_PHASE_STRIP = YES;
452
+ ENABLE_NS_ASSERTIONS = NO;
453
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
454
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
455
+ GCC_C_LANGUAGE_STANDARD = gnu99;
456
+ GCC_NO_COMMON_BLOCKS = YES;
457
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
458
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
459
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
460
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
461
+ GCC_WARN_UNUSED_FUNCTION = YES;
462
+ GCC_WARN_UNUSED_VARIABLE = YES;
463
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
464
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
465
+ LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
466
+ MTL_ENABLE_DEBUG_INFO = NO;
467
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
468
+ SDKROOT = iphoneos;
469
+ VALIDATE_PRODUCT = YES;
470
+ };
471
+ name = Release;
472
+ };
473
+ /* End XCBuildConfiguration section */
474
+
475
+ /* Begin XCConfigurationList section */
476
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativemeasuretextexample" */ = {
477
+ isa = XCConfigurationList;
478
+ buildConfigurations = (
479
+ 13B07F941A680F5B00A75B9A /* Debug */,
480
+ 13B07F951A680F5B00A75B9A /* Release */,
481
+ );
482
+ defaultConfigurationIsVisible = 0;
483
+ defaultConfigurationName = Release;
484
+ };
485
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativemeasuretextexample" */ = {
486
+ isa = XCConfigurationList;
487
+ buildConfigurations = (
488
+ 83CBBA201A601CBA00E9B192 /* Debug */,
489
+ 83CBBA211A601CBA00E9B192 /* Release */,
490
+ );
491
+ defaultConfigurationIsVisible = 0;
492
+ defaultConfigurationName = Release;
493
+ };
494
+ /* End XCConfigurationList section */
495
+ };
496
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
497
+ }
@@ -0,0 +1,88 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1130"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
+ BuildableName = "reactnativemeasuretextexample.app"
19
+ BlueprintName = "reactnativemeasuretextexample"
20
+ ReferencedContainer = "container:reactnativemeasuretextexample.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ <TestableReference
32
+ skipped = "NO">
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "00E356ED1AD99517003FC87E"
36
+ BuildableName = "reactnativemeasuretextexampleTests.xctest"
37
+ BlueprintName = "reactnativemeasuretextexampleTests"
38
+ ReferencedContainer = "container:reactnativemeasuretextexample.xcodeproj">
39
+ </BuildableReference>
40
+ </TestableReference>
41
+ </Testables>
42
+ </TestAction>
43
+ <LaunchAction
44
+ buildConfiguration = "Debug"
45
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
46
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47
+ launchStyle = "0"
48
+ useCustomWorkingDirectory = "NO"
49
+ ignoresPersistentStateOnLaunch = "NO"
50
+ debugDocumentVersioning = "YES"
51
+ debugServiceExtension = "internal"
52
+ allowLocationSimulation = "YES">
53
+ <BuildableProductRunnable
54
+ runnableDebuggingMode = "0">
55
+ <BuildableReference
56
+ BuildableIdentifier = "primary"
57
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
58
+ BuildableName = "reactnativemeasuretextexample.app"
59
+ BlueprintName = "reactnativemeasuretextexample"
60
+ ReferencedContainer = "container:reactnativemeasuretextexample.xcodeproj">
61
+ </BuildableReference>
62
+ </BuildableProductRunnable>
63
+ </LaunchAction>
64
+ <ProfileAction
65
+ buildConfiguration = "Release"
66
+ shouldUseLaunchSchemeArgsEnv = "YES"
67
+ savedToolIdentifier = ""
68
+ useCustomWorkingDirectory = "NO"
69
+ debugDocumentVersioning = "YES">
70
+ <BuildableProductRunnable
71
+ runnableDebuggingMode = "0">
72
+ <BuildableReference
73
+ BuildableIdentifier = "primary"
74
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
75
+ BuildableName = "reactnativemeasuretextexample.app"
76
+ BlueprintName = "reactnativemeasuretextexample"
77
+ ReferencedContainer = "container:reactnativemeasuretextexample.xcodeproj">
78
+ </BuildableReference>
79
+ </BuildableProductRunnable>
80
+ </ProfileAction>
81
+ <AnalyzeAction
82
+ buildConfiguration = "Debug">
83
+ </AnalyzeAction>
84
+ <ArchiveAction
85
+ buildConfiguration = "Release"
86
+ revealArchiveInOrganizer = "YES">
87
+ </ArchiveAction>
88
+ </Scheme>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:reactnativemeasuretextexample.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,8 @@
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>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,14 @@
1
+ // Learn more https://docs.expo.io/guides/customizing-metro
2
+ const { getDefaultConfig } = require('expo/metro-config');
3
+ const path = require('path');
4
+
5
+ const config = getDefaultConfig(__dirname);
6
+
7
+ config.resolver.nodeModulesPaths = [
8
+ path.resolve(__dirname, './node_modules'),
9
+ path.resolve(__dirname, '../node_modules'),
10
+ ];
11
+
12
+ config.watchFolders = [path.resolve(__dirname, '..')];
13
+
14
+ module.exports = config;