mixpanel-react-native 1.3.4 → 1.3.5

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 (211) hide show
  1. package/.github/workflows/node.js.yml +1 -1
  2. package/CHANGELOG.md +18 -0
  3. package/MixpanelReactNative.podspec +1 -1
  4. package/README.md +2 -1
  5. package/Samples/ContextAPIMixpanel/.buckconfig +6 -0
  6. package/Samples/ContextAPIMixpanel/.editorconfig +3 -0
  7. package/Samples/ContextAPIMixpanel/.eslintrc.js +4 -0
  8. package/Samples/ContextAPIMixpanel/.flowconfig +66 -0
  9. package/Samples/ContextAPIMixpanel/.gitattributes +3 -0
  10. package/Samples/ContextAPIMixpanel/.prettierrc.js +7 -0
  11. package/Samples/ContextAPIMixpanel/.watchmanconfig +1 -0
  12. package/Samples/ContextAPIMixpanel/Analytics.js +18 -0
  13. package/Samples/ContextAPIMixpanel/App.js +17 -0
  14. package/Samples/ContextAPIMixpanel/Screens/SampleScreen.js +17 -0
  15. package/Samples/ContextAPIMixpanel/__tests__/App-test.js +14 -0
  16. package/Samples/ContextAPIMixpanel/android/.project +28 -0
  17. package/Samples/ContextAPIMixpanel/android/app/BUCK +55 -0
  18. package/Samples/ContextAPIMixpanel/android/app/build.gradle +222 -0
  19. package/Samples/ContextAPIMixpanel/android/app/build_defs.bzl +19 -0
  20. package/Samples/ContextAPIMixpanel/android/app/debug.keystore +0 -0
  21. package/Samples/ContextAPIMixpanel/android/app/proguard-rules.pro +10 -0
  22. package/Samples/ContextAPIMixpanel/android/app/src/debug/AndroidManifest.xml +13 -0
  23. package/Samples/ContextAPIMixpanel/android/app/src/debug/java/com/contextapimixpanel/ReactNativeFlipper.java +72 -0
  24. package/Samples/ContextAPIMixpanel/android/app/src/main/AndroidManifest.xml +25 -0
  25. package/Samples/ContextAPIMixpanel/android/app/src/main/java/com/contextapimixpanel/MainActivity.java +15 -0
  26. package/Samples/ContextAPIMixpanel/android/app/src/main/java/com/contextapimixpanel/MainApplication.java +80 -0
  27. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  28. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  29. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  30. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  31. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  32. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  33. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  34. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  35. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  36. package/Samples/ContextAPIMixpanel/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  37. package/Samples/ContextAPIMixpanel/android/app/src/main/res/values/strings.xml +3 -0
  38. package/Samples/ContextAPIMixpanel/android/app/src/main/res/values/styles.xml +9 -0
  39. package/Samples/ContextAPIMixpanel/android/build.gradle +38 -0
  40. package/Samples/ContextAPIMixpanel/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  41. package/Samples/ContextAPIMixpanel/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  42. package/Samples/ContextAPIMixpanel/android/gradle.properties +28 -0
  43. package/Samples/ContextAPIMixpanel/android/gradlew +185 -0
  44. package/Samples/ContextAPIMixpanel/android/gradlew.bat +89 -0
  45. package/Samples/ContextAPIMixpanel/android/settings.gradle +3 -0
  46. package/Samples/ContextAPIMixpanel/app.json +4 -0
  47. package/Samples/ContextAPIMixpanel/babel.config.js +3 -0
  48. package/Samples/ContextAPIMixpanel/index.js +9 -0
  49. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel/AppDelegate.h +8 -0
  50. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel/AppDelegate.m +62 -0
  51. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  52. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel/Images.xcassets/Contents.json +6 -0
  53. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel/Info.plist +55 -0
  54. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel/LaunchScreen.storyboard +47 -0
  55. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel/main.m +9 -0
  56. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel-Bridging-Header.h +4 -0
  57. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel.xcodeproj/project.pbxproj +694 -0
  58. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel.xcodeproj/xcshareddata/xcschemes/ContextAPIMixpanel.xcscheme +88 -0
  59. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel.xcworkspace/contents.xcworkspacedata +10 -0
  60. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  61. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanelTests/ContextAPIMixpanelTests.m +65 -0
  62. package/Samples/ContextAPIMixpanel/ios/ContextAPIMixpanelTests/Info.plist +24 -0
  63. package/Samples/ContextAPIMixpanel/ios/File.swift +8 -0
  64. package/Samples/ContextAPIMixpanel/ios/Podfile +29 -0
  65. package/Samples/ContextAPIMixpanel/metro.config.js +17 -0
  66. package/Samples/ContextAPIMixpanel/package.json +30 -0
  67. package/Samples/ContextAPIMixpanel/yarn.lock +6770 -0
  68. package/Samples/MixpanelDemo/.buckconfig +6 -0
  69. package/Samples/MixpanelDemo/.eslintrc.js +4 -0
  70. package/Samples/MixpanelDemo/.flowconfig +73 -0
  71. package/Samples/MixpanelDemo/.gitattributes +1 -0
  72. package/Samples/MixpanelDemo/.prettierrc.js +6 -0
  73. package/Samples/MixpanelDemo/.watchmanconfig +1 -0
  74. package/Samples/MixpanelDemo/Analytics.js +15 -0
  75. package/Samples/MixpanelDemo/App.js +11 -0
  76. package/Samples/MixpanelDemo/Router.js +35 -0
  77. package/Samples/MixpanelDemo/__tests__/App-test.js +3 -0
  78. package/Samples/MixpanelDemo/android/.project +28 -0
  79. package/Samples/MixpanelDemo/android/app/BUCK +55 -0
  80. package/Samples/MixpanelDemo/android/app/build.gradle +219 -0
  81. package/Samples/MixpanelDemo/android/app/build_defs.bzl +19 -0
  82. package/Samples/MixpanelDemo/android/app/debug.keystore +0 -0
  83. package/Samples/MixpanelDemo/android/app/proguard-rules.pro +10 -0
  84. package/Samples/MixpanelDemo/android/app/src/debug/AndroidManifest.xml +8 -0
  85. package/Samples/MixpanelDemo/android/app/src/debug/java/com/mixpaneldemo/ReactNativeFlipper.java +72 -0
  86. package/Samples/MixpanelDemo/android/app/src/main/AndroidManifest.xml +27 -0
  87. package/Samples/MixpanelDemo/android/app/src/main/java/com/MixpanelDemo/MainActivity.java +15 -0
  88. package/Samples/MixpanelDemo/android/app/src/main/java/com/MixpanelDemo/MainApplication.java +81 -0
  89. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  90. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  91. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  92. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  93. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  94. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  95. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  96. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  97. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  98. package/Samples/MixpanelDemo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  99. package/Samples/MixpanelDemo/android/app/src/main/res/values/strings.xml +3 -0
  100. package/Samples/MixpanelDemo/android/app/src/main/res/values/styles.xml +9 -0
  101. package/Samples/MixpanelDemo/android/build.gradle +37 -0
  102. package/Samples/MixpanelDemo/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  103. package/Samples/MixpanelDemo/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  104. package/Samples/MixpanelDemo/android/gradle.properties +28 -0
  105. package/Samples/MixpanelDemo/android/gradlew +183 -0
  106. package/Samples/MixpanelDemo/android/gradlew.bat +103 -0
  107. package/Samples/MixpanelDemo/android/settings.gradle +5 -0
  108. package/Samples/MixpanelDemo/app.json +5 -0
  109. package/Samples/MixpanelDemo/babel.config.js +3 -0
  110. package/Samples/MixpanelDemo/index.js +9 -0
  111. package/Samples/MixpanelDemo/ios/Empty.swift +8 -0
  112. package/Samples/MixpanelDemo/ios/MixpanelDemo/AppDelegate.h +8 -0
  113. package/Samples/MixpanelDemo/ios/MixpanelDemo/AppDelegate.m +58 -0
  114. package/Samples/MixpanelDemo/ios/MixpanelDemo/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  115. package/Samples/MixpanelDemo/ios/MixpanelDemo/Images.xcassets/Contents.json +6 -0
  116. package/Samples/MixpanelDemo/ios/MixpanelDemo/Info.plist +57 -0
  117. package/Samples/MixpanelDemo/ios/MixpanelDemo/LaunchScreen.storyboard +58 -0
  118. package/Samples/MixpanelDemo/ios/MixpanelDemo/main.m +9 -0
  119. package/Samples/MixpanelDemo/ios/MixpanelDemo-Bridging-Header.h +4 -0
  120. package/Samples/MixpanelDemo/ios/MixpanelDemo-tvOS/Info.plist +53 -0
  121. package/Samples/MixpanelDemo/ios/MixpanelDemo-tvOSTests/Info.plist +24 -0
  122. package/Samples/MixpanelDemo/ios/MixpanelDemo.xcodeproj/project.pbxproj +977 -0
  123. package/Samples/MixpanelDemo/ios/MixpanelDemo.xcodeproj/xcshareddata/xcschemes/MixpanelDemo-tvOS.xcscheme +88 -0
  124. package/Samples/MixpanelDemo/ios/MixpanelDemo.xcodeproj/xcshareddata/xcschemes/MixpanelDemo.xcscheme +88 -0
  125. package/Samples/MixpanelDemo/ios/MixpanelDemo.xcworkspace/contents.xcworkspacedata +10 -0
  126. package/Samples/MixpanelDemo/ios/MixpanelDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  127. package/Samples/MixpanelDemo/ios/MixpanelDemoTests/Info.plist +24 -0
  128. package/Samples/MixpanelDemo/ios/MixpanelDemoTests/MixpanelDemoTests.m +65 -0
  129. package/Samples/MixpanelDemo/ios/Podfile +24 -0
  130. package/Samples/MixpanelDemo/metro.config.js +17 -0
  131. package/Samples/MixpanelDemo/package.json +40 -0
  132. package/Samples/MixpanelDemo/screens/EventScreen.js +156 -0
  133. package/Samples/MixpanelDemo/screens/GDPRScreen.js +63 -0
  134. package/Samples/MixpanelDemo/screens/GroupScreen.js +142 -0
  135. package/Samples/MixpanelDemo/screens/Home.js +54 -0
  136. package/Samples/MixpanelDemo/screens/ProfileScreen.js +184 -0
  137. package/Samples/MixpanelDemo/yarn.lock +6945 -0
  138. package/Samples/README.md +39 -0
  139. package/Samples/SimpleMixpanel/.buckconfig +6 -0
  140. package/Samples/SimpleMixpanel/.editorconfig +3 -0
  141. package/Samples/SimpleMixpanel/.eslintrc.js +4 -0
  142. package/Samples/SimpleMixpanel/.flowconfig +66 -0
  143. package/Samples/SimpleMixpanel/.gitattributes +3 -0
  144. package/Samples/SimpleMixpanel/.prettierrc.js +7 -0
  145. package/Samples/SimpleMixpanel/.watchmanconfig +1 -0
  146. package/Samples/SimpleMixpanel/App.js +42 -0
  147. package/Samples/SimpleMixpanel/__tests__/App-test.js +14 -0
  148. package/Samples/SimpleMixpanel/android/.project +28 -0
  149. package/Samples/SimpleMixpanel/android/app/BUCK +55 -0
  150. package/Samples/SimpleMixpanel/android/app/build.gradle +222 -0
  151. package/Samples/SimpleMixpanel/android/app/build_defs.bzl +19 -0
  152. package/Samples/SimpleMixpanel/android/app/debug.keystore +0 -0
  153. package/Samples/SimpleMixpanel/android/app/proguard-rules.pro +10 -0
  154. package/Samples/SimpleMixpanel/android/app/src/debug/AndroidManifest.xml +13 -0
  155. package/Samples/SimpleMixpanel/android/app/src/debug/java/com/simplemixpanel/ReactNativeFlipper.java +72 -0
  156. package/Samples/SimpleMixpanel/android/app/src/main/AndroidManifest.xml +25 -0
  157. package/Samples/SimpleMixpanel/android/app/src/main/java/com/simplemixpanel/MainActivity.java +15 -0
  158. package/Samples/SimpleMixpanel/android/app/src/main/java/com/simplemixpanel/MainApplication.java +80 -0
  159. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  160. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  161. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  162. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  163. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  164. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  165. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  166. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  167. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  168. package/Samples/SimpleMixpanel/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  169. package/Samples/SimpleMixpanel/android/app/src/main/res/values/strings.xml +3 -0
  170. package/Samples/SimpleMixpanel/android/app/src/main/res/values/styles.xml +9 -0
  171. package/Samples/SimpleMixpanel/android/build.gradle +38 -0
  172. package/Samples/SimpleMixpanel/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  173. package/Samples/SimpleMixpanel/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  174. package/Samples/SimpleMixpanel/android/gradle.properties +28 -0
  175. package/Samples/SimpleMixpanel/android/gradlew +185 -0
  176. package/Samples/SimpleMixpanel/android/gradlew.bat +89 -0
  177. package/Samples/SimpleMixpanel/android/settings.gradle +3 -0
  178. package/Samples/SimpleMixpanel/app.json +4 -0
  179. package/Samples/SimpleMixpanel/babel.config.js +3 -0
  180. package/Samples/SimpleMixpanel/index.js +9 -0
  181. package/Samples/SimpleMixpanel/ios/File.swift +8 -0
  182. package/Samples/SimpleMixpanel/ios/Podfile +29 -0
  183. package/Samples/SimpleMixpanel/ios/SimpleMixpanel/AppDelegate.h +8 -0
  184. package/Samples/SimpleMixpanel/ios/SimpleMixpanel/AppDelegate.m +62 -0
  185. package/Samples/SimpleMixpanel/ios/SimpleMixpanel/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  186. package/Samples/SimpleMixpanel/ios/SimpleMixpanel/Images.xcassets/Contents.json +6 -0
  187. package/Samples/SimpleMixpanel/ios/SimpleMixpanel/Info.plist +55 -0
  188. package/Samples/SimpleMixpanel/ios/SimpleMixpanel/LaunchScreen.storyboard +47 -0
  189. package/Samples/SimpleMixpanel/ios/SimpleMixpanel/main.m +9 -0
  190. package/Samples/SimpleMixpanel/ios/SimpleMixpanel-Bridging-Header.h +4 -0
  191. package/Samples/SimpleMixpanel/ios/SimpleMixpanel.xcodeproj/project.pbxproj +694 -0
  192. package/Samples/SimpleMixpanel/ios/SimpleMixpanel.xcodeproj/xcshareddata/xcschemes/SimpleMixpanel.xcscheme +88 -0
  193. package/Samples/SimpleMixpanel/ios/SimpleMixpanel.xcworkspace/contents.xcworkspacedata +10 -0
  194. package/Samples/SimpleMixpanel/ios/SimpleMixpanel.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  195. package/Samples/SimpleMixpanel/ios/SimpleMixpanelTests/Info.plist +24 -0
  196. package/Samples/SimpleMixpanel/ios/SimpleMixpanelTests/SimpleMixpanelTests.m +65 -0
  197. package/Samples/SimpleMixpanel/metro.config.js +17 -0
  198. package/Samples/SimpleMixpanel/package.json +30 -0
  199. package/Samples/SimpleMixpanel/yarn.lock +6770 -0
  200. package/__tests__/index.test.js +1 -1
  201. package/android/build.gradle +1 -1
  202. package/docs/Mixpanel.html +1 -1
  203. package/docs/MixpanelGroup.html +1 -1
  204. package/docs/People.html +1 -1
  205. package/docs/index.html +5 -3
  206. package/docs/index.js.html +1 -1
  207. package/ios/MixpanelReactNative-Bridging-Header.h +0 -4
  208. package/ios/MixpanelReactNative.swift +7 -1
  209. package/ios/MixpanelTypeHandler.swift +1 -1
  210. package/package.json +25 -24
  211. package/release.py +3 -3
