mixpanel-react-native 3.1.2 → 3.2.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/.claude/settings.local.json +12 -1
  2. package/.github/dependabot.yml +7 -0
  3. package/.github/workflows/node.js.yml +24 -1
  4. package/.vscode/settings.json +2 -1
  5. package/MixpanelReactNative.podspec +1 -1
  6. package/Samples/MixpanelExample/ios/MixpanelExample.xcworkspace/contents.xcworkspacedata +10 -0
  7. package/Samples/MixpanelExample/ios/Podfile.lock +1996 -0
  8. package/Samples/MixpanelStarter/.bundle/config +2 -0
  9. package/Samples/MixpanelStarter/.env.example +4 -0
  10. package/Samples/MixpanelStarter/.eslintrc.js +4 -0
  11. package/Samples/MixpanelStarter/.prettierrc.js +5 -0
  12. package/Samples/MixpanelStarter/.watchmanconfig +1 -0
  13. package/Samples/MixpanelStarter/App.tsx +10 -0
  14. package/Samples/MixpanelStarter/CLAUDE.md +538 -0
  15. package/Samples/MixpanelStarter/Gemfile +16 -0
  16. package/Samples/MixpanelStarter/INTEGRATION_GUIDE.md +606 -0
  17. package/Samples/MixpanelStarter/README.md +406 -0
  18. package/Samples/MixpanelStarter/__tests__/MixpanelContext.test.tsx +63 -0
  19. package/Samples/MixpanelStarter/android/app/build.gradle +119 -0
  20. package/Samples/MixpanelStarter/android/app/debug.keystore +0 -0
  21. package/Samples/MixpanelStarter/android/app/proguard-rules.pro +10 -0
  22. package/Samples/MixpanelStarter/android/app/src/main/AndroidManifest.xml +27 -0
  23. package/Samples/MixpanelStarter/android/app/src/main/java/com/mixpanelstarter/MainActivity.kt +22 -0
  24. package/Samples/MixpanelStarter/android/app/src/main/java/com/mixpanelstarter/MainApplication.kt +27 -0
  25. package/Samples/MixpanelStarter/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  26. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  27. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  28. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  29. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  30. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  31. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  32. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  33. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  34. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  35. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  36. package/Samples/MixpanelStarter/android/app/src/main/res/values/strings.xml +3 -0
  37. package/Samples/MixpanelStarter/android/app/src/main/res/values/styles.xml +9 -0
  38. package/Samples/MixpanelStarter/android/build.gradle +21 -0
  39. package/Samples/MixpanelStarter/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  40. package/Samples/MixpanelStarter/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  41. package/Samples/MixpanelStarter/android/gradle.properties +44 -0
  42. package/Samples/MixpanelStarter/android/gradlew +251 -0
  43. package/Samples/MixpanelStarter/android/gradlew.bat +99 -0
  44. package/Samples/MixpanelStarter/android/settings.gradle +6 -0
  45. package/Samples/MixpanelStarter/app.json +4 -0
  46. package/Samples/MixpanelStarter/babel.config.js +14 -0
  47. package/Samples/MixpanelStarter/index.js +9 -0
  48. package/Samples/MixpanelStarter/ios/.xcode.env +11 -0
  49. package/Samples/MixpanelStarter/ios/MixpanelStarter/AppDelegate.swift +48 -0
  50. package/Samples/MixpanelStarter/ios/MixpanelStarter/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  51. package/Samples/MixpanelStarter/ios/MixpanelStarter/Images.xcassets/Contents.json +6 -0
  52. package/Samples/MixpanelStarter/ios/MixpanelStarter/Info.plist +55 -0
  53. package/Samples/MixpanelStarter/ios/MixpanelStarter/LaunchScreen.storyboard +47 -0
  54. package/Samples/MixpanelStarter/ios/MixpanelStarter/PrivacyInfo.xcprivacy +38 -0
  55. package/Samples/MixpanelStarter/ios/MixpanelStarter.xcodeproj/project.pbxproj +482 -0
  56. package/Samples/MixpanelStarter/ios/MixpanelStarter.xcodeproj/xcshareddata/xcschemes/MixpanelStarter.xcscheme +88 -0
  57. package/Samples/MixpanelStarter/ios/MixpanelStarter.xcworkspace/contents.xcworkspacedata +10 -0
  58. package/Samples/MixpanelStarter/ios/Podfile +34 -0
  59. package/Samples/MixpanelStarter/ios/Podfile.lock +2839 -0
  60. package/Samples/MixpanelStarter/jest.config.js +3 -0
  61. package/Samples/MixpanelStarter/metro.config.js +42 -0
  62. package/Samples/MixpanelStarter/package-lock.json +12141 -0
  63. package/Samples/MixpanelStarter/package.json +51 -0
  64. package/Samples/MixpanelStarter/src/@types/env.d.ts +3 -0
  65. package/Samples/MixpanelStarter/src/App.tsx +83 -0
  66. package/Samples/MixpanelStarter/src/components/ActionButton.tsx +92 -0
  67. package/Samples/MixpanelStarter/src/components/ErrorBoundary.tsx +81 -0
  68. package/Samples/MixpanelStarter/src/components/EventTrackingLog.tsx +163 -0
  69. package/Samples/MixpanelStarter/src/components/FlagCard.tsx +199 -0
  70. package/Samples/MixpanelStarter/src/components/InfoCard.tsx +77 -0
  71. package/Samples/MixpanelStarter/src/components/TestResultDisplay.tsx +181 -0
  72. package/Samples/MixpanelStarter/src/constants/tracking.ts +77 -0
  73. package/Samples/MixpanelStarter/src/contexts/MixpanelContext.tsx +159 -0
  74. package/Samples/MixpanelStarter/src/screens/FeatureFlagsScreen.tsx +1011 -0
  75. package/Samples/MixpanelStarter/src/screens/HomeScreen.tsx +307 -0
  76. package/Samples/MixpanelStarter/src/screens/OnboardingScreen.tsx +253 -0
  77. package/Samples/MixpanelStarter/src/screens/SettingsScreen.tsx +316 -0
  78. package/Samples/MixpanelStarter/src/types/flags.types.ts +42 -0
  79. package/Samples/MixpanelStarter/src/types/mixpanel.types.ts +26 -0
  80. package/Samples/MixpanelStarter/tsconfig.json +13 -0
  81. package/__tests__/flags.test.js +730 -0
  82. package/__tests__/index.test.js +7 -3
  83. package/__tests__/jest_setup.js +18 -0
  84. package/android/build.gradle +1 -1
  85. package/android/src/main/java/com/mixpanel/reactnative/MixpanelReactNativeModule.java +272 -2
  86. package/index.d.ts +64 -1
  87. package/index.js +42 -3
  88. package/ios/MixpanelReactNative.m +19 -1
  89. package/ios/MixpanelReactNative.swift +183 -5
  90. package/javascript/mixpanel-flags-js.js +463 -0
  91. package/javascript/mixpanel-flags.js +290 -0
  92. package/javascript/mixpanel-main.js +13 -1
  93. package/package.json +2 -2
