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,977 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* MixpanelDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MixpanelDemoTests.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
+ 1B80D8B9E843717DFD25E9F7 /* libPods-MixpanelDemo-MixpanelDemoTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F317D0298CD98E58099BA151 /* libPods-MixpanelDemo-MixpanelDemoTests.a */; };
15
+ 29E6D14A2F9489F5D0D5C121 /* libPods-MixpanelDemo-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D69CDC0D33FFCE3206A6AC32 /* libPods-MixpanelDemo-tvOSTests.a */; };
16
+ 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
17
+ 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
18
+ 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
19
+ 2DCD954D1E0B4F2C00145EB5 /* MixpanelDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* MixpanelDemoTests.m */; };
20
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
21
+ 862F7C44263CD53A00F67ED4 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 862F7C43263CD53A00F67ED4 /* Empty.swift */; };
22
+ 9561CA7D9A25C2BC498FE73D /* libPods-MixpanelDemo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9E29F404F822B45ECA7D0A59 /* libPods-MixpanelDemo.a */; };
23
+ EAD753392B2501CEDB1EBC8E /* libPods-MixpanelDemo-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 33E45CC1F7F9BD597DAFF3D4 /* libPods-MixpanelDemo-tvOS.a */; };
24
+ /* End PBXBuildFile section */
25
+
26
+ /* Begin PBXContainerItemProxy section */
27
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
28
+ isa = PBXContainerItemProxy;
29
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
30
+ proxyType = 1;
31
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
32
+ remoteInfo = MixpanelDemo;
33
+ };
34
+ 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
35
+ isa = PBXContainerItemProxy;
36
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
37
+ proxyType = 1;
38
+ remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
39
+ remoteInfo = "MixpanelDemo-tvOS";
40
+ };
41
+ /* End PBXContainerItemProxy section */
42
+
43
+ /* Begin PBXFileReference section */
44
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
45
+ 00E356EE1AD99517003FC87E /* MixpanelDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MixpanelDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
46
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
47
+ 00E356F21AD99517003FC87E /* MixpanelDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MixpanelDemoTests.m; sourceTree = "<group>"; };
48
+ 13B07F961A680F5B00A75B9A /* MixpanelDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MixpanelDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
49
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = MixpanelDemo/AppDelegate.h; sourceTree = "<group>"; };
50
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = MixpanelDemo/AppDelegate.m; sourceTree = "<group>"; };
51
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = MixpanelDemo/Images.xcassets; sourceTree = "<group>"; };
52
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = MixpanelDemo/Info.plist; sourceTree = "<group>"; };
53
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = MixpanelDemo/main.m; sourceTree = "<group>"; };
54
+ 15B943AAE69F4D9E352E81B0 /* Pods-MixpanelDemo-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo-tvOSTests/Pods-MixpanelDemo-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
55
+ 17C020705F9400DFE629B2F1 /* Pods-MixpanelDemo-MixpanelDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo-MixpanelDemoTests.debug.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo-MixpanelDemoTests/Pods-MixpanelDemo-MixpanelDemoTests.debug.xcconfig"; sourceTree = "<group>"; };
56
+ 287593281AE532B01AC3BD00 /* Pods-MixpanelDemo-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo-tvOS/Pods-MixpanelDemo-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
57
+ 2A1DE7E5A497266D26B3C2E9 /* Pods-MixpanelDemo-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo-tvOSTests/Pods-MixpanelDemo-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
58
+ 2D02E47B1E0B4A5D006451C7 /* MixpanelDemo-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "MixpanelDemo-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
59
+ 2D02E4901E0B4A5D006451C7 /* MixpanelDemo-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "MixpanelDemo-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
60
+ 33E45CC1F7F9BD597DAFF3D4 /* libPods-MixpanelDemo-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MixpanelDemo-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
61
+ 60776E74F7AEBEFD3EB461E9 /* Pods-MixpanelDemo-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo-tvOS.release.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo-tvOS/Pods-MixpanelDemo-tvOS.release.xcconfig"; sourceTree = "<group>"; };
62
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = MixpanelDemo/LaunchScreen.storyboard; sourceTree = "<group>"; };
63
+ 862F7C42263CD53A00F67ED4 /* MixpanelDemo-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MixpanelDemo-Bridging-Header.h"; sourceTree = "<group>"; };
64
+ 862F7C43263CD53A00F67ED4 /* Empty.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Empty.swift; sourceTree = "<group>"; };
65
+ 95E1F386AB50B6159FAEF19A /* Pods-MixpanelDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo.debug.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo/Pods-MixpanelDemo.debug.xcconfig"; sourceTree = "<group>"; };
66
+ 9E29F404F822B45ECA7D0A59 /* libPods-MixpanelDemo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MixpanelDemo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
67
+ B9764A5B9B45F21BD7CB2CBC /* Pods-MixpanelDemo-MixpanelDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo-MixpanelDemoTests.release.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo-MixpanelDemoTests/Pods-MixpanelDemo-MixpanelDemoTests.release.xcconfig"; sourceTree = "<group>"; };
68
+ C0C81800A70AE986A2646ED6 /* Pods-MixpanelDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemo.release.xcconfig"; path = "Target Support Files/Pods-MixpanelDemo/Pods-MixpanelDemo.release.xcconfig"; sourceTree = "<group>"; };
69
+ D69CDC0D33FFCE3206A6AC32 /* libPods-MixpanelDemo-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MixpanelDemo-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
70
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
71
+ ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
72
+ F317D0298CD98E58099BA151 /* libPods-MixpanelDemo-MixpanelDemoTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MixpanelDemo-MixpanelDemoTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
73
+ /* End PBXFileReference section */
74
+
75
+ /* Begin PBXFrameworksBuildPhase section */
76
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
77
+ isa = PBXFrameworksBuildPhase;
78
+ buildActionMask = 2147483647;
79
+ files = (
80
+ 1B80D8B9E843717DFD25E9F7 /* libPods-MixpanelDemo-MixpanelDemoTests.a in Frameworks */,
81
+ );
82
+ runOnlyForDeploymentPostprocessing = 0;
83
+ };
84
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
85
+ isa = PBXFrameworksBuildPhase;
86
+ buildActionMask = 2147483647;
87
+ files = (
88
+ 9561CA7D9A25C2BC498FE73D /* libPods-MixpanelDemo.a in Frameworks */,
89
+ );
90
+ runOnlyForDeploymentPostprocessing = 0;
91
+ };
92
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
93
+ isa = PBXFrameworksBuildPhase;
94
+ buildActionMask = 2147483647;
95
+ files = (
96
+ EAD753392B2501CEDB1EBC8E /* libPods-MixpanelDemo-tvOS.a in Frameworks */,
97
+ );
98
+ runOnlyForDeploymentPostprocessing = 0;
99
+ };
100
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
101
+ isa = PBXFrameworksBuildPhase;
102
+ buildActionMask = 2147483647;
103
+ files = (
104
+ 29E6D14A2F9489F5D0D5C121 /* libPods-MixpanelDemo-tvOSTests.a in Frameworks */,
105
+ );
106
+ runOnlyForDeploymentPostprocessing = 0;
107
+ };
108
+ /* End PBXFrameworksBuildPhase section */
109
+
110
+ /* Begin PBXGroup section */
111
+ 00E356EF1AD99517003FC87E /* MixpanelDemoTests */ = {
112
+ isa = PBXGroup;
113
+ children = (
114
+ 00E356F21AD99517003FC87E /* MixpanelDemoTests.m */,
115
+ 00E356F01AD99517003FC87E /* Supporting Files */,
116
+ );
117
+ path = MixpanelDemoTests;
118
+ sourceTree = "<group>";
119
+ };
120
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
121
+ isa = PBXGroup;
122
+ children = (
123
+ 00E356F11AD99517003FC87E /* Info.plist */,
124
+ );
125
+ name = "Supporting Files";
126
+ sourceTree = "<group>";
127
+ };
128
+ 0A2FDA1B2D3586E9AEDCC0AD /* Pods */ = {
129
+ isa = PBXGroup;
130
+ children = (
131
+ 95E1F386AB50B6159FAEF19A /* Pods-MixpanelDemo.debug.xcconfig */,
132
+ C0C81800A70AE986A2646ED6 /* Pods-MixpanelDemo.release.xcconfig */,
133
+ 17C020705F9400DFE629B2F1 /* Pods-MixpanelDemo-MixpanelDemoTests.debug.xcconfig */,
134
+ B9764A5B9B45F21BD7CB2CBC /* Pods-MixpanelDemo-MixpanelDemoTests.release.xcconfig */,
135
+ 287593281AE532B01AC3BD00 /* Pods-MixpanelDemo-tvOS.debug.xcconfig */,
136
+ 60776E74F7AEBEFD3EB461E9 /* Pods-MixpanelDemo-tvOS.release.xcconfig */,
137
+ 2A1DE7E5A497266D26B3C2E9 /* Pods-MixpanelDemo-tvOSTests.debug.xcconfig */,
138
+ 15B943AAE69F4D9E352E81B0 /* Pods-MixpanelDemo-tvOSTests.release.xcconfig */,
139
+ );
140
+ path = Pods;
141
+ sourceTree = "<group>";
142
+ };
143
+ 13B07FAE1A68108700A75B9A /* MixpanelDemo */ = {
144
+ isa = PBXGroup;
145
+ children = (
146
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
147
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
148
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */,
149
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
150
+ 13B07FB61A68108700A75B9A /* Info.plist */,
151
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
152
+ 13B07FB71A68108700A75B9A /* main.m */,
153
+ 862F7C43263CD53A00F67ED4 /* Empty.swift */,
154
+ 862F7C42263CD53A00F67ED4 /* MixpanelDemo-Bridging-Header.h */,
155
+ );
156
+ name = MixpanelDemo;
157
+ sourceTree = "<group>";
158
+ };
159
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
160
+ isa = PBXGroup;
161
+ children = (
162
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
163
+ ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
164
+ 9E29F404F822B45ECA7D0A59 /* libPods-MixpanelDemo.a */,
165
+ F317D0298CD98E58099BA151 /* libPods-MixpanelDemo-MixpanelDemoTests.a */,
166
+ 33E45CC1F7F9BD597DAFF3D4 /* libPods-MixpanelDemo-tvOS.a */,
167
+ D69CDC0D33FFCE3206A6AC32 /* libPods-MixpanelDemo-tvOSTests.a */,
168
+ );
169
+ name = Frameworks;
170
+ sourceTree = "<group>";
171
+ };
172
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
173
+ isa = PBXGroup;
174
+ children = (
175
+ );
176
+ name = Libraries;
177
+ sourceTree = "<group>";
178
+ };
179
+ 83CBB9F61A601CBA00E9B192 = {
180
+ isa = PBXGroup;
181
+ children = (
182
+ 13B07FAE1A68108700A75B9A /* MixpanelDemo */,
183
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
184
+ 00E356EF1AD99517003FC87E /* MixpanelDemoTests */,
185
+ 83CBBA001A601CBA00E9B192 /* Products */,
186
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
187
+ 0A2FDA1B2D3586E9AEDCC0AD /* Pods */,
188
+ );
189
+ indentWidth = 2;
190
+ sourceTree = "<group>";
191
+ tabWidth = 2;
192
+ usesTabs = 0;
193
+ };
194
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
195
+ isa = PBXGroup;
196
+ children = (
197
+ 13B07F961A680F5B00A75B9A /* MixpanelDemo.app */,
198
+ 00E356EE1AD99517003FC87E /* MixpanelDemoTests.xctest */,
199
+ 2D02E47B1E0B4A5D006451C7 /* MixpanelDemo-tvOS.app */,
200
+ 2D02E4901E0B4A5D006451C7 /* MixpanelDemo-tvOSTests.xctest */,
201
+ );
202
+ name = Products;
203
+ sourceTree = "<group>";
204
+ };
205
+ /* End PBXGroup section */
206
+
207
+ /* Begin PBXNativeTarget section */
208
+ 00E356ED1AD99517003FC87E /* MixpanelDemoTests */ = {
209
+ isa = PBXNativeTarget;
210
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MixpanelDemoTests" */;
211
+ buildPhases = (
212
+ 391B7CB7BA4FE1DC61A2ED12 /* [CP] Check Pods Manifest.lock */,
213
+ 00E356EA1AD99517003FC87E /* Sources */,
214
+ 00E356EB1AD99517003FC87E /* Frameworks */,
215
+ 00E356EC1AD99517003FC87E /* Resources */,
216
+ 7DF8F6302A7A1A242320059B /* [CP] Copy Pods Resources */,
217
+ );
218
+ buildRules = (
219
+ );
220
+ dependencies = (
221
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
222
+ );
223
+ name = MixpanelDemoTests;
224
+ productName = MixpanelDemoTests;
225
+ productReference = 00E356EE1AD99517003FC87E /* MixpanelDemoTests.xctest */;
226
+ productType = "com.apple.product-type.bundle.unit-test";
227
+ };
228
+ 13B07F861A680F5B00A75B9A /* MixpanelDemo */ = {
229
+ isa = PBXNativeTarget;
230
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MixpanelDemo" */;
231
+ buildPhases = (
232
+ 1EEEF790D6E970FFC12127D7 /* [CP] Check Pods Manifest.lock */,
233
+ FD10A7F022414F080027D42C /* Start Packager */,
234
+ 13B07F871A680F5B00A75B9A /* Sources */,
235
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
236
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
237
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
238
+ 546C5192FF1A3944BF098E1C /* [CP] Copy Pods Resources */,
239
+ );
240
+ buildRules = (
241
+ );
242
+ dependencies = (
243
+ );
244
+ name = MixpanelDemo;
245
+ productName = MixpanelDemo;
246
+ productReference = 13B07F961A680F5B00A75B9A /* MixpanelDemo.app */;
247
+ productType = "com.apple.product-type.application";
248
+ };
249
+ 2D02E47A1E0B4A5D006451C7 /* MixpanelDemo-tvOS */ = {
250
+ isa = PBXNativeTarget;
251
+ buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MixpanelDemo-tvOS" */;
252
+ buildPhases = (
253
+ 23DFB7905DD241E0AC721AF6 /* [CP] Check Pods Manifest.lock */,
254
+ FD10A7F122414F3F0027D42C /* Start Packager */,
255
+ 2D02E4771E0B4A5D006451C7 /* Sources */,
256
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */,
257
+ 2D02E4791E0B4A5D006451C7 /* Resources */,
258
+ 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
259
+ );
260
+ buildRules = (
261
+ );
262
+ dependencies = (
263
+ );
264
+ name = "MixpanelDemo-tvOS";
265
+ productName = "MixpanelDemo-tvOS";
266
+ productReference = 2D02E47B1E0B4A5D006451C7 /* MixpanelDemo-tvOS.app */;
267
+ productType = "com.apple.product-type.application";
268
+ };
269
+ 2D02E48F1E0B4A5D006451C7 /* MixpanelDemo-tvOSTests */ = {
270
+ isa = PBXNativeTarget;
271
+ buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MixpanelDemo-tvOSTests" */;
272
+ buildPhases = (
273
+ 8ADA917FB02238E508D5FAF8 /* [CP] Check Pods Manifest.lock */,
274
+ 2D02E48C1E0B4A5D006451C7 /* Sources */,
275
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
276
+ 2D02E48E1E0B4A5D006451C7 /* Resources */,
277
+ );
278
+ buildRules = (
279
+ );
280
+ dependencies = (
281
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
282
+ );
283
+ name = "MixpanelDemo-tvOSTests";
284
+ productName = "MixpanelDemo-tvOSTests";
285
+ productReference = 2D02E4901E0B4A5D006451C7 /* MixpanelDemo-tvOSTests.xctest */;
286
+ productType = "com.apple.product-type.bundle.unit-test";
287
+ };
288
+ /* End PBXNativeTarget section */
289
+
290
+ /* Begin PBXProject section */
291
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
292
+ isa = PBXProject;
293
+ attributes = {
294
+ LastUpgradeCheck = 1130;
295
+ TargetAttributes = {
296
+ 00E356ED1AD99517003FC87E = {
297
+ CreatedOnToolsVersion = 6.2;
298
+ TestTargetID = 13B07F861A680F5B00A75B9A;
299
+ };
300
+ 13B07F861A680F5B00A75B9A = {
301
+ LastSwiftMigration = 1250;
302
+ };
303
+ 2D02E47A1E0B4A5D006451C7 = {
304
+ CreatedOnToolsVersion = 8.2.1;
305
+ ProvisioningStyle = Automatic;
306
+ };
307
+ 2D02E48F1E0B4A5D006451C7 = {
308
+ CreatedOnToolsVersion = 8.2.1;
309
+ ProvisioningStyle = Automatic;
310
+ TestTargetID = 2D02E47A1E0B4A5D006451C7;
311
+ };
312
+ };
313
+ };
314
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MixpanelDemo" */;
315
+ compatibilityVersion = "Xcode 3.2";
316
+ developmentRegion = en;
317
+ hasScannedForEncodings = 0;
318
+ knownRegions = (
319
+ en,
320
+ Base,
321
+ );
322
+ mainGroup = 83CBB9F61A601CBA00E9B192;
323
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
324
+ projectDirPath = "";
325
+ projectRoot = "";
326
+ targets = (
327
+ 13B07F861A680F5B00A75B9A /* MixpanelDemo */,
328
+ 00E356ED1AD99517003FC87E /* MixpanelDemoTests */,
329
+ 2D02E47A1E0B4A5D006451C7 /* MixpanelDemo-tvOS */,
330
+ 2D02E48F1E0B4A5D006451C7 /* MixpanelDemo-tvOSTests */,
331
+ );
332
+ };
333
+ /* End PBXProject section */
334
+
335
+ /* Begin PBXResourcesBuildPhase section */
336
+ 00E356EC1AD99517003FC87E /* Resources */ = {
337
+ isa = PBXResourcesBuildPhase;
338
+ buildActionMask = 2147483647;
339
+ files = (
340
+ );
341
+ runOnlyForDeploymentPostprocessing = 0;
342
+ };
343
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
344
+ isa = PBXResourcesBuildPhase;
345
+ buildActionMask = 2147483647;
346
+ files = (
347
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
348
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
349
+ );
350
+ runOnlyForDeploymentPostprocessing = 0;
351
+ };
352
+ 2D02E4791E0B4A5D006451C7 /* Resources */ = {
353
+ isa = PBXResourcesBuildPhase;
354
+ buildActionMask = 2147483647;
355
+ files = (
356
+ 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
357
+ );
358
+ runOnlyForDeploymentPostprocessing = 0;
359
+ };
360
+ 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
361
+ isa = PBXResourcesBuildPhase;
362
+ buildActionMask = 2147483647;
363
+ files = (
364
+ );
365
+ runOnlyForDeploymentPostprocessing = 0;
366
+ };
367
+ /* End PBXResourcesBuildPhase section */
368
+
369
+ /* Begin PBXShellScriptBuildPhase section */
370
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
371
+ isa = PBXShellScriptBuildPhase;
372
+ buildActionMask = 2147483647;
373
+ files = (
374
+ );
375
+ inputPaths = (
376
+ );
377
+ name = "Bundle React Native code and images";
378
+ outputPaths = (
379
+ );
380
+ runOnlyForDeploymentPostprocessing = 0;
381
+ shellPath = /bin/sh;
382
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
383
+ };
384
+ 1EEEF790D6E970FFC12127D7 /* [CP] Check Pods Manifest.lock */ = {
385
+ isa = PBXShellScriptBuildPhase;
386
+ buildActionMask = 2147483647;
387
+ files = (
388
+ );
389
+ inputFileListPaths = (
390
+ );
391
+ inputPaths = (
392
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
393
+ "${PODS_ROOT}/Manifest.lock",
394
+ );
395
+ name = "[CP] Check Pods Manifest.lock";
396
+ outputFileListPaths = (
397
+ );
398
+ outputPaths = (
399
+ "$(DERIVED_FILE_DIR)/Pods-MixpanelDemo-checkManifestLockResult.txt",
400
+ );
401
+ runOnlyForDeploymentPostprocessing = 0;
402
+ shellPath = /bin/sh;
403
+ 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";
404
+ showEnvVarsInLog = 0;
405
+ };
406
+ 23DFB7905DD241E0AC721AF6 /* [CP] Check Pods Manifest.lock */ = {
407
+ isa = PBXShellScriptBuildPhase;
408
+ buildActionMask = 2147483647;
409
+ files = (
410
+ );
411
+ inputFileListPaths = (
412
+ );
413
+ inputPaths = (
414
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
415
+ "${PODS_ROOT}/Manifest.lock",
416
+ );
417
+ name = "[CP] Check Pods Manifest.lock";
418
+ outputFileListPaths = (
419
+ );
420
+ outputPaths = (
421
+ "$(DERIVED_FILE_DIR)/Pods-MixpanelDemo-tvOS-checkManifestLockResult.txt",
422
+ );
423
+ runOnlyForDeploymentPostprocessing = 0;
424
+ shellPath = /bin/sh;
425
+ 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";
426
+ showEnvVarsInLog = 0;
427
+ };
428
+ 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
429
+ isa = PBXShellScriptBuildPhase;
430
+ buildActionMask = 2147483647;
431
+ files = (
432
+ );
433
+ inputPaths = (
434
+ );
435
+ name = "Bundle React Native Code And Images";
436
+ outputPaths = (
437
+ );
438
+ runOnlyForDeploymentPostprocessing = 0;
439
+ shellPath = /bin/sh;
440
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
441
+ };
442
+ 391B7CB7BA4FE1DC61A2ED12 /* [CP] Check Pods Manifest.lock */ = {
443
+ isa = PBXShellScriptBuildPhase;
444
+ buildActionMask = 2147483647;
445
+ files = (
446
+ );
447
+ inputFileListPaths = (
448
+ );
449
+ inputPaths = (
450
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
451
+ "${PODS_ROOT}/Manifest.lock",
452
+ );
453
+ name = "[CP] Check Pods Manifest.lock";
454
+ outputFileListPaths = (
455
+ );
456
+ outputPaths = (
457
+ "$(DERIVED_FILE_DIR)/Pods-MixpanelDemo-MixpanelDemoTests-checkManifestLockResult.txt",
458
+ );
459
+ runOnlyForDeploymentPostprocessing = 0;
460
+ shellPath = /bin/sh;
461
+ 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";
462
+ showEnvVarsInLog = 0;
463
+ };
464
+ 546C5192FF1A3944BF098E1C /* [CP] Copy Pods Resources */ = {
465
+ isa = PBXShellScriptBuildPhase;
466
+ buildActionMask = 2147483647;
467
+ files = (
468
+ );
469
+ inputPaths = (
470
+ "${PODS_ROOT}/Target Support Files/Pods-MixpanelDemo/Pods-MixpanelDemo-resources.sh",
471
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
472
+ );
473
+ name = "[CP] Copy Pods Resources";
474
+ outputPaths = (
475
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
476
+ );
477
+ runOnlyForDeploymentPostprocessing = 0;
478
+ shellPath = /bin/sh;
479
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MixpanelDemo/Pods-MixpanelDemo-resources.sh\"\n";
480
+ showEnvVarsInLog = 0;
481
+ };
482
+ 7DF8F6302A7A1A242320059B /* [CP] Copy Pods Resources */ = {
483
+ isa = PBXShellScriptBuildPhase;
484
+ buildActionMask = 2147483647;
485
+ files = (
486
+ );
487
+ inputPaths = (
488
+ "${PODS_ROOT}/Target Support Files/Pods-MixpanelDemo-MixpanelDemoTests/Pods-MixpanelDemo-MixpanelDemoTests-resources.sh",
489
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
490
+ );
491
+ name = "[CP] Copy Pods Resources";
492
+ outputPaths = (
493
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
494
+ );
495
+ runOnlyForDeploymentPostprocessing = 0;
496
+ shellPath = /bin/sh;
497
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MixpanelDemo-MixpanelDemoTests/Pods-MixpanelDemo-MixpanelDemoTests-resources.sh\"\n";
498
+ showEnvVarsInLog = 0;
499
+ };
500
+ 8ADA917FB02238E508D5FAF8 /* [CP] Check Pods Manifest.lock */ = {
501
+ isa = PBXShellScriptBuildPhase;
502
+ buildActionMask = 2147483647;
503
+ files = (
504
+ );
505
+ inputFileListPaths = (
506
+ );
507
+ inputPaths = (
508
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
509
+ "${PODS_ROOT}/Manifest.lock",
510
+ );
511
+ name = "[CP] Check Pods Manifest.lock";
512
+ outputFileListPaths = (
513
+ );
514
+ outputPaths = (
515
+ "$(DERIVED_FILE_DIR)/Pods-MixpanelDemo-tvOSTests-checkManifestLockResult.txt",
516
+ );
517
+ runOnlyForDeploymentPostprocessing = 0;
518
+ shellPath = /bin/sh;
519
+ 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";
520
+ showEnvVarsInLog = 0;
521
+ };
522
+ FD10A7F022414F080027D42C /* Start Packager */ = {
523
+ isa = PBXShellScriptBuildPhase;
524
+ buildActionMask = 2147483647;
525
+ files = (
526
+ );
527
+ inputFileListPaths = (
528
+ );
529
+ inputPaths = (
530
+ );
531
+ name = "Start Packager";
532
+ outputFileListPaths = (
533
+ );
534
+ outputPaths = (
535
+ );
536
+ runOnlyForDeploymentPostprocessing = 0;
537
+ shellPath = /bin/sh;
538
+ 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";
539
+ showEnvVarsInLog = 0;
540
+ };
541
+ FD10A7F122414F3F0027D42C /* Start Packager */ = {
542
+ isa = PBXShellScriptBuildPhase;
543
+ buildActionMask = 2147483647;
544
+ files = (
545
+ );
546
+ inputFileListPaths = (
547
+ );
548
+ inputPaths = (
549
+ );
550
+ name = "Start Packager";
551
+ outputFileListPaths = (
552
+ );
553
+ outputPaths = (
554
+ );
555
+ runOnlyForDeploymentPostprocessing = 0;
556
+ shellPath = /bin/sh;
557
+ 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";
558
+ showEnvVarsInLog = 0;
559
+ };
560
+ /* End PBXShellScriptBuildPhase section */
561
+
562
+ /* Begin PBXSourcesBuildPhase section */
563
+ 00E356EA1AD99517003FC87E /* Sources */ = {
564
+ isa = PBXSourcesBuildPhase;
565
+ buildActionMask = 2147483647;
566
+ files = (
567
+ 00E356F31AD99517003FC87E /* MixpanelDemoTests.m in Sources */,
568
+ );
569
+ runOnlyForDeploymentPostprocessing = 0;
570
+ };
571
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
572
+ isa = PBXSourcesBuildPhase;
573
+ buildActionMask = 2147483647;
574
+ files = (
575
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
576
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
577
+ 862F7C44263CD53A00F67ED4 /* Empty.swift in Sources */,
578
+ );
579
+ runOnlyForDeploymentPostprocessing = 0;
580
+ };
581
+ 2D02E4771E0B4A5D006451C7 /* Sources */ = {
582
+ isa = PBXSourcesBuildPhase;
583
+ buildActionMask = 2147483647;
584
+ files = (
585
+ 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
586
+ 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
587
+ );
588
+ runOnlyForDeploymentPostprocessing = 0;
589
+ };
590
+ 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
591
+ isa = PBXSourcesBuildPhase;
592
+ buildActionMask = 2147483647;
593
+ files = (
594
+ 2DCD954D1E0B4F2C00145EB5 /* MixpanelDemoTests.m in Sources */,
595
+ );
596
+ runOnlyForDeploymentPostprocessing = 0;
597
+ };
598
+ /* End PBXSourcesBuildPhase section */
599
+
600
+ /* Begin PBXTargetDependency section */
601
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
602
+ isa = PBXTargetDependency;
603
+ target = 13B07F861A680F5B00A75B9A /* MixpanelDemo */;
604
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
605
+ };
606
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
607
+ isa = PBXTargetDependency;
608
+ target = 2D02E47A1E0B4A5D006451C7 /* MixpanelDemo-tvOS */;
609
+ targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
610
+ };
611
+ /* End PBXTargetDependency section */
612
+
613
+ /* Begin XCBuildConfiguration section */
614
+ 00E356F61AD99517003FC87E /* Debug */ = {
615
+ isa = XCBuildConfiguration;
616
+ baseConfigurationReference = 17C020705F9400DFE629B2F1 /* Pods-MixpanelDemo-MixpanelDemoTests.debug.xcconfig */;
617
+ buildSettings = {
618
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
619
+ BUNDLE_LOADER = "$(TEST_HOST)";
620
+ GCC_PREPROCESSOR_DEFINITIONS = (
621
+ "DEBUG=1",
622
+ "$(inherited)",
623
+ );
624
+ INFOPLIST_FILE = MixpanelDemoTests/Info.plist;
625
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
626
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
627
+ OTHER_LDFLAGS = (
628
+ "-ObjC",
629
+ "-lc++",
630
+ "$(inherited)",
631
+ );
632
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
633
+ PRODUCT_NAME = "$(TARGET_NAME)";
634
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MixpanelDemo.app/MixpanelDemo";
635
+ };
636
+ name = Debug;
637
+ };
638
+ 00E356F71AD99517003FC87E /* Release */ = {
639
+ isa = XCBuildConfiguration;
640
+ baseConfigurationReference = B9764A5B9B45F21BD7CB2CBC /* Pods-MixpanelDemo-MixpanelDemoTests.release.xcconfig */;
641
+ buildSettings = {
642
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
643
+ BUNDLE_LOADER = "$(TEST_HOST)";
644
+ COPY_PHASE_STRIP = NO;
645
+ INFOPLIST_FILE = MixpanelDemoTests/Info.plist;
646
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
647
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
648
+ OTHER_LDFLAGS = (
649
+ "-ObjC",
650
+ "-lc++",
651
+ "$(inherited)",
652
+ );
653
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
654
+ PRODUCT_NAME = "$(TARGET_NAME)";
655
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MixpanelDemo.app/MixpanelDemo";
656
+ };
657
+ name = Release;
658
+ };
659
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
660
+ isa = XCBuildConfiguration;
661
+ baseConfigurationReference = 95E1F386AB50B6159FAEF19A /* Pods-MixpanelDemo.debug.xcconfig */;
662
+ buildSettings = {
663
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
664
+ CLANG_ENABLE_MODULES = YES;
665
+ CURRENT_PROJECT_VERSION = 1;
666
+ ENABLE_BITCODE = NO;
667
+ INFOPLIST_FILE = MixpanelDemo/Info.plist;
668
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
669
+ OTHER_LDFLAGS = (
670
+ "$(inherited)",
671
+ "-ObjC",
672
+ "-lc++",
673
+ );
674
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
675
+ PRODUCT_NAME = MixpanelDemo;
676
+ SWIFT_OBJC_BRIDGING_HEADER = "MixpanelDemo-Bridging-Header.h";
677
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
678
+ SWIFT_VERSION = 5.0;
679
+ VERSIONING_SYSTEM = "apple-generic";
680
+ };
681
+ name = Debug;
682
+ };
683
+ 13B07F951A680F5B00A75B9A /* Release */ = {
684
+ isa = XCBuildConfiguration;
685
+ baseConfigurationReference = C0C81800A70AE986A2646ED6 /* Pods-MixpanelDemo.release.xcconfig */;
686
+ buildSettings = {
687
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
688
+ CLANG_ENABLE_MODULES = YES;
689
+ CURRENT_PROJECT_VERSION = 1;
690
+ INFOPLIST_FILE = MixpanelDemo/Info.plist;
691
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
692
+ OTHER_LDFLAGS = (
693
+ "$(inherited)",
694
+ "-ObjC",
695
+ "-lc++",
696
+ );
697
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
698
+ PRODUCT_NAME = MixpanelDemo;
699
+ SWIFT_OBJC_BRIDGING_HEADER = "MixpanelDemo-Bridging-Header.h";
700
+ SWIFT_VERSION = 5.0;
701
+ VERSIONING_SYSTEM = "apple-generic";
702
+ };
703
+ name = Release;
704
+ };
705
+ 2D02E4971E0B4A5E006451C7 /* Debug */ = {
706
+ isa = XCBuildConfiguration;
707
+ baseConfigurationReference = 287593281AE532B01AC3BD00 /* Pods-MixpanelDemo-tvOS.debug.xcconfig */;
708
+ buildSettings = {
709
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
710
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
711
+ CLANG_ANALYZER_NONNULL = YES;
712
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
713
+ CLANG_WARN_INFINITE_RECURSION = YES;
714
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
715
+ DEBUG_INFORMATION_FORMAT = dwarf;
716
+ ENABLE_TESTABILITY = YES;
717
+ GCC_NO_COMMON_BLOCKS = YES;
718
+ INFOPLIST_FILE = "MixpanelDemo-tvOS/Info.plist";
719
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
720
+ OTHER_LDFLAGS = (
721
+ "$(inherited)",
722
+ "-ObjC",
723
+ "-lc++",
724
+ );
725
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.MixpanelDemo-tvOS";
726
+ PRODUCT_NAME = "$(TARGET_NAME)";
727
+ SDKROOT = appletvos;
728
+ TARGETED_DEVICE_FAMILY = 3;
729
+ TVOS_DEPLOYMENT_TARGET = 10.0;
730
+ };
731
+ name = Debug;
732
+ };
733
+ 2D02E4981E0B4A5E006451C7 /* Release */ = {
734
+ isa = XCBuildConfiguration;
735
+ baseConfigurationReference = 60776E74F7AEBEFD3EB461E9 /* Pods-MixpanelDemo-tvOS.release.xcconfig */;
736
+ buildSettings = {
737
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
738
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
739
+ CLANG_ANALYZER_NONNULL = YES;
740
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
741
+ CLANG_WARN_INFINITE_RECURSION = YES;
742
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
743
+ COPY_PHASE_STRIP = NO;
744
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
745
+ GCC_NO_COMMON_BLOCKS = YES;
746
+ INFOPLIST_FILE = "MixpanelDemo-tvOS/Info.plist";
747
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
748
+ OTHER_LDFLAGS = (
749
+ "$(inherited)",
750
+ "-ObjC",
751
+ "-lc++",
752
+ );
753
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.MixpanelDemo-tvOS";
754
+ PRODUCT_NAME = "$(TARGET_NAME)";
755
+ SDKROOT = appletvos;
756
+ TARGETED_DEVICE_FAMILY = 3;
757
+ TVOS_DEPLOYMENT_TARGET = 10.0;
758
+ };
759
+ name = Release;
760
+ };
761
+ 2D02E4991E0B4A5E006451C7 /* Debug */ = {
762
+ isa = XCBuildConfiguration;
763
+ baseConfigurationReference = 2A1DE7E5A497266D26B3C2E9 /* Pods-MixpanelDemo-tvOSTests.debug.xcconfig */;
764
+ buildSettings = {
765
+ BUNDLE_LOADER = "$(TEST_HOST)";
766
+ CLANG_ANALYZER_NONNULL = YES;
767
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
768
+ CLANG_WARN_INFINITE_RECURSION = YES;
769
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
770
+ DEBUG_INFORMATION_FORMAT = dwarf;
771
+ ENABLE_TESTABILITY = YES;
772
+ GCC_NO_COMMON_BLOCKS = YES;
773
+ INFOPLIST_FILE = "MixpanelDemo-tvOSTests/Info.plist";
774
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
775
+ OTHER_LDFLAGS = (
776
+ "$(inherited)",
777
+ "-ObjC",
778
+ "-lc++",
779
+ );
780
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.MixpanelDemo-tvOSTests";
781
+ PRODUCT_NAME = "$(TARGET_NAME)";
782
+ SDKROOT = appletvos;
783
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MixpanelDemo-tvOS.app/MixpanelDemo-tvOS";
784
+ TVOS_DEPLOYMENT_TARGET = 10.1;
785
+ };
786
+ name = Debug;
787
+ };
788
+ 2D02E49A1E0B4A5E006451C7 /* Release */ = {
789
+ isa = XCBuildConfiguration;
790
+ baseConfigurationReference = 15B943AAE69F4D9E352E81B0 /* Pods-MixpanelDemo-tvOSTests.release.xcconfig */;
791
+ buildSettings = {
792
+ BUNDLE_LOADER = "$(TEST_HOST)";
793
+ CLANG_ANALYZER_NONNULL = YES;
794
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
795
+ CLANG_WARN_INFINITE_RECURSION = YES;
796
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
797
+ COPY_PHASE_STRIP = NO;
798
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
799
+ GCC_NO_COMMON_BLOCKS = YES;
800
+ INFOPLIST_FILE = "MixpanelDemo-tvOSTests/Info.plist";
801
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
802
+ OTHER_LDFLAGS = (
803
+ "$(inherited)",
804
+ "-ObjC",
805
+ "-lc++",
806
+ );
807
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.MixpanelDemo-tvOSTests";
808
+ PRODUCT_NAME = "$(TARGET_NAME)";
809
+ SDKROOT = appletvos;
810
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MixpanelDemo-tvOS.app/MixpanelDemo-tvOS";
811
+ TVOS_DEPLOYMENT_TARGET = 10.1;
812
+ };
813
+ name = Release;
814
+ };
815
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
816
+ isa = XCBuildConfiguration;
817
+ buildSettings = {
818
+ ALWAYS_SEARCH_USER_PATHS = NO;
819
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
820
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
821
+ CLANG_CXX_LIBRARY = "libc++";
822
+ CLANG_ENABLE_MODULES = YES;
823
+ CLANG_ENABLE_OBJC_ARC = YES;
824
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
825
+ CLANG_WARN_BOOL_CONVERSION = YES;
826
+ CLANG_WARN_COMMA = YES;
827
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
828
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
829
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
830
+ CLANG_WARN_EMPTY_BODY = YES;
831
+ CLANG_WARN_ENUM_CONVERSION = YES;
832
+ CLANG_WARN_INFINITE_RECURSION = YES;
833
+ CLANG_WARN_INT_CONVERSION = YES;
834
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
835
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
836
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
837
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
838
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
839
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
840
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
841
+ CLANG_WARN_UNREACHABLE_CODE = YES;
842
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
843
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
844
+ COPY_PHASE_STRIP = NO;
845
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
846
+ ENABLE_TESTABILITY = YES;
847
+ GCC_C_LANGUAGE_STANDARD = gnu99;
848
+ GCC_DYNAMIC_NO_PIC = NO;
849
+ GCC_NO_COMMON_BLOCKS = YES;
850
+ GCC_OPTIMIZATION_LEVEL = 0;
851
+ GCC_PREPROCESSOR_DEFINITIONS = (
852
+ "DEBUG=1",
853
+ "$(inherited)",
854
+ );
855
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
856
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
857
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
858
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
859
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
860
+ GCC_WARN_UNUSED_FUNCTION = YES;
861
+ GCC_WARN_UNUSED_VARIABLE = YES;
862
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
863
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
864
+ LIBRARY_SEARCH_PATHS = (
865
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
866
+ "\"$(inherited)\"",
867
+ );
868
+ MTL_ENABLE_DEBUG_INFO = YES;
869
+ ONLY_ACTIVE_ARCH = YES;
870
+ SDKROOT = iphoneos;
871
+ };
872
+ name = Debug;
873
+ };
874
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
875
+ isa = XCBuildConfiguration;
876
+ buildSettings = {
877
+ ALWAYS_SEARCH_USER_PATHS = NO;
878
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
879
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
880
+ CLANG_CXX_LIBRARY = "libc++";
881
+ CLANG_ENABLE_MODULES = YES;
882
+ CLANG_ENABLE_OBJC_ARC = YES;
883
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
884
+ CLANG_WARN_BOOL_CONVERSION = YES;
885
+ CLANG_WARN_COMMA = YES;
886
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
887
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
888
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
889
+ CLANG_WARN_EMPTY_BODY = YES;
890
+ CLANG_WARN_ENUM_CONVERSION = YES;
891
+ CLANG_WARN_INFINITE_RECURSION = YES;
892
+ CLANG_WARN_INT_CONVERSION = YES;
893
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
894
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
895
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
896
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
897
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
898
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
899
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
900
+ CLANG_WARN_UNREACHABLE_CODE = YES;
901
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
902
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
903
+ COPY_PHASE_STRIP = YES;
904
+ ENABLE_NS_ASSERTIONS = NO;
905
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
906
+ GCC_C_LANGUAGE_STANDARD = gnu99;
907
+ GCC_NO_COMMON_BLOCKS = YES;
908
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
909
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
910
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
911
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
912
+ GCC_WARN_UNUSED_FUNCTION = YES;
913
+ GCC_WARN_UNUSED_VARIABLE = YES;
914
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
915
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
916
+ LIBRARY_SEARCH_PATHS = (
917
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
918
+ "\"$(inherited)\"",
919
+ );
920
+ MTL_ENABLE_DEBUG_INFO = NO;
921
+ SDKROOT = iphoneos;
922
+ VALIDATE_PRODUCT = YES;
923
+ };
924
+ name = Release;
925
+ };
926
+ /* End XCBuildConfiguration section */
927
+
928
+ /* Begin XCConfigurationList section */
929
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "MixpanelDemoTests" */ = {
930
+ isa = XCConfigurationList;
931
+ buildConfigurations = (
932
+ 00E356F61AD99517003FC87E /* Debug */,
933
+ 00E356F71AD99517003FC87E /* Release */,
934
+ );
935
+ defaultConfigurationIsVisible = 0;
936
+ defaultConfigurationName = Release;
937
+ };
938
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MixpanelDemo" */ = {
939
+ isa = XCConfigurationList;
940
+ buildConfigurations = (
941
+ 13B07F941A680F5B00A75B9A /* Debug */,
942
+ 13B07F951A680F5B00A75B9A /* Release */,
943
+ );
944
+ defaultConfigurationIsVisible = 0;
945
+ defaultConfigurationName = Release;
946
+ };
947
+ 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MixpanelDemo-tvOS" */ = {
948
+ isa = XCConfigurationList;
949
+ buildConfigurations = (
950
+ 2D02E4971E0B4A5E006451C7 /* Debug */,
951
+ 2D02E4981E0B4A5E006451C7 /* Release */,
952
+ );
953
+ defaultConfigurationIsVisible = 0;
954
+ defaultConfigurationName = Release;
955
+ };
956
+ 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "MixpanelDemo-tvOSTests" */ = {
957
+ isa = XCConfigurationList;
958
+ buildConfigurations = (
959
+ 2D02E4991E0B4A5E006451C7 /* Debug */,
960
+ 2D02E49A1E0B4A5E006451C7 /* Release */,
961
+ );
962
+ defaultConfigurationIsVisible = 0;
963
+ defaultConfigurationName = Release;
964
+ };
965
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MixpanelDemo" */ = {
966
+ isa = XCConfigurationList;
967
+ buildConfigurations = (
968
+ 83CBBA201A601CBA00E9B192 /* Debug */,
969
+ 83CBBA211A601CBA00E9B192 /* Release */,
970
+ );
971
+ defaultConfigurationIsVisible = 0;
972
+ defaultConfigurationName = Release;
973
+ };
974
+ /* End XCConfigurationList section */
975
+ };
976
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
977
+ }