@@ -0,0 +1,694 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* ContextAPIMixpanelTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ContextAPIMixpanelTests.m */; };
11
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14
+ 4C56D4EDA74960AC2F8EAD3D /* libPods-ContextAPIMixpanel.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 070ADF1CCDB3716C2A6D788B /* libPods-ContextAPIMixpanel.a */; };
15
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
16
+ 8678DF7226B2811B00D79E6C /* File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8678DF7126B2811B00D79E6C /* File.swift */; };
17
+ E1D9683EF9D3E4683454F0E0 /* libPods-ContextAPIMixpanel-ContextAPIMixpanelTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D90040F1F28FB65E6F1620D /* libPods-ContextAPIMixpanel-ContextAPIMixpanelTests.a */; };
18
+ /* End PBXBuildFile section */
19
+
20
+ /* Begin PBXContainerItemProxy section */
21
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
22
+ isa = PBXContainerItemProxy;
23
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
24
+ proxyType = 1;
25
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
26
+ remoteInfo = ContextAPIMixpanel;
27
+ };
28
+ /* End PBXContainerItemProxy section */
29
+
30
+ /* Begin PBXFileReference section */
31
+ 00E356EE1AD99517003FC87E /* ContextAPIMixpanelTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ContextAPIMixpanelTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
32
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
33
+ 00E356F21AD99517003FC87E /* ContextAPIMixpanelTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ContextAPIMixpanelTests.m; sourceTree = "<group>"; };
34
+ 070ADF1CCDB3716C2A6D788B /* libPods-ContextAPIMixpanel.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ContextAPIMixpanel.a"; sourceTree = BUILT_PRODUCTS_DIR; };
35
+ 0D90040F1F28FB65E6F1620D /* libPods-ContextAPIMixpanel-ContextAPIMixpanelTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ContextAPIMixpanel-ContextAPIMixpanelTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
36
+ 13B07F961A680F5B00A75B9A /* ContextAPIMixpanel.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ContextAPIMixpanel.app; sourceTree = BUILT_PRODUCTS_DIR; };
37
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ContextAPIMixpanel/AppDelegate.h; sourceTree = "<group>"; };
38
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ContextAPIMixpanel/AppDelegate.m; sourceTree = "<group>"; };
39
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ContextAPIMixpanel/Images.xcassets; sourceTree = "<group>"; };
40
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ContextAPIMixpanel/Info.plist; sourceTree = "<group>"; };
41
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ContextAPIMixpanel/main.m; sourceTree = "<group>"; };
42
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ContextAPIMixpanel/LaunchScreen.storyboard; sourceTree = "<group>"; };
43
+ 8678DF7026B2811B00D79E6C /* ContextAPIMixpanel-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ContextAPIMixpanel-Bridging-Header.h"; sourceTree = "<group>"; };
44
+ 8678DF7126B2811B00D79E6C /* File.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = File.swift; sourceTree = "<group>"; };
45
+ A995839BB4DB59A1768C972C /* Pods-ContextAPIMixpanel.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContextAPIMixpanel.debug.xcconfig"; path = "Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel.debug.xcconfig"; sourceTree = "<group>"; };
46
+ D59DDF862CF29E8280C89697 /* Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.debug.xcconfig"; path = "Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.debug.xcconfig"; sourceTree = "<group>"; };
47
+ DFC7BE5609AE34433BA119CF /* Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.release.xcconfig"; path = "Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.release.xcconfig"; sourceTree = "<group>"; };
48
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
49
+ FC366786B160586EAA5FAA26 /* Pods-ContextAPIMixpanel.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContextAPIMixpanel.release.xcconfig"; path = "Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel.release.xcconfig"; sourceTree = "<group>"; };
50
+ /* End PBXFileReference section */
51
+
52
+ /* Begin PBXFrameworksBuildPhase section */
53
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
54
+ isa = PBXFrameworksBuildPhase;
55
+ buildActionMask = 2147483647;
56
+ files = (
57
+ E1D9683EF9D3E4683454F0E0 /* libPods-ContextAPIMixpanel-ContextAPIMixpanelTests.a in Frameworks */,
58
+ );
59
+ runOnlyForDeploymentPostprocessing = 0;
60
+ };
61
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
62
+ isa = PBXFrameworksBuildPhase;
63
+ buildActionMask = 2147483647;
64
+ files = (
65
+ 4C56D4EDA74960AC2F8EAD3D /* libPods-ContextAPIMixpanel.a in Frameworks */,
66
+ );
67
+ runOnlyForDeploymentPostprocessing = 0;
68
+ };
69
+ /* End PBXFrameworksBuildPhase section */
70
+
71
+ /* Begin PBXGroup section */
72
+ 00E356EF1AD99517003FC87E /* ContextAPIMixpanelTests */ = {
73
+ isa = PBXGroup;
74
+ children = (
75
+ 00E356F21AD99517003FC87E /* ContextAPIMixpanelTests.m */,
76
+ 00E356F01AD99517003FC87E /* Supporting Files */,
77
+ );
78
+ path = ContextAPIMixpanelTests;
79
+ sourceTree = "<group>";
80
+ };
81
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
82
+ isa = PBXGroup;
83
+ children = (
84
+ 00E356F11AD99517003FC87E /* Info.plist */,
85
+ );
86
+ name = "Supporting Files";
87
+ sourceTree = "<group>";
88
+ };
89
+ 07DA8B0FC538F98905ACE273 /* Pods */ = {
90
+ isa = PBXGroup;
91
+ children = (
92
+ A995839BB4DB59A1768C972C /* Pods-ContextAPIMixpanel.debug.xcconfig */,
93
+ FC366786B160586EAA5FAA26 /* Pods-ContextAPIMixpanel.release.xcconfig */,
94
+ D59DDF862CF29E8280C89697 /* Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.debug.xcconfig */,
95
+ DFC7BE5609AE34433BA119CF /* Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.release.xcconfig */,
96
+ );
97
+ path = Pods;
98
+ sourceTree = "<group>";
99
+ };
100
+ 13B07FAE1A68108700A75B9A /* ContextAPIMixpanel */ = {
101
+ isa = PBXGroup;
102
+ children = (
103
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
104
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */,
105
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
106
+ 13B07FB61A68108700A75B9A /* Info.plist */,
107
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
108
+ 13B07FB71A68108700A75B9A /* main.m */,
109
+ 8678DF7126B2811B00D79E6C /* File.swift */,
110
+ 8678DF7026B2811B00D79E6C /* ContextAPIMixpanel-Bridging-Header.h */,
111
+ );
112
+ name = ContextAPIMixpanel;
113
+ sourceTree = "<group>";
114
+ };
115
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
116
+ isa = PBXGroup;
117
+ children = (
118
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
119
+ 070ADF1CCDB3716C2A6D788B /* libPods-ContextAPIMixpanel.a */,
120
+ 0D90040F1F28FB65E6F1620D /* libPods-ContextAPIMixpanel-ContextAPIMixpanelTests.a */,
121
+ );
122
+ name = Frameworks;
123
+ sourceTree = "<group>";
124
+ };
125
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
126
+ isa = PBXGroup;
127
+ children = (
128
+ );
129
+ name = Libraries;
130
+ sourceTree = "<group>";
131
+ };
132
+ 83CBB9F61A601CBA00E9B192 = {
133
+ isa = PBXGroup;
134
+ children = (
135
+ 13B07FAE1A68108700A75B9A /* ContextAPIMixpanel */,
136
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
137
+ 00E356EF1AD99517003FC87E /* ContextAPIMixpanelTests */,
138
+ 83CBBA001A601CBA00E9B192 /* Products */,
139
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
140
+ 07DA8B0FC538F98905ACE273 /* Pods */,
141
+ );
142
+ indentWidth = 2;
143
+ sourceTree = "<group>";
144
+ tabWidth = 2;
145
+ usesTabs = 0;
146
+ };
147
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
148
+ isa = PBXGroup;
149
+ children = (
150
+ 13B07F961A680F5B00A75B9A /* ContextAPIMixpanel.app */,
151
+ 00E356EE1AD99517003FC87E /* ContextAPIMixpanelTests.xctest */,
152
+ );
153
+ name = Products;
154
+ sourceTree = "<group>";
155
+ };
156
+ /* End PBXGroup section */
157
+
158
+ /* Begin PBXNativeTarget section */
159
+ 00E356ED1AD99517003FC87E /* ContextAPIMixpanelTests */ = {
160
+ isa = PBXNativeTarget;
161
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ContextAPIMixpanelTests" */;
162
+ buildPhases = (
163
+ D626B2DD4F85D5CF3EF7CC58 /* [CP] Check Pods Manifest.lock */,
164
+ 00E356EA1AD99517003FC87E /* Sources */,
165
+ 00E356EB1AD99517003FC87E /* Frameworks */,
166
+ 00E356EC1AD99517003FC87E /* Resources */,
167
+ 27B1BBC871B9A13EED1229F5 /* [CP] Embed Pods Frameworks */,
168
+ 2DF0B23D37B671F2353D4181 /* [CP] Copy Pods Resources */,
169
+ );
170
+ buildRules = (
171
+ );
172
+ dependencies = (
173
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
174
+ );
175
+ name = ContextAPIMixpanelTests;
176
+ productName = ContextAPIMixpanelTests;
177
+ productReference = 00E356EE1AD99517003FC87E /* ContextAPIMixpanelTests.xctest */;
178
+ productType = "com.apple.product-type.bundle.unit-test";
179
+ };
180
+ 13B07F861A680F5B00A75B9A /* ContextAPIMixpanel */ = {
181
+ isa = PBXNativeTarget;
182
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ContextAPIMixpanel" */;
183
+ buildPhases = (
184
+ 3CFAD8C9391B4C57C0AFF644 /* [CP] Check Pods Manifest.lock */,
185
+ FD10A7F022414F080027D42C /* Start Packager */,
186
+ 13B07F871A680F5B00A75B9A /* Sources */,
187
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
188
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
189
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
190
+ DF7DDF92C4DFD2CD367992D8 /* [CP] Embed Pods Frameworks */,
191
+ 77088EEF3C9FB8E71D145BA2 /* [CP] Copy Pods Resources */,
192
+ );
193
+ buildRules = (
194
+ );
195
+ dependencies = (
196
+ );
197
+ name = ContextAPIMixpanel;
198
+ productName = ContextAPIMixpanel;
199
+ productReference = 13B07F961A680F5B00A75B9A /* ContextAPIMixpanel.app */;
200
+ productType = "com.apple.product-type.application";
201
+ };
202
+ /* End PBXNativeTarget section */
203
+
204
+ /* Begin PBXProject section */
205
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
206
+ isa = PBXProject;
207
+ attributes = {
208
+ LastUpgradeCheck = 1210;
209
+ TargetAttributes = {
210
+ 00E356ED1AD99517003FC87E = {
211
+ CreatedOnToolsVersion = 6.2;
212
+ TestTargetID = 13B07F861A680F5B00A75B9A;
213
+ };
214
+ 13B07F861A680F5B00A75B9A = {
215
+ LastSwiftMigration = 1250;
216
+ };
217
+ };
218
+ };
219
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ContextAPIMixpanel" */;
220
+ compatibilityVersion = "Xcode 12.0";
221
+ developmentRegion = en;
222
+ hasScannedForEncodings = 0;
223
+ knownRegions = (
224
+ en,
225
+ Base,
226
+ );
227
+ mainGroup = 83CBB9F61A601CBA00E9B192;
228
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
229
+ projectDirPath = "";
230
+ projectRoot = "";
231
+ targets = (
232
+ 13B07F861A680F5B00A75B9A /* ContextAPIMixpanel */,
233
+ 00E356ED1AD99517003FC87E /* ContextAPIMixpanelTests */,
234
+ );
235
+ };
236
+ /* End PBXProject section */
237
+
238
+ /* Begin PBXResourcesBuildPhase section */
239
+ 00E356EC1AD99517003FC87E /* Resources */ = {
240
+ isa = PBXResourcesBuildPhase;
241
+ buildActionMask = 2147483647;
242
+ files = (
243
+ );
244
+ runOnlyForDeploymentPostprocessing = 0;
245
+ };
246
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
247
+ isa = PBXResourcesBuildPhase;
248
+ buildActionMask = 2147483647;
249
+ files = (
250
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
251
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
252
+ );
253
+ runOnlyForDeploymentPostprocessing = 0;
254
+ };
255
+ /* End PBXResourcesBuildPhase section */
256
+
257
+ /* Begin PBXShellScriptBuildPhase section */
258
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
259
+ isa = PBXShellScriptBuildPhase;
260
+ buildActionMask = 2147483647;
261
+ files = (
262
+ );
263
+ inputPaths = (
264
+ );
265
+ name = "Bundle React Native code and images";
266
+ outputPaths = (
267
+ );
268
+ runOnlyForDeploymentPostprocessing = 0;
269
+ shellPath = /bin/sh;
270
+ shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
271
+ };
272
+ 27B1BBC871B9A13EED1229F5 /* [CP] Embed Pods Frameworks */ = {
273
+ isa = PBXShellScriptBuildPhase;
274
+ buildActionMask = 2147483647;
275
+ files = (
276
+ );
277
+ inputFileListPaths = (
278
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
279
+ );
280
+ name = "[CP] Embed Pods Frameworks";
281
+ outputFileListPaths = (
282
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
283
+ );
284
+ runOnlyForDeploymentPostprocessing = 0;
285
+ shellPath = /bin/sh;
286
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests-frameworks.sh\"\n";
287
+ showEnvVarsInLog = 0;
288
+ };
289
+ 2DF0B23D37B671F2353D4181 /* [CP] Copy Pods Resources */ = {
290
+ isa = PBXShellScriptBuildPhase;
291
+ buildActionMask = 2147483647;
292
+ files = (
293
+ );
294
+ inputFileListPaths = (
295
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests-resources-${CONFIGURATION}-input-files.xcfilelist",
296
+ );
297
+ name = "[CP] Copy Pods Resources";
298
+ outputFileListPaths = (
299
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests-resources-${CONFIGURATION}-output-files.xcfilelist",
300
+ );
301
+ runOnlyForDeploymentPostprocessing = 0;
302
+ shellPath = /bin/sh;
303
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests-resources.sh\"\n";
304
+ showEnvVarsInLog = 0;
305
+ };
306
+ 3CFAD8C9391B4C57C0AFF644 /* [CP] Check Pods Manifest.lock */ = {
307
+ isa = PBXShellScriptBuildPhase;
308
+ buildActionMask = 2147483647;
309
+ files = (
310
+ );
311
+ inputFileListPaths = (
312
+ );
313
+ inputPaths = (
314
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
315
+ "${PODS_ROOT}/Manifest.lock",
316
+ );
317
+ name = "[CP] Check Pods Manifest.lock";
318
+ outputFileListPaths = (
319
+ );
320
+ outputPaths = (
321
+ "$(DERIVED_FILE_DIR)/Pods-ContextAPIMixpanel-checkManifestLockResult.txt",
322
+ );
323
+ runOnlyForDeploymentPostprocessing = 0;
324
+ shellPath = /bin/sh;
325
+ 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";
326
+ showEnvVarsInLog = 0;
327
+ };
328
+ 77088EEF3C9FB8E71D145BA2 /* [CP] Copy Pods Resources */ = {
329
+ isa = PBXShellScriptBuildPhase;
330
+ buildActionMask = 2147483647;
331
+ files = (
332
+ );
333
+ inputFileListPaths = (
334
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel-resources-${CONFIGURATION}-input-files.xcfilelist",
335
+ );
336
+ name = "[CP] Copy Pods Resources";
337
+ outputFileListPaths = (
338
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel-resources-${CONFIGURATION}-output-files.xcfilelist",
339
+ );
340
+ runOnlyForDeploymentPostprocessing = 0;
341
+ shellPath = /bin/sh;
342
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel-resources.sh\"\n";
343
+ showEnvVarsInLog = 0;
344
+ };
345
+ D626B2DD4F85D5CF3EF7CC58 /* [CP] Check Pods Manifest.lock */ = {
346
+ isa = PBXShellScriptBuildPhase;
347
+ buildActionMask = 2147483647;
348
+ files = (
349
+ );
350
+ inputFileListPaths = (
351
+ );
352
+ inputPaths = (
353
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
354
+ "${PODS_ROOT}/Manifest.lock",
355
+ );
356
+ name = "[CP] Check Pods Manifest.lock";
357
+ outputFileListPaths = (
358
+ );
359
+ outputPaths = (
360
+ "$(DERIVED_FILE_DIR)/Pods-ContextAPIMixpanel-ContextAPIMixpanelTests-checkManifestLockResult.txt",
361
+ );
362
+ runOnlyForDeploymentPostprocessing = 0;
363
+ shellPath = /bin/sh;
364
+ 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";
365
+ showEnvVarsInLog = 0;
366
+ };
367
+ DF7DDF92C4DFD2CD367992D8 /* [CP] Embed Pods Frameworks */ = {
368
+ isa = PBXShellScriptBuildPhase;
369
+ buildActionMask = 2147483647;
370
+ files = (
371
+ );
372
+ inputFileListPaths = (
373
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel-frameworks-${CONFIGURATION}-input-files.xcfilelist",
374
+ );
375
+ name = "[CP] Embed Pods Frameworks";
376
+ outputFileListPaths = (
377
+ "${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel-frameworks-${CONFIGURATION}-output-files.xcfilelist",
378
+ );
379
+ runOnlyForDeploymentPostprocessing = 0;
380
+ shellPath = /bin/sh;
381
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ContextAPIMixpanel/Pods-ContextAPIMixpanel-frameworks.sh\"\n";
382
+ showEnvVarsInLog = 0;
383
+ };
384
+ FD10A7F022414F080027D42C /* Start Packager */ = {
385
+ isa = PBXShellScriptBuildPhase;
386
+ buildActionMask = 2147483647;
387
+ files = (
388
+ );
389
+ inputFileListPaths = (
390
+ );
391
+ inputPaths = (
392
+ );
393
+ name = "Start Packager";
394
+ outputFileListPaths = (
395
+ );
396
+ outputPaths = (
397
+ );
398
+ runOnlyForDeploymentPostprocessing = 0;
399
+ shellPath = /bin/sh;
400
+ shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/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 \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
401
+ showEnvVarsInLog = 0;
402
+ };
403
+ /* End PBXShellScriptBuildPhase section */
404
+
405
+ /* Begin PBXSourcesBuildPhase section */
406
+ 00E356EA1AD99517003FC87E /* Sources */ = {
407
+ isa = PBXSourcesBuildPhase;
408
+ buildActionMask = 2147483647;
409
+ files = (
410
+ 00E356F31AD99517003FC87E /* ContextAPIMixpanelTests.m in Sources */,
411
+ );
412
+ runOnlyForDeploymentPostprocessing = 0;
413
+ };
414
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
415
+ isa = PBXSourcesBuildPhase;
416
+ buildActionMask = 2147483647;
417
+ files = (
418
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
419
+ 8678DF7226B2811B00D79E6C /* File.swift in Sources */,
420
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
421
+ );
422
+ runOnlyForDeploymentPostprocessing = 0;
423
+ };
424
+ /* End PBXSourcesBuildPhase section */
425
+
426
+ /* Begin PBXTargetDependency section */
427
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
428
+ isa = PBXTargetDependency;
429
+ target = 13B07F861A680F5B00A75B9A /* ContextAPIMixpanel */;
430
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
431
+ };
432
+ /* End PBXTargetDependency section */
433
+
434
+ /* Begin XCBuildConfiguration section */
435
+ 00E356F61AD99517003FC87E /* Debug */ = {
436
+ isa = XCBuildConfiguration;
437
+ baseConfigurationReference = D59DDF862CF29E8280C89697 /* Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.debug.xcconfig */;
438
+ buildSettings = {
439
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
440
+ BUNDLE_LOADER = "$(TEST_HOST)";
441
+ GCC_PREPROCESSOR_DEFINITIONS = (
442
+ "DEBUG=1",
443
+ "$(inherited)",
444
+ );
445
+ INFOPLIST_FILE = ContextAPIMixpanelTests/Info.plist;
446
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
447
+ LD_RUNPATH_SEARCH_PATHS = (
448
+ "$(inherited)",
449
+ "@executable_path/Frameworks",
450
+ "@loader_path/Frameworks",
451
+ );
452
+ OTHER_LDFLAGS = (
453
+ "-ObjC",
454
+ "-lc++",
455
+ "$(inherited)",
456
+ );
457
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
458
+ PRODUCT_NAME = "$(TARGET_NAME)";
459
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ContextAPIMixpanel.app/ContextAPIMixpanel";
460
+ };
461
+ name = Debug;
462
+ };
463
+ 00E356F71AD99517003FC87E /* Release */ = {
464
+ isa = XCBuildConfiguration;
465
+ baseConfigurationReference = DFC7BE5609AE34433BA119CF /* Pods-ContextAPIMixpanel-ContextAPIMixpanelTests.release.xcconfig */;
466
+ buildSettings = {
467
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
468
+ BUNDLE_LOADER = "$(TEST_HOST)";
469
+ COPY_PHASE_STRIP = NO;
470
+ INFOPLIST_FILE = ContextAPIMixpanelTests/Info.plist;
471
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
472
+ LD_RUNPATH_SEARCH_PATHS = (
473
+ "$(inherited)",
474
+ "@executable_path/Frameworks",
475
+ "@loader_path/Frameworks",
476
+ );
477
+ OTHER_LDFLAGS = (
478
+ "-ObjC",
479
+ "-lc++",
480
+ "$(inherited)",
481
+ );
482
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
483
+ PRODUCT_NAME = "$(TARGET_NAME)";
484
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ContextAPIMixpanel.app/ContextAPIMixpanel";
485
+ };
486
+ name = Release;
487
+ };
488
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
489
+ isa = XCBuildConfiguration;
490
+ baseConfigurationReference = A995839BB4DB59A1768C972C /* Pods-ContextAPIMixpanel.debug.xcconfig */;
491
+ buildSettings = {
492
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
493
+ CLANG_ENABLE_MODULES = YES;
494
+ CURRENT_PROJECT_VERSION = 1;
495
+ ENABLE_BITCODE = NO;
496
+ INFOPLIST_FILE = ContextAPIMixpanel/Info.plist;
497
+ LD_RUNPATH_SEARCH_PATHS = (
498
+ "$(inherited)",
499
+ "@executable_path/Frameworks",
500
+ );
501
+ OTHER_LDFLAGS = (
502
+ "$(inherited)",
503
+ "-ObjC",
504
+ "-lc++",
505
+ );
506
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
507
+ PRODUCT_NAME = ContextAPIMixpanel;
508
+ SWIFT_OBJC_BRIDGING_HEADER = "ContextAPIMixpanel-Bridging-Header.h";
509
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
510
+ SWIFT_VERSION = 5.0;
511
+ VERSIONING_SYSTEM = "apple-generic";
512
+ };
513
+ name = Debug;
514
+ };
515
+ 13B07F951A680F5B00A75B9A /* Release */ = {
516
+ isa = XCBuildConfiguration;
517
+ baseConfigurationReference = FC366786B160586EAA5FAA26 /* Pods-ContextAPIMixpanel.release.xcconfig */;
518
+ buildSettings = {
519
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
520
+ CLANG_ENABLE_MODULES = YES;
521
+ CURRENT_PROJECT_VERSION = 1;
522
+ INFOPLIST_FILE = ContextAPIMixpanel/Info.plist;
523
+ LD_RUNPATH_SEARCH_PATHS = (
524
+ "$(inherited)",
525
+ "@executable_path/Frameworks",
526
+ );
527
+ OTHER_LDFLAGS = (
528
+ "$(inherited)",
529
+ "-ObjC",
530
+ "-lc++",
531
+ );
532
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
533
+ PRODUCT_NAME = ContextAPIMixpanel;
534
+ SWIFT_OBJC_BRIDGING_HEADER = "ContextAPIMixpanel-Bridging-Header.h";
535
+ SWIFT_VERSION = 5.0;
536
+ VERSIONING_SYSTEM = "apple-generic";
537
+ };
538
+ name = Release;
539
+ };
540
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
541
+ isa = XCBuildConfiguration;
542
+ buildSettings = {
543
+ ALWAYS_SEARCH_USER_PATHS = NO;
544
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
545
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
546
+ CLANG_CXX_LIBRARY = "libc++";
547
+ CLANG_ENABLE_MODULES = YES;
548
+ CLANG_ENABLE_OBJC_ARC = YES;
549
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
550
+ CLANG_WARN_BOOL_CONVERSION = YES;
551
+ CLANG_WARN_COMMA = YES;
552
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
553
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
554
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
555
+ CLANG_WARN_EMPTY_BODY = YES;
556
+ CLANG_WARN_ENUM_CONVERSION = YES;
557
+ CLANG_WARN_INFINITE_RECURSION = YES;
558
+ CLANG_WARN_INT_CONVERSION = YES;
559
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
560
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
561
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
562
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
563
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
564
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
565
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
566
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
567
+ CLANG_WARN_UNREACHABLE_CODE = YES;
568
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
569
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
570
+ COPY_PHASE_STRIP = NO;
571
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
572
+ ENABLE_TESTABILITY = YES;
573
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
574
+ GCC_C_LANGUAGE_STANDARD = gnu99;
575
+ GCC_DYNAMIC_NO_PIC = NO;
576
+ GCC_NO_COMMON_BLOCKS = YES;
577
+ GCC_OPTIMIZATION_LEVEL = 0;
578
+ GCC_PREPROCESSOR_DEFINITIONS = (
579
+ "DEBUG=1",
580
+ "$(inherited)",
581
+ );
582
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
583
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
584
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
585
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
586
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
587
+ GCC_WARN_UNUSED_FUNCTION = YES;
588
+ GCC_WARN_UNUSED_VARIABLE = YES;
589
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
590
+ LD_RUNPATH_SEARCH_PATHS = (
591
+ /usr/lib/swift,
592
+ "$(inherited)",
593
+ );
594
+ LIBRARY_SEARCH_PATHS = (
595
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
596
+ "\"$(inherited)\"",
597
+ );
598
+ MTL_ENABLE_DEBUG_INFO = YES;
599
+ ONLY_ACTIVE_ARCH = YES;
600
+ SDKROOT = iphoneos;
601
+ };
602
+ name = Debug;
603
+ };
604
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
605
+ isa = XCBuildConfiguration;
606
+ buildSettings = {
607
+ ALWAYS_SEARCH_USER_PATHS = NO;
608
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
609
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
610
+ CLANG_CXX_LIBRARY = "libc++";
611
+ CLANG_ENABLE_MODULES = YES;
612
+ CLANG_ENABLE_OBJC_ARC = YES;
613
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
614
+ CLANG_WARN_BOOL_CONVERSION = YES;
615
+ CLANG_WARN_COMMA = YES;
616
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
617
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
618
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
619
+ CLANG_WARN_EMPTY_BODY = YES;
620
+ CLANG_WARN_ENUM_CONVERSION = YES;
621
+ CLANG_WARN_INFINITE_RECURSION = YES;
622
+ CLANG_WARN_INT_CONVERSION = YES;
623
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
624
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
625
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
626
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
627
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
628
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
629
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
630
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
631
+ CLANG_WARN_UNREACHABLE_CODE = YES;
632
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
633
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
634
+ COPY_PHASE_STRIP = YES;
635
+ ENABLE_NS_ASSERTIONS = NO;
636
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
637
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
638
+ GCC_C_LANGUAGE_STANDARD = gnu99;
639
+ GCC_NO_COMMON_BLOCKS = YES;
640
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
641
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
642
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
643
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
644
+ GCC_WARN_UNUSED_FUNCTION = YES;
645
+ GCC_WARN_UNUSED_VARIABLE = YES;
646
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
647
+ LD_RUNPATH_SEARCH_PATHS = (
648
+ /usr/lib/swift,
649
+ "$(inherited)",
650
+ );
651
+ LIBRARY_SEARCH_PATHS = (
652
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
653
+ "\"$(inherited)\"",
654
+ );
655
+ MTL_ENABLE_DEBUG_INFO = NO;
656
+ SDKROOT = iphoneos;
657
+ VALIDATE_PRODUCT = YES;
658
+ };
659
+ name = Release;
660
+ };
661
+ /* End XCBuildConfiguration section */
662
+
663
+ /* Begin XCConfigurationList section */
664
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ContextAPIMixpanelTests" */ = {
665
+ isa = XCConfigurationList;
666
+ buildConfigurations = (
667
+ 00E356F61AD99517003FC87E /* Debug */,
668
+ 00E356F71AD99517003FC87E /* Release */,
669
+ );
670
+ defaultConfigurationIsVisible = 0;
671
+ defaultConfigurationName = Release;
672
+ };
673
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ContextAPIMixpanel" */ = {
674
+ isa = XCConfigurationList;
675
+ buildConfigurations = (
676
+ 13B07F941A680F5B00A75B9A /* Debug */,
677
+ 13B07F951A680F5B00A75B9A /* Release */,
678
+ );
679
+ defaultConfigurationIsVisible = 0;
680
+ defaultConfigurationName = Release;
681
+ };
682
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ContextAPIMixpanel" */ = {
683
+ isa = XCConfigurationList;
684
+ buildConfigurations = (
685
+ 83CBBA201A601CBA00E9B192 /* Debug */,
686
+ 83CBBA211A601CBA00E9B192 /* Release */,
687
+ );
688
+ defaultConfigurationIsVisible = 0;
689
+ defaultConfigurationName = Release;
690
+ };
691
+ /* End XCConfigurationList section */
692
+ };
693
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
694
+ }