@@ -0,0 +1,55 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CADisableMinimumFrameDurationOnPhone</key>
6
+ <true/>
7
+ <key>CFBundleDevelopmentRegion</key>
8
+ <string>en</string>
9
+ <key>CFBundleDisplayName</key>
10
+ <string>MixpanelStarter</string>
11
+ <key>CFBundleExecutable</key>
12
+ <string>$(EXECUTABLE_NAME)</string>
13
+ <key>CFBundleIdentifier</key>
14
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
15
+ <key>CFBundleInfoDictionaryVersion</key>
16
+ <string>6.0</string>
17
+ <key>CFBundleName</key>
18
+ <string>$(PRODUCT_NAME)</string>
19
+ <key>CFBundlePackageType</key>
20
+ <string>APPL</string>
21
+ <key>CFBundleShortVersionString</key>
22
+ <string>$(MARKETING_VERSION)</string>
23
+ <key>CFBundleSignature</key>
24
+ <string>????</string>
25
+ <key>CFBundleVersion</key>
26
+ <string>$(CURRENT_PROJECT_VERSION)</string>
27
+ <key>LSRequiresIPhoneOS</key>
28
+ <true/>
29
+ <key>NSAppTransportSecurity</key>
30
+ <dict>
31
+ <key>NSAllowsArbitraryLoads</key>
32
+ <false/>
33
+ <key>NSAllowsLocalNetworking</key>
34
+ <true/>
35
+ </dict>
36
+ <key>NSLocationWhenInUseUsageDescription</key>
37
+ <string></string>
38
+ <key>RCTNewArchEnabled</key>
39
+ <true/>
40
+ <key>UILaunchStoryboardName</key>
41
+ <string>LaunchScreen</string>
42
+ <key>UIRequiredDeviceCapabilities</key>
43
+ <array>
44
+ <string>arm64</string>
45
+ </array>
46
+ <key>UISupportedInterfaceOrientations</key>
47
+ <array>
48
+ <string>UIInterfaceOrientationPortrait</string>
49
+ <string>UIInterfaceOrientationLandscapeLeft</string>
50
+ <string>UIInterfaceOrientationLandscapeRight</string>
51
+ </array>
52
+ <key>UIViewControllerBasedStatusBarAppearance</key>
53
+ <false/>
54
+ </dict>
55
+ </plist>
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
3
+ <device id="retina4_7" orientation="portrait" appearance="light"/>
4
+ <dependencies>
5
+ <deployment identifier="iOS"/>
6
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
7
+ <capability name="Safe area layout guides" minToolsVersion="9.0"/>
8
+ <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
9
+ </dependencies>
10
+ <scenes>
11
+ <!--View Controller-->
12
+ <scene sceneID="EHf-IW-A2E">
13
+ <objects>
14
+ <viewController id="01J-lp-oVM" sceneMemberID="viewController">
15
+ <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
16
+ <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
17
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
18
+ <subviews>
19
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="MixpanelStarter" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
20
+ <rect key="frame" x="0.0" y="202" width="375" height="43"/>
21
+ <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
22
+ <nil key="highlightedColor"/>
23
+ </label>
24
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="MN2-I3-ftu">
25
+ <rect key="frame" x="0.0" y="626" width="375" height="21"/>
26
+ <fontDescription key="fontDescription" type="system" pointSize="17"/>
27
+ <nil key="highlightedColor"/>
28
+ </label>
29
+ </subviews>
30
+ <color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
31
+ <constraints>
32
+ <constraint firstItem="Bcu-3y-fUS" firstAttribute="bottom" secondItem="MN2-I3-ftu" secondAttribute="bottom" constant="20" id="OZV-Vh-mqD"/>
33
+ <constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/>
34
+ <constraint firstItem="MN2-I3-ftu" firstAttribute="centerX" secondItem="Bcu-3y-fUS" secondAttribute="centerX" id="akx-eg-2ui"/>
35
+ <constraint firstItem="MN2-I3-ftu" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" id="i1E-0Y-4RG"/>
36
+ <constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/>
37
+ <constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="x7j-FC-K8j"/>
38
+ </constraints>
39
+ <viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
40
+ </view>
41
+ </viewController>
42
+ <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
43
+ </objects>
44
+ <point key="canvasLocation" x="52.173913043478265" y="375"/>
45
+ </scene>
46
+ </scenes>
47
+ </document>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>NSPrivacyAccessedAPITypes</key>
6
+ <array>
7
+ <dict>
8
+ <key>NSPrivacyAccessedAPIType</key>
9
+ <string>NSPrivacyAccessedAPICategoryUserDefaults</string>
10
+ <key>NSPrivacyAccessedAPITypeReasons</key>
11
+ <array>
12
+ <string>1C8F.1</string>
13
+ <string>CA92.1</string>
14
+ </array>
15
+ </dict>
16
+ <dict>
17
+ <key>NSPrivacyAccessedAPIType</key>
18
+ <string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
19
+ <key>NSPrivacyAccessedAPITypeReasons</key>
20
+ <array>
21
+ <string>C617.1</string>
22
+ </array>
23
+ </dict>
24
+ <dict>
25
+ <key>NSPrivacyAccessedAPIType</key>
26
+ <string>NSPrivacyAccessedAPICategorySystemBootTime</string>
27
+ <key>NSPrivacyAccessedAPITypeReasons</key>
28
+ <array>
29
+ <string>35F9.1</string>
30
+ </array>
31
+ </dict>
32
+ </array>
33
+ <key>NSPrivacyCollectedDataTypes</key>
34
+ <array/>
35
+ <key>NSPrivacyTracking</key>
36
+ <false/>
37
+ </dict>
38
+ </plist>
@@ -0,0 +1,482 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 0C80B921A6F3F58F76C31292 /* libPods-MixpanelStarter.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-MixpanelStarter.a */; };
11
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12
+ 182765D3DC61D5928B41C95A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
13
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
14
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
15
+ /* End PBXBuildFile section */
16
+
17
+ /* Begin PBXFileReference section */
18
+ 13B07F961A680F5B00A75B9A /* MixpanelStarter.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MixpanelStarter.app; sourceTree = BUILT_PRODUCTS_DIR; };
19
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = MixpanelStarter/Images.xcassets; sourceTree = "<group>"; };
20
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = MixpanelStarter/Info.plist; sourceTree = "<group>"; };
21
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = MixpanelStarter/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
22
+ 3B4392A12AC88292D35C810B /* Pods-MixpanelStarter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelStarter.debug.xcconfig"; path = "Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter.debug.xcconfig"; sourceTree = "<group>"; };
23
+ 5709B34CF0A7D63546082F79 /* Pods-MixpanelStarter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelStarter.release.xcconfig"; path = "Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter.release.xcconfig"; sourceTree = "<group>"; };
24
+ 5DCACB8F33CDC322A6C60F78 /* libPods-MixpanelStarter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MixpanelStarter.a"; sourceTree = BUILT_PRODUCTS_DIR; };
25
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = MixpanelStarter/AppDelegate.swift; sourceTree = "<group>"; };
26
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = MixpanelStarter/LaunchScreen.storyboard; sourceTree = "<group>"; };
27
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
28
+ /* End PBXFileReference section */
29
+
30
+ /* Begin PBXFrameworksBuildPhase section */
31
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
32
+ isa = PBXFrameworksBuildPhase;
33
+ buildActionMask = 2147483647;
34
+ files = (
35
+ 0C80B921A6F3F58F76C31292 /* libPods-MixpanelStarter.a in Frameworks */,
36
+ );
37
+ runOnlyForDeploymentPostprocessing = 0;
38
+ };
39
+ /* End PBXFrameworksBuildPhase section */
40
+
41
+ /* Begin PBXGroup section */
42
+ 13B07FAE1A68108700A75B9A /* MixpanelStarter */ = {
43
+ isa = PBXGroup;
44
+ children = (
45
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
46
+ 761780EC2CA45674006654EE /* AppDelegate.swift */,
47
+ 13B07FB61A68108700A75B9A /* Info.plist */,
48
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
49
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
50
+ );
51
+ name = MixpanelStarter;
52
+ sourceTree = "<group>";
53
+ };
54
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
55
+ isa = PBXGroup;
56
+ children = (
57
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
58
+ 5DCACB8F33CDC322A6C60F78 /* libPods-MixpanelStarter.a */,
59
+ );
60
+ name = Frameworks;
61
+ sourceTree = "<group>";
62
+ };
63
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
64
+ isa = PBXGroup;
65
+ children = (
66
+ );
67
+ name = Libraries;
68
+ sourceTree = "<group>";
69
+ };
70
+ 83CBB9F61A601CBA00E9B192 = {
71
+ isa = PBXGroup;
72
+ children = (
73
+ 13B07FAE1A68108700A75B9A /* MixpanelStarter */,
74
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
75
+ 83CBBA001A601CBA00E9B192 /* Products */,
76
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
77
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
78
+ );
79
+ indentWidth = 2;
80
+ sourceTree = "<group>";
81
+ tabWidth = 2;
82
+ usesTabs = 0;
83
+ };
84
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
85
+ isa = PBXGroup;
86
+ children = (
87
+ 13B07F961A680F5B00A75B9A /* MixpanelStarter.app */,
88
+ );
89
+ name = Products;
90
+ sourceTree = "<group>";
91
+ };
92
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
93
+ isa = PBXGroup;
94
+ children = (
95
+ 3B4392A12AC88292D35C810B /* Pods-MixpanelStarter.debug.xcconfig */,
96
+ 5709B34CF0A7D63546082F79 /* Pods-MixpanelStarter.release.xcconfig */,
97
+ );
98
+ path = Pods;
99
+ sourceTree = "<group>";
100
+ };
101
+ /* End PBXGroup section */
102
+
103
+ /* Begin PBXNativeTarget section */
104
+ 13B07F861A680F5B00A75B9A /* MixpanelStarter */ = {
105
+ isa = PBXNativeTarget;
106
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MixpanelStarter" */;
107
+ buildPhases = (
108
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
109
+ 13B07F871A680F5B00A75B9A /* Sources */,
110
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
111
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
112
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
113
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
114
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
115
+ );
116
+ buildRules = (
117
+ );
118
+ dependencies = (
119
+ );
120
+ name = MixpanelStarter;
121
+ productName = MixpanelStarter;
122
+ productReference = 13B07F961A680F5B00A75B9A /* MixpanelStarter.app */;
123
+ productType = "com.apple.product-type.application";
124
+ };
125
+ /* End PBXNativeTarget section */
126
+
127
+ /* Begin PBXProject section */
128
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
129
+ isa = PBXProject;
130
+ attributes = {
131
+ LastUpgradeCheck = 1210;
132
+ TargetAttributes = {
133
+ 13B07F861A680F5B00A75B9A = {
134
+ LastSwiftMigration = 1120;
135
+ };
136
+ };
137
+ };
138
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MixpanelStarter" */;
139
+ compatibilityVersion = "Xcode 12.0";
140
+ developmentRegion = en;
141
+ hasScannedForEncodings = 0;
142
+ knownRegions = (
143
+ en,
144
+ Base,
145
+ );
146
+ mainGroup = 83CBB9F61A601CBA00E9B192;
147
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
148
+ projectDirPath = "";
149
+ projectRoot = "";
150
+ targets = (
151
+ 13B07F861A680F5B00A75B9A /* MixpanelStarter */,
152
+ );
153
+ };
154
+ /* End PBXProject section */
155
+
156
+ /* Begin PBXResourcesBuildPhase section */
157
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
158
+ isa = PBXResourcesBuildPhase;
159
+ buildActionMask = 2147483647;
160
+ files = (
161
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
162
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
163
+ 182765D3DC61D5928B41C95A /* PrivacyInfo.xcprivacy in Resources */,
164
+ );
165
+ runOnlyForDeploymentPostprocessing = 0;
166
+ };
167
+ /* End PBXResourcesBuildPhase section */
168
+
169
+ /* Begin PBXShellScriptBuildPhase section */
170
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
171
+ isa = PBXShellScriptBuildPhase;
172
+ buildActionMask = 2147483647;
173
+ files = (
174
+ );
175
+ inputPaths = (
176
+ "$(SRCROOT)/.xcode.env.local",
177
+ "$(SRCROOT)/.xcode.env",
178
+ );
179
+ name = "Bundle React Native code and images";
180
+ outputPaths = (
181
+ );
182
+ runOnlyForDeploymentPostprocessing = 0;
183
+ shellPath = /bin/sh;
184
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
185
+ };
186
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
187
+ isa = PBXShellScriptBuildPhase;
188
+ buildActionMask = 2147483647;
189
+ files = (
190
+ );
191
+ inputFileListPaths = (
192
+ "${PODS_ROOT}/Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter-frameworks-${CONFIGURATION}-input-files.xcfilelist",
193
+ );
194
+ name = "[CP] Embed Pods Frameworks";
195
+ outputFileListPaths = (
196
+ "${PODS_ROOT}/Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter-frameworks-${CONFIGURATION}-output-files.xcfilelist",
197
+ );
198
+ runOnlyForDeploymentPostprocessing = 0;
199
+ shellPath = /bin/sh;
200
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter-frameworks.sh\"\n";
201
+ showEnvVarsInLog = 0;
202
+ };
203
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
204
+ isa = PBXShellScriptBuildPhase;
205
+ buildActionMask = 2147483647;
206
+ files = (
207
+ );
208
+ inputFileListPaths = (
209
+ );
210
+ inputPaths = (
211
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
212
+ "${PODS_ROOT}/Manifest.lock",
213
+ );
214
+ name = "[CP] Check Pods Manifest.lock";
215
+ outputFileListPaths = (
216
+ );
217
+ outputPaths = (
218
+ "$(DERIVED_FILE_DIR)/Pods-MixpanelStarter-checkManifestLockResult.txt",
219
+ );
220
+ runOnlyForDeploymentPostprocessing = 0;
221
+ shellPath = /bin/sh;
222
+ 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";
223
+ showEnvVarsInLog = 0;
224
+ };
225
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
226
+ isa = PBXShellScriptBuildPhase;
227
+ buildActionMask = 2147483647;
228
+ files = (
229
+ );
230
+ inputFileListPaths = (
231
+ "${PODS_ROOT}/Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter-resources-${CONFIGURATION}-input-files.xcfilelist",
232
+ );
233
+ name = "[CP] Copy Pods Resources";
234
+ outputFileListPaths = (
235
+ "${PODS_ROOT}/Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter-resources-${CONFIGURATION}-output-files.xcfilelist",
236
+ );
237
+ runOnlyForDeploymentPostprocessing = 0;
238
+ shellPath = /bin/sh;
239
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MixpanelStarter/Pods-MixpanelStarter-resources.sh\"\n";
240
+ showEnvVarsInLog = 0;
241
+ };
242
+ /* End PBXShellScriptBuildPhase section */
243
+
244
+ /* Begin PBXSourcesBuildPhase section */
245
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
246
+ isa = PBXSourcesBuildPhase;
247
+ buildActionMask = 2147483647;
248
+ files = (
249
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
250
+ );
251
+ runOnlyForDeploymentPostprocessing = 0;
252
+ };
253
+ /* End PBXSourcesBuildPhase section */
254
+
255
+ /* Begin XCBuildConfiguration section */
256
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
257
+ isa = XCBuildConfiguration;
258
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-MixpanelStarter.debug.xcconfig */;
259
+ buildSettings = {
260
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
261
+ CLANG_ENABLE_MODULES = YES;
262
+ CURRENT_PROJECT_VERSION = 1;
263
+ ENABLE_BITCODE = NO;
264
+ INFOPLIST_FILE = MixpanelStarter/Info.plist;
265
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
266
+ LD_RUNPATH_SEARCH_PATHS = (
267
+ "$(inherited)",
268
+ "@executable_path/Frameworks",
269
+ );
270
+ MARKETING_VERSION = 1.0;
271
+ OTHER_LDFLAGS = (
272
+ "$(inherited)",
273
+ "-ObjC",
274
+ "-lc++",
275
+ );
276
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
277
+ PRODUCT_NAME = MixpanelStarter;
278
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
279
+ SWIFT_VERSION = 5.0;
280
+ VERSIONING_SYSTEM = "apple-generic";
281
+ };
282
+ name = Debug;
283
+ };
284
+ 13B07F951A680F5B00A75B9A /* Release */ = {
285
+ isa = XCBuildConfiguration;
286
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-MixpanelStarter.release.xcconfig */;
287
+ buildSettings = {
288
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
289
+ CLANG_ENABLE_MODULES = YES;
290
+ CURRENT_PROJECT_VERSION = 1;
291
+ INFOPLIST_FILE = MixpanelStarter/Info.plist;
292
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
293
+ LD_RUNPATH_SEARCH_PATHS = (
294
+ "$(inherited)",
295
+ "@executable_path/Frameworks",
296
+ );
297
+ MARKETING_VERSION = 1.0;
298
+ OTHER_LDFLAGS = (
299
+ "$(inherited)",
300
+ "-ObjC",
301
+ "-lc++",
302
+ );
303
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
304
+ PRODUCT_NAME = MixpanelStarter;
305
+ SWIFT_VERSION = 5.0;
306
+ VERSIONING_SYSTEM = "apple-generic";
307
+ };
308
+ name = Release;
309
+ };
310
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
311
+ isa = XCBuildConfiguration;
312
+ buildSettings = {
313
+ ALWAYS_SEARCH_USER_PATHS = NO;
314
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
315
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
316
+ CLANG_CXX_LIBRARY = "libc++";
317
+ CLANG_ENABLE_MODULES = YES;
318
+ CLANG_ENABLE_OBJC_ARC = YES;
319
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
320
+ CLANG_WARN_BOOL_CONVERSION = YES;
321
+ CLANG_WARN_COMMA = YES;
322
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
323
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
324
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
325
+ CLANG_WARN_EMPTY_BODY = YES;
326
+ CLANG_WARN_ENUM_CONVERSION = YES;
327
+ CLANG_WARN_INFINITE_RECURSION = YES;
328
+ CLANG_WARN_INT_CONVERSION = YES;
329
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
330
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
331
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
332
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
333
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
334
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
335
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
336
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
337
+ CLANG_WARN_UNREACHABLE_CODE = YES;
338
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
339
+ CODE_SIGNING_ALLOWED = NO;
340
+ CODE_SIGNING_REQUIRED = NO;
341
+ CODE_SIGN_IDENTITY = "";
342
+ COPY_PHASE_STRIP = NO;
343
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
344
+ ENABLE_TESTABILITY = YES;
345
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
346
+ GCC_C_LANGUAGE_STANDARD = gnu99;
347
+ GCC_DYNAMIC_NO_PIC = NO;
348
+ GCC_NO_COMMON_BLOCKS = YES;
349
+ GCC_OPTIMIZATION_LEVEL = 0;
350
+ GCC_PREPROCESSOR_DEFINITIONS = (
351
+ "DEBUG=1",
352
+ "$(inherited)",
353
+ );
354
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
355
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
356
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
357
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
358
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
359
+ GCC_WARN_UNUSED_FUNCTION = YES;
360
+ GCC_WARN_UNUSED_VARIABLE = YES;
361
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
362
+ LD_RUNPATH_SEARCH_PATHS = (
363
+ /usr/lib/swift,
364
+ "$(inherited)",
365
+ );
366
+ LIBRARY_SEARCH_PATHS = (
367
+ "\"$(SDKROOT)/usr/lib/swift\"",
368
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
369
+ "\"$(inherited)\"",
370
+ );
371
+ MTL_ENABLE_DEBUG_INFO = YES;
372
+ ONLY_ACTIVE_ARCH = YES;
373
+ OTHER_CPLUSPLUSFLAGS = (
374
+ "$(OTHER_CFLAGS)",
375
+ "-DFOLLY_NO_CONFIG",
376
+ "-DFOLLY_MOBILE=1",
377
+ "-DFOLLY_USE_LIBCPP=1",
378
+ "-DFOLLY_CFG_NO_COROUTINES=1",
379
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
380
+ );
381
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
382
+ SDKROOT = iphoneos;
383
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
384
+ USE_HERMES = true;
385
+ };
386
+ name = Debug;
387
+ };
388
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
389
+ isa = XCBuildConfiguration;
390
+ buildSettings = {
391
+ ALWAYS_SEARCH_USER_PATHS = NO;
392
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
393
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
394
+ CLANG_CXX_LIBRARY = "libc++";
395
+ CLANG_ENABLE_MODULES = YES;
396
+ CLANG_ENABLE_OBJC_ARC = YES;
397
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
398
+ CLANG_WARN_BOOL_CONVERSION = YES;
399
+ CLANG_WARN_COMMA = YES;
400
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
401
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
402
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
403
+ CLANG_WARN_EMPTY_BODY = YES;
404
+ CLANG_WARN_ENUM_CONVERSION = YES;
405
+ CLANG_WARN_INFINITE_RECURSION = YES;
406
+ CLANG_WARN_INT_CONVERSION = YES;
407
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
408
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
409
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
410
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
411
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
412
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
413
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
414
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
415
+ CLANG_WARN_UNREACHABLE_CODE = YES;
416
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
417
+ CODE_SIGNING_ALLOWED = NO;
418
+ CODE_SIGNING_REQUIRED = NO;
419
+ CODE_SIGN_IDENTITY = "";
420
+ COPY_PHASE_STRIP = YES;
421
+ ENABLE_NS_ASSERTIONS = NO;
422
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
423
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
424
+ GCC_C_LANGUAGE_STANDARD = gnu99;
425
+ GCC_NO_COMMON_BLOCKS = YES;
426
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
427
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
428
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
429
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
430
+ GCC_WARN_UNUSED_FUNCTION = YES;
431
+ GCC_WARN_UNUSED_VARIABLE = YES;
432
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
433
+ LD_RUNPATH_SEARCH_PATHS = (
434
+ /usr/lib/swift,
435
+ "$(inherited)",
436
+ );
437
+ LIBRARY_SEARCH_PATHS = (
438
+ "\"$(SDKROOT)/usr/lib/swift\"",
439
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
440
+ "\"$(inherited)\"",
441
+ );
442
+ MTL_ENABLE_DEBUG_INFO = NO;
443
+ OTHER_CPLUSPLUSFLAGS = (
444
+ "$(OTHER_CFLAGS)",
445
+ "-DFOLLY_NO_CONFIG",
446
+ "-DFOLLY_MOBILE=1",
447
+ "-DFOLLY_USE_LIBCPP=1",
448
+ "-DFOLLY_CFG_NO_COROUTINES=1",
449
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
450
+ );
451
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
452
+ SDKROOT = iphoneos;
453
+ USE_HERMES = true;
454
+ VALIDATE_PRODUCT = YES;
455
+ };
456
+ name = Release;
457
+ };
458
+ /* End XCBuildConfiguration section */
459
+
460
+ /* Begin XCConfigurationList section */
461
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "MixpanelStarter" */ = {
462
+ isa = XCConfigurationList;
463
+ buildConfigurations = (
464
+ 13B07F941A680F5B00A75B9A /* Debug */,
465
+ 13B07F951A680F5B00A75B9A /* Release */,
466
+ );
467
+ defaultConfigurationIsVisible = 0;
468
+ defaultConfigurationName = Release;
469
+ };
470
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "MixpanelStarter" */ = {
471
+ isa = XCConfigurationList;
472
+ buildConfigurations = (
473
+ 83CBBA201A601CBA00E9B192 /* Debug */,
474
+ 83CBBA211A601CBA00E9B192 /* Release */,
475
+ );
476
+ defaultConfigurationIsVisible = 0;
477
+ defaultConfigurationName = Release;
478
+ };
479
+ /* End XCConfigurationList section */
480
+ };
481
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
482
+ }