@jmartins-tillster/analytics-react-native 2.21.3
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.
- package/.editorconfig +10 -0
- package/.eslintignore +11 -0
- package/.eslintrc.js +60 -0
- package/.gitattributes +4 -0
- package/.github/ISSUE_TEMPLATE/BUG_REPORT.md +23 -0
- package/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +18 -0
- package/.github/workflows/ci.yml +158 -0
- package/.github/workflows/create_jira.yml +41 -0
- package/.github/workflows/publish.yml +57 -0
- package/.husky/commit-msg +4 -0
- package/.husky/pre-commit +4 -0
- package/.prettierrc.js +7 -0
- package/.yarnrc.yml +2 -0
- package/CODE_OF_CONDUCT.md +84 -0
- package/CONTRIBUTING.md +141 -0
- package/LICENSE +21 -0
- package/MIGRATION_GUIDE.md +185 -0
- package/README.md +944 -0
- package/babel.config.js +3 -0
- package/commitlint.config.js +13 -0
- package/examples/AnalyticsReactNativeExample/.bundle/config +2 -0
- package/examples/AnalyticsReactNativeExample/.eslintrc.js +4 -0
- package/examples/AnalyticsReactNativeExample/.prettierrc.js +7 -0
- package/examples/AnalyticsReactNativeExample/.watchmanconfig +1 -0
- package/examples/AnalyticsReactNativeExample/App.tsx +164 -0
- package/examples/AnalyticsReactNativeExample/Gemfile +9 -0
- package/examples/AnalyticsReactNativeExample/Gemfile.lock +106 -0
- package/examples/AnalyticsReactNativeExample/Home.tsx +206 -0
- package/examples/AnalyticsReactNativeExample/Modal.tsx +25 -0
- package/examples/AnalyticsReactNativeExample/README.md +79 -0
- package/examples/AnalyticsReactNativeExample/SecondPage.tsx +25 -0
- package/examples/AnalyticsReactNativeExample/android/app/build.gradle +119 -0
- package/examples/AnalyticsReactNativeExample/android/app/debug.keystore +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/proguard-rules.pro +10 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/debug/AndroidManifest.xml +9 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/AndroidManifest.xml +26 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/java/com/analyticsreactnativeexample/MainActivity.kt +22 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/java/com/analyticsreactnativeexample/MainApplication.kt +44 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/AnalyticsReactNativeExample/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/AnalyticsReactNativeExample/android/build.gradle +21 -0
- package/examples/AnalyticsReactNativeExample/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/AnalyticsReactNativeExample/android/gradle/wrapper/gradle-wrapper.properties +8 -0
- package/examples/AnalyticsReactNativeExample/android/gradle.properties +39 -0
- package/examples/AnalyticsReactNativeExample/android/gradlew +252 -0
- package/examples/AnalyticsReactNativeExample/android/gradlew.bat +94 -0
- package/examples/AnalyticsReactNativeExample/android/settings.gradle +6 -0
- package/examples/AnalyticsReactNativeExample/app.json +4 -0
- package/examples/AnalyticsReactNativeExample/babel.config.js +3 -0
- package/examples/AnalyticsReactNativeExample/index.js +9 -0
- package/examples/AnalyticsReactNativeExample/ios/.xcode.env +11 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/AppDelegate.h +6 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/AppDelegate.mm +31 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Images.xcassets/Contents.json +6 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Info.plist +52 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/LaunchScreen.storyboard +47 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/PrivacyInfo.xcprivacy +37 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/main.m +10 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcodeproj/project.pbxproj +705 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcodeproj/xcshareddata/xcschemes/AnalyticsReactNativeExample.xcscheme +88 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExampleTests/AnalyticsReactNativeExampleTests.m +66 -0
- package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExampleTests/Info.plist +24 -0
- package/examples/AnalyticsReactNativeExample/ios/Podfile +40 -0
- package/examples/AnalyticsReactNativeExample/ios/Podfile.lock +1961 -0
- package/examples/AnalyticsReactNativeExample/metro.config.js +11 -0
- package/examples/AnalyticsReactNativeExample/package.json +55 -0
- package/examples/AnalyticsReactNativeExample/plugins/ConsentManager.tsx +75 -0
- package/examples/AnalyticsReactNativeExample/plugins/Logger.ts +16 -0
- package/examples/AnalyticsReactNativeExample/react-native.config.js +9 -0
- package/examples/AnalyticsReactNativeExample/tsconfig.json +3 -0
- package/examples/AnalyticsReactNativeExample/workspace.js +5 -0
- package/examples/AnalyticsReactNativeExample/yarn.lock +11110 -0
- package/examples/E2E/.bundle/config +2 -0
- package/examples/E2E/.detoxrc.js +96 -0
- package/examples/E2E/.mise.toml +5 -0
- package/examples/E2E/.prettierrc.js +7 -0
- package/examples/E2E/.watchmanconfig +1 -0
- package/examples/E2E/App.tsx +176 -0
- package/examples/E2E/Gemfile +7 -0
- package/examples/E2E/Gemfile.lock +101 -0
- package/examples/E2E/Home.tsx +206 -0
- package/examples/E2E/Modal.tsx +25 -0
- package/examples/E2E/README.md +79 -0
- package/examples/E2E/SecondPage.tsx +25 -0
- package/examples/E2E/android/app/build.gradle +128 -0
- package/examples/E2E/android/app/debug.keystore +0 -0
- package/examples/E2E/android/app/proguard-rules.pro +10 -0
- package/examples/E2E/android/app/src/androidTest/java/com/segmentanalyticsreactnativeexample/DetoxTest.java +29 -0
- package/examples/E2E/android/app/src/debug/AndroidManifest.xml +13 -0
- package/examples/E2E/android/app/src/debug/java/com/analyticsreactnativeexample/ReactNativeFlipper.java +75 -0
- package/examples/E2E/android/app/src/main/AndroidManifest.xml +26 -0
- package/examples/E2E/android/app/src/main/java/com/analyticsreactnativeexample/MainActivity.java +32 -0
- package/examples/E2E/android/app/src/main/java/com/analyticsreactnativeexample/MainApplication.java +62 -0
- package/examples/E2E/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/examples/E2E/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/E2E/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/E2E/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/E2E/android/app/src/main/res/xml/network_security_config.xml +7 -0
- package/examples/E2E/android/app/src/release/java/com/analyticsreactnativeexample/ReactNativeFlipper.java +20 -0
- package/examples/E2E/android/build.gradle +37 -0
- package/examples/E2E/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/E2E/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/examples/E2E/android/gradle.properties +44 -0
- package/examples/E2E/android/gradlew +244 -0
- package/examples/E2E/android/gradlew.bat +92 -0
- package/examples/E2E/android/settings.gradle +4 -0
- package/examples/E2E/app.json +4 -0
- package/examples/E2E/babel.config.js +14 -0
- package/examples/E2E/e2e/jest.config.js +13 -0
- package/examples/E2E/e2e/main.e2e.js +192 -0
- package/examples/E2E/e2e/matchers.js +34 -0
- package/examples/E2E/e2e/mockServer.js +56 -0
- package/examples/E2E/index.js +11 -0
- package/examples/E2E/ios/.xcode.env +11 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/AppDelegate.h +6 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/AppDelegate.mm +26 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/Images.xcassets/Contents.json +6 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/Info.plist +55 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/LaunchScreen.storyboard +47 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E/main.m +10 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E.xcodeproj/project.pbxproj +721 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2E.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2ETests/AnalyticsReactNativeExampleTests.m +66 -0
- package/examples/E2E/ios/AnalyticsReactNativeE2ETests/Info.plist +24 -0
- package/examples/E2E/ios/Podfile +62 -0
- package/examples/E2E/ios/Podfile.lock +763 -0
- package/examples/E2E/jest.config.js +3 -0
- package/examples/E2E/metro.config.js +45 -0
- package/examples/E2E/package.json +65 -0
- package/examples/E2E/plugins/Logger.ts +16 -0
- package/examples/E2E/react-native.config.js +7 -0
- package/examples/E2E/workspace.js +5 -0
- package/examples/E2E/yarn.lock +10898 -0
- package/examples/E2E-73/.bundle/config +2 -0
- package/examples/E2E-73/.detoxrc.js +96 -0
- package/examples/E2E-73/.eslintrc.js +4 -0
- package/examples/E2E-73/.mise.toml +5 -0
- package/examples/E2E-73/.prettierrc.js +7 -0
- package/examples/E2E-73/.watchmanconfig +1 -0
- package/examples/E2E-73/App.tsx +175 -0
- package/examples/E2E-73/Gemfile +7 -0
- package/examples/E2E-73/Gemfile.lock +99 -0
- package/examples/E2E-73/Home.tsx +206 -0
- package/examples/E2E-73/Modal.tsx +25 -0
- package/examples/E2E-73/README.md +79 -0
- package/examples/E2E-73/SecondPage.tsx +25 -0
- package/examples/E2E-73/android/app/build.gradle +119 -0
- package/examples/E2E-73/android/app/debug.keystore +0 -0
- package/examples/E2E-73/android/app/proguard-rules.pro +10 -0
- package/examples/E2E-73/android/app/src/debug/AndroidManifest.xml +9 -0
- package/examples/E2E-73/android/app/src/main/AndroidManifest.xml +25 -0
- package/examples/E2E-73/android/app/src/main/java/com/analyticsreactnativee2e73/MainActivity.kt +22 -0
- package/examples/E2E-73/android/app/src/main/java/com/analyticsreactnativee2e73/MainApplication.kt +45 -0
- package/examples/E2E-73/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/E2E-73/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/E2E-73/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/E2E-73/android/build.gradle +21 -0
- package/examples/E2E-73/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/E2E-73/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/E2E-73/android/gradle.properties +41 -0
- package/examples/E2E-73/android/gradlew +249 -0
- package/examples/E2E-73/android/gradlew.bat +92 -0
- package/examples/E2E-73/android/settings.gradle +4 -0
- package/examples/E2E-73/app.json +4 -0
- package/examples/E2E-73/babel.config.js +14 -0
- package/examples/E2E-73/e2e/jest.config.js +13 -0
- package/examples/E2E-73/e2e/main.e2e.js +192 -0
- package/examples/E2E-73/e2e/matchers.js +34 -0
- package/examples/E2E-73/e2e/mockServer.js +56 -0
- package/examples/E2E-73/index.js +9 -0
- package/examples/E2E-73/ios/.xcode.env +11 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/AppDelegate.h +6 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/AppDelegate.mm +31 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Images.xcassets/Contents.json +6 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Info.plist +51 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/LaunchScreen.storyboard +47 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/main.m +10 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcodeproj/project.pbxproj +700 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcodeproj/xcshareddata/xcschemes/AnalyticsReactNativeE2E73.xcscheme +88 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73Tests/AnalyticsReactNativeE2E73Tests.m +66 -0
- package/examples/E2E-73/ios/AnalyticsReactNativeE2E73Tests/Info.plist +24 -0
- package/examples/E2E-73/ios/Podfile +55 -0
- package/examples/E2E-73/ios/Podfile.lock +1425 -0
- package/examples/E2E-73/jest.config.js +3 -0
- package/examples/E2E-73/metro.config.js +45 -0
- package/examples/E2E-73/package.json +62 -0
- package/examples/E2E-73/plugins/Logger.ts +16 -0
- package/examples/E2E-73/react-native.config.js +12 -0
- package/examples/E2E-73/tsconfig.json +3 -0
- package/examples/E2E-73/workspace.js +5 -0
- package/examples/E2E-73/yarn.lock +10789 -0
- package/examples/README.md +142 -0
- package/examples/linkHelper.js +45 -0
- package/jest.config.js +7 -0
- package/multi-release.config.js +7 -0
- package/package.json +79 -0
- package/packages/core/CHANGELOG.md +274 -0
- package/packages/core/LICENSE +21 -0
- package/packages/core/README.md +3 -0
- package/packages/core/android/build.gradle +96 -0
- package/packages/core/android/gradle.properties +5 -0
- package/packages/core/android/src/main/AndroidManifest.xml +4 -0
- package/packages/core/android/src/main/AndroidManifestNew.xml +3 -0
- package/packages/core/android/src/main/java/com/segmentanalyticsreactnative/AnalyticsReactNativeModule.kt +265 -0
- package/packages/core/android/src/main/java/com/segmentanalyticsreactnative/AnalyticsReactNativePackage.kt +43 -0
- package/packages/core/babel.config.js +3 -0
- package/packages/core/constants-generator.js +17 -0
- package/packages/core/ios/AnalyticsReactNative-Bridging-Header.h +1 -0
- package/packages/core/ios/AnalyticsReactNative.m +7 -0
- package/packages/core/ios/AnalyticsReactNative.swift +142 -0
- package/packages/core/ios/AnalyticsReactNative.xcodeproj/project.pbxproj +281 -0
- package/packages/core/ios/PrivacyInfo.xcprivacy +70 -0
- package/packages/core/jest.config.js +5 -0
- package/packages/core/package.json +85 -0
- package/packages/core/release.config.js +3 -0
- package/packages/core/segment-analytics-react-native.podspec +35 -0
- package/packages/core/src/__tests__/__snapshots__/mapTransform.test.ts.snap +20 -0
- package/packages/core/src/__tests__/analytics.test.ts +252 -0
- package/packages/core/src/__tests__/api.test.ts +91 -0
- package/packages/core/src/__tests__/client.test.ts +27 -0
- package/packages/core/src/__tests__/context.test.ts +122 -0
- package/packages/core/src/__tests__/events.test.ts +234 -0
- package/packages/core/src/__tests__/internal/checkInstalledVersion.test.ts +221 -0
- package/packages/core/src/__tests__/internal/fetchSettings.test.ts +438 -0
- package/packages/core/src/__tests__/internal/handleAppStateChange.test.ts +178 -0
- package/packages/core/src/__tests__/internal/trackDeepLinks.test.ts +121 -0
- package/packages/core/src/__tests__/logger.test.ts +83 -0
- package/packages/core/src/__tests__/mapTransform.test.ts +63 -0
- package/packages/core/src/__tests__/methods/alias.test.ts +89 -0
- package/packages/core/src/__tests__/methods/flush.test.ts +120 -0
- package/packages/core/src/__tests__/methods/group.test.ts +48 -0
- package/packages/core/src/__tests__/methods/identify.test.ts +132 -0
- package/packages/core/src/__tests__/methods/process.test.ts +162 -0
- package/packages/core/src/__tests__/methods/screen.test.ts +48 -0
- package/packages/core/src/__tests__/methods/track.test.ts +49 -0
- package/packages/core/src/__tests__/timeline.test.ts +130 -0
- package/packages/core/src/__tests__/util.test.ts +200 -0
- package/packages/core/src/analytics.ts +1030 -0
- package/packages/core/src/api.ts +23 -0
- package/packages/core/src/client.tsx +76 -0
- package/packages/core/src/constants.ts +18 -0
- package/packages/core/src/context.ts +107 -0
- package/packages/core/src/errors.ts +123 -0
- package/packages/core/src/events.ts +75 -0
- package/packages/core/src/flushPolicies/__tests__/background-flush-policy.test.ts +39 -0
- package/packages/core/src/flushPolicies/__tests__/count-flush-policy.test.ts +28 -0
- package/packages/core/src/flushPolicies/__tests__/flush-policy-executer.test.ts +85 -0
- package/packages/core/src/flushPolicies/__tests__/timer-flush-policy.test.ts +30 -0
- package/packages/core/src/flushPolicies/background-flush-policy.ts +21 -0
- package/packages/core/src/flushPolicies/count-flush-policy.ts +31 -0
- package/packages/core/src/flushPolicies/flush-policy-executer.ts +100 -0
- package/packages/core/src/flushPolicies/index.ts +5 -0
- package/packages/core/src/flushPolicies/startup-flush-policy.ts +20 -0
- package/packages/core/src/flushPolicies/timer-flush-policy.ts +45 -0
- package/packages/core/src/flushPolicies/types.ts +93 -0
- package/packages/core/src/index.ts +28 -0
- package/packages/core/src/logger.ts +37 -0
- package/packages/core/src/mapTransform.ts +48 -0
- package/packages/core/src/plugin.ts +212 -0
- package/packages/core/src/plugins/ConsentPlugin.ts +200 -0
- package/packages/core/src/plugins/DestinationMetadataEnrichment.ts +67 -0
- package/packages/core/src/plugins/QueueFlushingPlugin.ts +149 -0
- package/packages/core/src/plugins/SegmentDestination.ts +153 -0
- package/packages/core/src/plugins/__tests__/QueueFlushingPlugin.test.ts +143 -0
- package/packages/core/src/plugins/__tests__/SegmentDestination.test.ts +549 -0
- package/packages/core/src/plugins/__tests__/consent/consentNotEnabledAtSegment.test.ts +123 -0
- package/packages/core/src/plugins/__tests__/consent/destinationMultipleCategories.test.ts +147 -0
- package/packages/core/src/plugins/__tests__/consent/idfa.test.ts +101 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/ConsentNotEnabledAtSegment.json +70 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/DestinationsMultipleCategories.json +73 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/NoUnmappedDestinations.json +105 -0
- package/packages/core/src/plugins/__tests__/consent/mockSettings/UnmappedDestinations.json +101 -0
- package/packages/core/src/plugins/__tests__/consent/noUnmapped.test.ts +234 -0
- package/packages/core/src/plugins/__tests__/consent/unmapped.test.ts +265 -0
- package/packages/core/src/plugins/__tests__/consent/utils.ts +75 -0
- package/packages/core/src/storage/__tests__/sovranStorage.test.ts +153 -0
- package/packages/core/src/storage/helpers.ts +25 -0
- package/packages/core/src/storage/index.ts +3 -0
- package/packages/core/src/storage/sovranStorage.ts +558 -0
- package/packages/core/src/storage/types.ts +106 -0
- package/packages/core/src/test-helpers/index.ts +7 -0
- package/packages/core/src/test-helpers/mockDestinationPlugin.ts +7 -0
- package/packages/core/src/test-helpers/mockEventStore.ts +35 -0
- package/packages/core/src/test-helpers/mockLogger.ts +10 -0
- package/packages/core/src/test-helpers/mockSegmentStore.ts +266 -0
- package/packages/core/src/test-helpers/mockTimeline.ts +9 -0
- package/packages/core/src/test-helpers/setupSegmentClient.ts +59 -0
- package/packages/core/src/test-helpers/utils.ts +23 -0
- package/packages/core/src/timeline.ts +136 -0
- package/packages/core/src/types.ts +392 -0
- package/packages/core/src/util.ts +288 -0
- package/packages/core/src/uuid.ts +7 -0
- package/packages/core/tsconfig.json +10 -0
- package/packages/core/tsconfig.linter.json +11 -0
- package/packages/plugins/plugin-adjust/CHANGELOG.md +60 -0
- package/packages/plugins/plugin-adjust/LICENSE +21 -0
- package/packages/plugins/plugin-adjust/README.md +72 -0
- package/packages/plugins/plugin-adjust/babel.config.js +3 -0
- package/packages/plugins/plugin-adjust/jest.config.js +5 -0
- package/packages/plugins/plugin-adjust/package.json +72 -0
- package/packages/plugins/plugin-adjust/release.config.js +3 -0
- package/packages/plugins/plugin-adjust/src/AdjustPlugin.tsx +92 -0
- package/packages/plugins/plugin-adjust/src/index.ts +1 -0
- package/packages/plugins/plugin-adjust/src/methods/__mocks__/react-native-adjust.ts +19 -0
- package/packages/plugins/plugin-adjust/src/methods/__tests__/identify.test.ts +34 -0
- package/packages/plugins/plugin-adjust/src/methods/__tests__/reset.test.ts +15 -0
- package/packages/plugins/plugin-adjust/src/methods/__tests__/track.test.ts +148 -0
- package/packages/plugins/plugin-adjust/src/methods/identify.ts +14 -0
- package/packages/plugins/plugin-adjust/src/methods/reset.ts +9 -0
- package/packages/plugins/plugin-adjust/src/methods/track.ts +47 -0
- package/packages/plugins/plugin-adjust/src/util.ts +29 -0
- package/packages/plugins/plugin-adjust/tsconfig.json +10 -0
- package/packages/plugins/plugin-advertising-id/CHANGELOG.md +101 -0
- package/packages/plugins/plugin-advertising-id/CONTRIBUTING.md +196 -0
- package/packages/plugins/plugin-advertising-id/LICENSE +21 -0
- package/packages/plugins/plugin-advertising-id/README.md +40 -0
- package/packages/plugins/plugin-advertising-id/android/build.gradle +96 -0
- package/packages/plugins/plugin-advertising-id/android/gradle.properties +5 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/AndroidManifest.xml +4 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/AndroidManifestNew.xml +3 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/java/com/reactnativeanalyticsreactnativepluginadvertisingid/AnalyticsReactNativePluginAdvertisingIdModule.kt +64 -0
- package/packages/plugins/plugin-advertising-id/android/src/main/java/com/reactnativeanalyticsreactnativepluginadvertisingid/AnalyticsReactNativePluginAdvertisingIdPackage.kt +17 -0
- package/packages/plugins/plugin-advertising-id/babel.config.js +3 -0
- package/packages/plugins/plugin-advertising-id/jest.config.js +5 -0
- package/packages/plugins/plugin-advertising-id/package.json +70 -0
- package/packages/plugins/plugin-advertising-id/release.config.js +3 -0
- package/packages/plugins/plugin-advertising-id/src/AdvertisingIdPlugin.ts +172 -0
- package/packages/plugins/plugin-advertising-id/src/index.ts +1 -0
- package/packages/plugins/plugin-advertising-id/src/types.ts +3 -0
- package/packages/plugins/plugin-advertising-id/tsconfig.json +10 -0
- package/packages/plugins/plugin-amplitudeSession/CHANGELOG.md +46 -0
- package/packages/plugins/plugin-amplitudeSession/LICENSE +21 -0
- package/packages/plugins/plugin-amplitudeSession/README.md +66 -0
- package/packages/plugins/plugin-amplitudeSession/babel.config.js +3 -0
- package/packages/plugins/plugin-amplitudeSession/jest.config.js +5 -0
- package/packages/plugins/plugin-amplitudeSession/package.json +71 -0
- package/packages/plugins/plugin-amplitudeSession/release.config.js +3 -0
- package/packages/plugins/plugin-amplitudeSession/src/AmplitudeSessionPlugin.tsx +327 -0
- package/packages/plugins/plugin-amplitudeSession/src/__tests__/AmplitudeSessionPlugin.test.ts +769 -0
- package/packages/plugins/plugin-amplitudeSession/src/index.ts +1 -0
- package/packages/plugins/plugin-amplitudeSession/tsconfig.json +10 -0
- package/packages/plugins/plugin-appsflyer/CHANGELOG.md +64 -0
- package/packages/plugins/plugin-appsflyer/LICENSE +21 -0
- package/packages/plugins/plugin-appsflyer/README.md +90 -0
- package/packages/plugins/plugin-appsflyer/babel.config.js +3 -0
- package/packages/plugins/plugin-appsflyer/jest.config.js +5 -0
- package/packages/plugins/plugin-appsflyer/package.json +74 -0
- package/packages/plugins/plugin-appsflyer/release.config.js +3 -0
- package/packages/plugins/plugin-appsflyer/src/AppsflyerPlugin.tsx +218 -0
- package/packages/plugins/plugin-appsflyer/src/__tests__/AppsflyerPlugin.test.ts +20 -0
- package/packages/plugins/plugin-appsflyer/src/index.ts +1 -0
- package/packages/plugins/plugin-appsflyer/src/methods/__mocks__/react-native-appsflyer.ts +11 -0
- package/packages/plugins/plugin-appsflyer/src/methods/__tests__/identify.test.ts +57 -0
- package/packages/plugins/plugin-appsflyer/src/methods/__tests__/track.test.ts +99 -0
- package/packages/plugins/plugin-appsflyer/src/methods/identify.ts +42 -0
- package/packages/plugins/plugin-appsflyer/src/methods/track.ts +61 -0
- package/packages/plugins/plugin-appsflyer/src/types.ts +9 -0
- package/packages/plugins/plugin-appsflyer/tsconfig.json +10 -0
- package/packages/plugins/plugin-branch/CHANGELOG.md +51 -0
- package/packages/plugins/plugin-branch/LICENSE +21 -0
- package/packages/plugins/plugin-branch/README.md +71 -0
- package/packages/plugins/plugin-branch/babel.config.js +3 -0
- package/packages/plugins/plugin-branch/jest.config.js +5 -0
- package/packages/plugins/plugin-branch/package.json +74 -0
- package/packages/plugins/plugin-branch/release.config.js +3 -0
- package/packages/plugins/plugin-branch/src/BranchPlugin.ts +42 -0
- package/packages/plugins/plugin-branch/src/index.ts +1 -0
- package/packages/plugins/plugin-branch/src/methods/__mocks__/react-native-branch.ts +16 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/alias.test.ts +23 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/identify.test.ts +23 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/screen.test.ts +38 -0
- package/packages/plugins/plugin-branch/src/methods/__tests__/track.test.ts +73 -0
- package/packages/plugins/plugin-branch/src/methods/alias.ts +9 -0
- package/packages/plugins/plugin-branch/src/methods/identify.ts +9 -0
- package/packages/plugins/plugin-branch/src/methods/parameterMapping.ts +109 -0
- package/packages/plugins/plugin-branch/src/methods/reset.ts +5 -0
- package/packages/plugins/plugin-branch/src/methods/screen.ts +17 -0
- package/packages/plugins/plugin-branch/src/methods/track.ts +18 -0
- package/packages/plugins/plugin-branch/src/methods/util.ts +64 -0
- package/packages/plugins/plugin-branch/tsconfig.json +10 -0
- package/packages/plugins/plugin-braze/CHANGELOG.md +101 -0
- package/packages/plugins/plugin-braze/LICENSE +21 -0
- package/packages/plugins/plugin-braze/README.md +72 -0
- package/packages/plugins/plugin-braze/babel.config.js +3 -0
- package/packages/plugins/plugin-braze/jest.config.js +5 -0
- package/packages/plugins/plugin-braze/package.json +74 -0
- package/packages/plugins/plugin-braze/release.config.js +3 -0
- package/packages/plugins/plugin-braze/src/BrazePlugin.tsx +346 -0
- package/packages/plugins/plugin-braze/src/index.ts +1 -0
- package/packages/plugins/plugin-braze/src/methods/__mocks__/@braze/react-native-sdk.ts +31 -0
- package/packages/plugins/plugin-braze/src/methods/__tests__/flush.test.ts +15 -0
- package/packages/plugins/plugin-braze/src/methods/__tests__/identify.test.ts +114 -0
- package/packages/plugins/plugin-braze/src/methods/__tests__/track.test.ts +321 -0
- package/packages/plugins/plugin-braze/src/methods/flush.ts +5 -0
- package/packages/plugins/plugin-braze/tsconfig.json +10 -0
- package/packages/plugins/plugin-braze-middleware/CHANGELOG.md +32 -0
- package/packages/plugins/plugin-braze-middleware/LICENSE +21 -0
- package/packages/plugins/plugin-braze-middleware/README.md +67 -0
- package/packages/plugins/plugin-braze-middleware/babel.config.js +3 -0
- package/packages/plugins/plugin-braze-middleware/jest.config.js +5 -0
- package/packages/plugins/plugin-braze-middleware/package.json +72 -0
- package/packages/plugins/plugin-braze-middleware/release.config.js +3 -0
- package/packages/plugins/plugin-braze-middleware/src/BrazeMiddlewarePlugin.tsx +38 -0
- package/packages/plugins/plugin-braze-middleware/src/index.ts +1 -0
- package/packages/plugins/plugin-braze-middleware/tsconfig.json +10 -0
- package/packages/plugins/plugin-clevertap/CHANGELOG.md +32 -0
- package/packages/plugins/plugin-clevertap/LICENSE +21 -0
- package/packages/plugins/plugin-clevertap/README.md +71 -0
- package/packages/plugins/plugin-clevertap/babel.config.js +3 -0
- package/packages/plugins/plugin-clevertap/jest.config.js +5 -0
- package/packages/plugins/plugin-clevertap/package.json +72 -0
- package/packages/plugins/plugin-clevertap/release.config.js +3 -0
- package/packages/plugins/plugin-clevertap/src/ClevertapPlugin.ts +75 -0
- package/packages/plugins/plugin-clevertap/src/__mocks__/clevertap-react-native.ts +5 -0
- package/packages/plugins/plugin-clevertap/src/__tests__/ClevertapPlugin.test.ts +164 -0
- package/packages/plugins/plugin-clevertap/src/index.ts +1 -0
- package/packages/plugins/plugin-clevertap/src/parameterMapping.ts +19 -0
- package/packages/plugins/plugin-clevertap/tsconfig.json +10 -0
- package/packages/plugins/plugin-destination-filters/CHANGELOG.md +39 -0
- package/packages/plugins/plugin-destination-filters/LICENSE +21 -0
- package/packages/plugins/plugin-destination-filters/README.md +71 -0
- package/packages/plugins/plugin-destination-filters/babel.config.js +3 -0
- package/packages/plugins/plugin-destination-filters/jest.config.js +5 -0
- package/packages/plugins/plugin-destination-filters/package.json +77 -0
- package/packages/plugins/plugin-destination-filters/release.config.js +3 -0
- package/packages/plugins/plugin-destination-filters/src/DestinationFilters.ts +90 -0
- package/packages/plugins/plugin-destination-filters/src/__tests__/DestinationFilters.test.ts +102 -0
- package/packages/plugins/plugin-destination-filters/src/index.tsx +1 -0
- package/packages/plugins/plugin-destination-filters/tsconfig.json +10 -0
- package/packages/plugins/plugin-device-token/CHANGELOG.md +71 -0
- package/packages/plugins/plugin-device-token/LICENSE +21 -0
- package/packages/plugins/plugin-device-token/README.md +98 -0
- package/packages/plugins/plugin-device-token/babel.config.js +3 -0
- package/packages/plugins/plugin-device-token/jest.config.js +5 -0
- package/packages/plugins/plugin-device-token/package.json +76 -0
- package/packages/plugins/plugin-device-token/release.config.js +3 -0
- package/packages/plugins/plugin-device-token/src/DeviceTokenPlugin.tsx +94 -0
- package/packages/plugins/plugin-device-token/src/index.ts +1 -0
- package/packages/plugins/plugin-device-token/src/methods/___tests__/DeviceTokenPlugin.test.ts +94 -0
- package/packages/plugins/plugin-device-token/tsconfig.json +10 -0
- package/packages/plugins/plugin-facebook-app-events/CHANGELOG.md +78 -0
- package/packages/plugins/plugin-facebook-app-events/LICENSE +21 -0
- package/packages/plugins/plugin-facebook-app-events/README.md +73 -0
- package/packages/plugins/plugin-facebook-app-events/babel.config.js +3 -0
- package/packages/plugins/plugin-facebook-app-events/jest.config.js +5 -0
- package/packages/plugins/plugin-facebook-app-events/package.json +72 -0
- package/packages/plugins/plugin-facebook-app-events/release.config.js +3 -0
- package/packages/plugins/plugin-facebook-app-events/src/FacebookAppEventsPlugin.ts +192 -0
- package/packages/plugins/plugin-facebook-app-events/src/__tests__/FacebookAppEventsPlugin.test.ts +284 -0
- package/packages/plugins/plugin-facebook-app-events/src/index.ts +1 -0
- package/packages/plugins/plugin-facebook-app-events/src/methods/__tests__/screen.test.ts +33 -0
- package/packages/plugins/plugin-facebook-app-events/src/methods/screen.ts +35 -0
- package/packages/plugins/plugin-facebook-app-events/src/parameterMapping.ts +46 -0
- package/packages/plugins/plugin-facebook-app-events/src/utils.ts +12 -0
- package/packages/plugins/plugin-facebook-app-events/tsconfig.json +10 -0
- package/packages/plugins/plugin-firebase/CHANGELOG.md +102 -0
- package/packages/plugins/plugin-firebase/LICENSE +21 -0
- package/packages/plugins/plugin-firebase/README.md +72 -0
- package/packages/plugins/plugin-firebase/babel.config.js +3 -0
- package/packages/plugins/plugin-firebase/jest.config.js +5 -0
- package/packages/plugins/plugin-firebase/package.json +74 -0
- package/packages/plugins/plugin-firebase/release.config.js +3 -0
- package/packages/plugins/plugin-firebase/src/FirebasePlugin.tsx +96 -0
- package/packages/plugins/plugin-firebase/src/index.ts +1 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/identify.test.ts +73 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/reset.test.ts +20 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/screen.test.ts +33 -0
- package/packages/plugins/plugin-firebase/src/methods/___tests__/track.test.ts +85 -0
- package/packages/plugins/plugin-firebase/src/methods/parameterMapping.ts +45 -0
- package/packages/plugins/plugin-firebase/src/methods/reset.ts +5 -0
- package/packages/plugins/plugin-firebase/src/methods/screen.ts +12 -0
- package/packages/plugins/plugin-firebase/src/methods/track.ts +26 -0
- package/packages/plugins/plugin-firebase/tsconfig.json +10 -0
- package/packages/plugins/plugin-idfa/CHANGELOG.md +62 -0
- package/packages/plugins/plugin-idfa/LICENSE +21 -0
- package/packages/plugins/plugin-idfa/README.md +105 -0
- package/packages/plugins/plugin-idfa/babel.config.js +3 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa-Bridging-Header.h +2 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.m +11 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.swift +68 -0
- package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.xcodeproj/project.pbxproj +293 -0
- package/packages/plugins/plugin-idfa/jest.config.js +5 -0
- package/packages/plugins/plugin-idfa/package.json +70 -0
- package/packages/plugins/plugin-idfa/release.config.js +3 -0
- package/packages/plugins/plugin-idfa/segment-analytics-react-native-plugin-idfa.podspec +19 -0
- package/packages/plugins/plugin-idfa/src/AnalyticsReactNativePluginIdfa.e2e.mock.ts +12 -0
- package/packages/plugins/plugin-idfa/src/AnalyticsReactNativePluginIdfa.ts +18 -0
- package/packages/plugins/plugin-idfa/src/IdfaPlugin.tsx +80 -0
- package/packages/plugins/plugin-idfa/src/index.ts +1 -0
- package/packages/plugins/plugin-idfa/src/types.ts +13 -0
- package/packages/plugins/plugin-idfa/tsconfig.json +10 -0
- package/packages/plugins/plugin-mixpanel/CHANGELOG.md +73 -0
- package/packages/plugins/plugin-mixpanel/LICENSE +21 -0
- package/packages/plugins/plugin-mixpanel/README.md +71 -0
- package/packages/plugins/plugin-mixpanel/babel.config.js +3 -0
- package/packages/plugins/plugin-mixpanel/jest.config.js +5 -0
- package/packages/plugins/plugin-mixpanel/package.json +72 -0
- package/packages/plugins/plugin-mixpanel/release.config.js +3 -0
- package/packages/plugins/plugin-mixpanel/src/MixpanelPlugin.ts +106 -0
- package/packages/plugins/plugin-mixpanel/src/index.ts +1 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__mocks__/mixpanel-react-native.ts +67 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/MixpanelPlugin.test.ts +57 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/__helpers__/constants.ts +18 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/alias.test.ts +47 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/group.test.ts +49 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/identify.test.ts +103 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/screen.test.ts +119 -0
- package/packages/plugins/plugin-mixpanel/src/methods/__tests__/track.test.ts +110 -0
- package/packages/plugins/plugin-mixpanel/src/methods/alias.ts +28 -0
- package/packages/plugins/plugin-mixpanel/src/methods/group.ts +26 -0
- package/packages/plugins/plugin-mixpanel/src/methods/identify.ts +72 -0
- package/packages/plugins/plugin-mixpanel/src/methods/screen.ts +43 -0
- package/packages/plugins/plugin-mixpanel/src/methods/track.ts +60 -0
- package/packages/plugins/plugin-mixpanel/src/types.ts +15 -0
- package/packages/plugins/plugin-mixpanel/tsconfig.json +10 -0
- package/packages/plugins/plugin-onetrust/CHANGELOG.md +16 -0
- package/packages/plugins/plugin-onetrust/LICENSE +21 -0
- package/packages/plugins/plugin-onetrust/README.md +155 -0
- package/packages/plugins/plugin-onetrust/babel.config.js +3 -0
- package/packages/plugins/plugin-onetrust/jest.config.js +6 -0
- package/packages/plugins/plugin-onetrust/package.json +75 -0
- package/packages/plugins/plugin-onetrust/release.config.js +3 -0
- package/packages/plugins/plugin-onetrust/src/OneTrustProvider.ts +71 -0
- package/packages/plugins/plugin-onetrust/src/index.tsx +1 -0
- package/packages/plugins/plugin-onetrust/tsconfig.json +10 -0
- package/packages/shared/__mocks__/context.ts +35 -0
- package/packages/shared/__mocks__/react-native-get-random-values.ts +1 -0
- package/packages/shared/__mocks__/react-native.ts +53 -0
- package/packages/shared/__mocks__/uuid.ts +3 -0
- package/packages/shared/jest.config.base.js +38 -0
- package/packages/shared/package.json +19 -0
- package/packages/shared/src/setup.ts +7 -0
- package/packages/shared/tsconfig.json +15 -0
- package/packages/sovran/CHANGELOG.md +42 -0
- package/packages/sovran/CONTRIBUTING.md +196 -0
- package/packages/sovran/LICENSE +21 -0
- package/packages/sovran/README.md +174 -0
- package/packages/sovran/android/build.gradle +94 -0
- package/packages/sovran/android/gradle.properties +5 -0
- package/packages/sovran/android/src/main/AndroidManifest.xml +4 -0
- package/packages/sovran/android/src/main/AndroidManifestNew.xml +3 -0
- package/packages/sovran/android/src/main/java/com/reactnativesovran/Sovran.kt +45 -0
- package/packages/sovran/android/src/main/java/com/reactnativesovran/SovranModule.kt +55 -0
- package/packages/sovran/babel.config.js +3 -0
- package/packages/sovran/ios/Sovran-Bridging-Header.h +3 -0
- package/packages/sovran/ios/Sovran.m +8 -0
- package/packages/sovran/ios/Sovran.swift +67 -0
- package/packages/sovran/ios/Sovran.xcodeproj/project.pbxproj +279 -0
- package/packages/sovran/jest.config.js +5 -0
- package/packages/sovran/package.json +89 -0
- package/packages/sovran/release.config.js +3 -0
- package/packages/sovran/sovran-react-native.podspec +33 -0
- package/packages/sovran/src/__tests__/bridge.test.ts +39 -0
- package/packages/sovran/src/__tests__/index.test.tsx +1 -0
- package/packages/sovran/src/__tests__/store.test.ts +397 -0
- package/packages/sovran/src/bridge.ts +48 -0
- package/packages/sovran/src/index.tsx +52 -0
- package/packages/sovran/src/persistor/async-storage-persistor.ts +63 -0
- package/packages/sovran/src/persistor/index.ts +2 -0
- package/packages/sovran/src/persistor/persistor.ts +31 -0
- package/packages/sovran/src/store.ts +232 -0
- package/packages/sovran/tsconfig.json +9 -0
- package/release.config.js +13 -0
- package/tsconfig.json +44 -0
- package/tsconfig.linter.json +36 -0
|
@@ -0,0 +1,705 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
00E356F31AD99517003FC87E /* AnalyticsReactNativeExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* AnalyticsReactNativeExampleTests.m */; };
|
|
11
|
+
0C80B921A6F3F58F76C31292 /* libPods-AnalyticsReactNativeExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-AnalyticsReactNativeExample.a */; };
|
|
12
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
13
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
14
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
15
|
+
33206E77A58536BACD3787F0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
|
|
16
|
+
7699B88040F8A987B510C191 /* libPods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.a */; };
|
|
17
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
18
|
+
/* End PBXBuildFile section */
|
|
19
|
+
|
|
20
|
+
/* Begin PBXContainerItemProxy section */
|
|
21
|
+
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
|
22
|
+
isa = PBXContainerItemProxy;
|
|
23
|
+
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
24
|
+
proxyType = 1;
|
|
25
|
+
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
26
|
+
remoteInfo = AnalyticsReactNativeExample;
|
|
27
|
+
};
|
|
28
|
+
/* End PBXContainerItemProxy section */
|
|
29
|
+
|
|
30
|
+
/* Begin PBXFileReference section */
|
|
31
|
+
00E356EE1AD99517003FC87E /* AnalyticsReactNativeExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AnalyticsReactNativeExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
32
|
+
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
33
|
+
00E356F21AD99517003FC87E /* AnalyticsReactNativeExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AnalyticsReactNativeExampleTests.m; sourceTree = "<group>"; };
|
|
34
|
+
13B07F961A680F5B00A75B9A /* AnalyticsReactNativeExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AnalyticsReactNativeExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
35
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = AnalyticsReactNativeExample/AppDelegate.h; sourceTree = "<group>"; };
|
|
36
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = AnalyticsReactNativeExample/AppDelegate.mm; sourceTree = "<group>"; };
|
|
37
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = AnalyticsReactNativeExample/Images.xcassets; sourceTree = "<group>"; };
|
|
38
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = AnalyticsReactNativeExample/Info.plist; sourceTree = "<group>"; };
|
|
39
|
+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = AnalyticsReactNativeExample/main.m; sourceTree = "<group>"; };
|
|
40
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = AnalyticsReactNativeExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
41
|
+
19F6CBCC0A4E27FBF8BF4A61 /* libPods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
42
|
+
3B4392A12AC88292D35C810B /* Pods-AnalyticsReactNativeExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnalyticsReactNativeExample.debug.xcconfig"; path = "Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample.debug.xcconfig"; sourceTree = "<group>"; };
|
|
43
|
+
5709B34CF0A7D63546082F79 /* Pods-AnalyticsReactNativeExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnalyticsReactNativeExample.release.xcconfig"; path = "Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample.release.xcconfig"; sourceTree = "<group>"; };
|
|
44
|
+
5B7EB9410499542E8C5724F5 /* Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
45
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-AnalyticsReactNativeExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-AnalyticsReactNativeExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
46
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = AnalyticsReactNativeExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
47
|
+
89C6BE57DB24E9ADA2F236DE /* Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.release.xcconfig"; path = "Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
48
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
49
|
+
/* End PBXFileReference section */
|
|
50
|
+
|
|
51
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
52
|
+
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
|
53
|
+
isa = PBXFrameworksBuildPhase;
|
|
54
|
+
buildActionMask = 2147483647;
|
|
55
|
+
files = (
|
|
56
|
+
7699B88040F8A987B510C191 /* libPods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.a in Frameworks */,
|
|
57
|
+
);
|
|
58
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
59
|
+
};
|
|
60
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
61
|
+
isa = PBXFrameworksBuildPhase;
|
|
62
|
+
buildActionMask = 2147483647;
|
|
63
|
+
files = (
|
|
64
|
+
0C80B921A6F3F58F76C31292 /* libPods-AnalyticsReactNativeExample.a in Frameworks */,
|
|
65
|
+
);
|
|
66
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
67
|
+
};
|
|
68
|
+
/* End PBXFrameworksBuildPhase section */
|
|
69
|
+
|
|
70
|
+
/* Begin PBXGroup section */
|
|
71
|
+
00E356EF1AD99517003FC87E /* AnalyticsReactNativeExampleTests */ = {
|
|
72
|
+
isa = PBXGroup;
|
|
73
|
+
children = (
|
|
74
|
+
00E356F21AD99517003FC87E /* AnalyticsReactNativeExampleTests.m */,
|
|
75
|
+
00E356F01AD99517003FC87E /* Supporting Files */,
|
|
76
|
+
);
|
|
77
|
+
path = AnalyticsReactNativeExampleTests;
|
|
78
|
+
sourceTree = "<group>";
|
|
79
|
+
};
|
|
80
|
+
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
|
81
|
+
isa = PBXGroup;
|
|
82
|
+
children = (
|
|
83
|
+
00E356F11AD99517003FC87E /* Info.plist */,
|
|
84
|
+
);
|
|
85
|
+
name = "Supporting Files";
|
|
86
|
+
sourceTree = "<group>";
|
|
87
|
+
};
|
|
88
|
+
13B07FAE1A68108700A75B9A /* AnalyticsReactNativeExample */ = {
|
|
89
|
+
isa = PBXGroup;
|
|
90
|
+
children = (
|
|
91
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
92
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
|
93
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
94
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
95
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
96
|
+
13B07FB71A68108700A75B9A /* main.m */,
|
|
97
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
98
|
+
);
|
|
99
|
+
name = AnalyticsReactNativeExample;
|
|
100
|
+
sourceTree = "<group>";
|
|
101
|
+
};
|
|
102
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
103
|
+
isa = PBXGroup;
|
|
104
|
+
children = (
|
|
105
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
106
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-AnalyticsReactNativeExample.a */,
|
|
107
|
+
19F6CBCC0A4E27FBF8BF4A61 /* libPods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.a */,
|
|
108
|
+
);
|
|
109
|
+
name = Frameworks;
|
|
110
|
+
sourceTree = "<group>";
|
|
111
|
+
};
|
|
112
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
113
|
+
isa = PBXGroup;
|
|
114
|
+
children = (
|
|
115
|
+
);
|
|
116
|
+
name = Libraries;
|
|
117
|
+
sourceTree = "<group>";
|
|
118
|
+
};
|
|
119
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
120
|
+
isa = PBXGroup;
|
|
121
|
+
children = (
|
|
122
|
+
13B07FAE1A68108700A75B9A /* AnalyticsReactNativeExample */,
|
|
123
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
124
|
+
00E356EF1AD99517003FC87E /* AnalyticsReactNativeExampleTests */,
|
|
125
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
126
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
127
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
128
|
+
);
|
|
129
|
+
indentWidth = 2;
|
|
130
|
+
sourceTree = "<group>";
|
|
131
|
+
tabWidth = 2;
|
|
132
|
+
usesTabs = 0;
|
|
133
|
+
};
|
|
134
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
135
|
+
isa = PBXGroup;
|
|
136
|
+
children = (
|
|
137
|
+
13B07F961A680F5B00A75B9A /* AnalyticsReactNativeExample.app */,
|
|
138
|
+
00E356EE1AD99517003FC87E /* AnalyticsReactNativeExampleTests.xctest */,
|
|
139
|
+
);
|
|
140
|
+
name = Products;
|
|
141
|
+
sourceTree = "<group>";
|
|
142
|
+
};
|
|
143
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
144
|
+
isa = PBXGroup;
|
|
145
|
+
children = (
|
|
146
|
+
3B4392A12AC88292D35C810B /* Pods-AnalyticsReactNativeExample.debug.xcconfig */,
|
|
147
|
+
5709B34CF0A7D63546082F79 /* Pods-AnalyticsReactNativeExample.release.xcconfig */,
|
|
148
|
+
5B7EB9410499542E8C5724F5 /* Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.debug.xcconfig */,
|
|
149
|
+
89C6BE57DB24E9ADA2F236DE /* Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.release.xcconfig */,
|
|
150
|
+
);
|
|
151
|
+
path = Pods;
|
|
152
|
+
sourceTree = "<group>";
|
|
153
|
+
};
|
|
154
|
+
/* End PBXGroup section */
|
|
155
|
+
|
|
156
|
+
/* Begin PBXNativeTarget section */
|
|
157
|
+
00E356ED1AD99517003FC87E /* AnalyticsReactNativeExampleTests */ = {
|
|
158
|
+
isa = PBXNativeTarget;
|
|
159
|
+
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "AnalyticsReactNativeExampleTests" */;
|
|
160
|
+
buildPhases = (
|
|
161
|
+
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
|
|
162
|
+
00E356EA1AD99517003FC87E /* Sources */,
|
|
163
|
+
00E356EB1AD99517003FC87E /* Frameworks */,
|
|
164
|
+
00E356EC1AD99517003FC87E /* Resources */,
|
|
165
|
+
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
|
|
166
|
+
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
|
|
167
|
+
);
|
|
168
|
+
buildRules = (
|
|
169
|
+
);
|
|
170
|
+
dependencies = (
|
|
171
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
|
172
|
+
);
|
|
173
|
+
name = AnalyticsReactNativeExampleTests;
|
|
174
|
+
productName = AnalyticsReactNativeExampleTests;
|
|
175
|
+
productReference = 00E356EE1AD99517003FC87E /* AnalyticsReactNativeExampleTests.xctest */;
|
|
176
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
177
|
+
};
|
|
178
|
+
13B07F861A680F5B00A75B9A /* AnalyticsReactNativeExample */ = {
|
|
179
|
+
isa = PBXNativeTarget;
|
|
180
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "AnalyticsReactNativeExample" */;
|
|
181
|
+
buildPhases = (
|
|
182
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
|
183
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
184
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
185
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
186
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
187
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
|
188
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
|
189
|
+
);
|
|
190
|
+
buildRules = (
|
|
191
|
+
);
|
|
192
|
+
dependencies = (
|
|
193
|
+
);
|
|
194
|
+
name = AnalyticsReactNativeExample;
|
|
195
|
+
productName = AnalyticsReactNativeExample;
|
|
196
|
+
productReference = 13B07F961A680F5B00A75B9A /* AnalyticsReactNativeExample.app */;
|
|
197
|
+
productType = "com.apple.product-type.application";
|
|
198
|
+
};
|
|
199
|
+
/* End PBXNativeTarget section */
|
|
200
|
+
|
|
201
|
+
/* Begin PBXProject section */
|
|
202
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
203
|
+
isa = PBXProject;
|
|
204
|
+
attributes = {
|
|
205
|
+
LastUpgradeCheck = 1210;
|
|
206
|
+
TargetAttributes = {
|
|
207
|
+
00E356ED1AD99517003FC87E = {
|
|
208
|
+
CreatedOnToolsVersion = 6.2;
|
|
209
|
+
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
210
|
+
};
|
|
211
|
+
13B07F861A680F5B00A75B9A = {
|
|
212
|
+
LastSwiftMigration = 1120;
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "AnalyticsReactNativeExample" */;
|
|
217
|
+
compatibilityVersion = "Xcode 12.0";
|
|
218
|
+
developmentRegion = en;
|
|
219
|
+
hasScannedForEncodings = 0;
|
|
220
|
+
knownRegions = (
|
|
221
|
+
en,
|
|
222
|
+
Base,
|
|
223
|
+
);
|
|
224
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
225
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
226
|
+
projectDirPath = "";
|
|
227
|
+
projectRoot = "";
|
|
228
|
+
targets = (
|
|
229
|
+
13B07F861A680F5B00A75B9A /* AnalyticsReactNativeExample */,
|
|
230
|
+
00E356ED1AD99517003FC87E /* AnalyticsReactNativeExampleTests */,
|
|
231
|
+
);
|
|
232
|
+
};
|
|
233
|
+
/* End PBXProject section */
|
|
234
|
+
|
|
235
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
236
|
+
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
237
|
+
isa = PBXResourcesBuildPhase;
|
|
238
|
+
buildActionMask = 2147483647;
|
|
239
|
+
files = (
|
|
240
|
+
);
|
|
241
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
242
|
+
};
|
|
243
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
244
|
+
isa = PBXResourcesBuildPhase;
|
|
245
|
+
buildActionMask = 2147483647;
|
|
246
|
+
files = (
|
|
247
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
248
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
249
|
+
33206E77A58536BACD3787F0 /* PrivacyInfo.xcprivacy in Resources */,
|
|
250
|
+
);
|
|
251
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
252
|
+
};
|
|
253
|
+
/* End PBXResourcesBuildPhase section */
|
|
254
|
+
|
|
255
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
256
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
257
|
+
isa = PBXShellScriptBuildPhase;
|
|
258
|
+
buildActionMask = 2147483647;
|
|
259
|
+
files = (
|
|
260
|
+
);
|
|
261
|
+
inputPaths = (
|
|
262
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
263
|
+
"$(SRCROOT)/.xcode.env",
|
|
264
|
+
);
|
|
265
|
+
name = "Bundle React Native code and images";
|
|
266
|
+
outputPaths = (
|
|
267
|
+
);
|
|
268
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
269
|
+
shellPath = /bin/sh;
|
|
270
|
+
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";
|
|
271
|
+
};
|
|
272
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
273
|
+
isa = PBXShellScriptBuildPhase;
|
|
274
|
+
buildActionMask = 2147483647;
|
|
275
|
+
files = (
|
|
276
|
+
);
|
|
277
|
+
inputFileListPaths = (
|
|
278
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
279
|
+
);
|
|
280
|
+
name = "[CP] Embed Pods Frameworks";
|
|
281
|
+
outputFileListPaths = (
|
|
282
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
283
|
+
);
|
|
284
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
285
|
+
shellPath = /bin/sh;
|
|
286
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample-frameworks.sh\"\n";
|
|
287
|
+
showEnvVarsInLog = 0;
|
|
288
|
+
};
|
|
289
|
+
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
|
|
290
|
+
isa = PBXShellScriptBuildPhase;
|
|
291
|
+
buildActionMask = 2147483647;
|
|
292
|
+
files = (
|
|
293
|
+
);
|
|
294
|
+
inputFileListPaths = (
|
|
295
|
+
);
|
|
296
|
+
inputPaths = (
|
|
297
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
298
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
299
|
+
);
|
|
300
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
301
|
+
outputFileListPaths = (
|
|
302
|
+
);
|
|
303
|
+
outputPaths = (
|
|
304
|
+
"$(DERIVED_FILE_DIR)/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests-checkManifestLockResult.txt",
|
|
305
|
+
);
|
|
306
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
307
|
+
shellPath = /bin/sh;
|
|
308
|
+
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";
|
|
309
|
+
showEnvVarsInLog = 0;
|
|
310
|
+
};
|
|
311
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
312
|
+
isa = PBXShellScriptBuildPhase;
|
|
313
|
+
buildActionMask = 2147483647;
|
|
314
|
+
files = (
|
|
315
|
+
);
|
|
316
|
+
inputFileListPaths = (
|
|
317
|
+
);
|
|
318
|
+
inputPaths = (
|
|
319
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
320
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
321
|
+
);
|
|
322
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
323
|
+
outputFileListPaths = (
|
|
324
|
+
);
|
|
325
|
+
outputPaths = (
|
|
326
|
+
"$(DERIVED_FILE_DIR)/Pods-AnalyticsReactNativeExample-checkManifestLockResult.txt",
|
|
327
|
+
);
|
|
328
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
329
|
+
shellPath = /bin/sh;
|
|
330
|
+
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";
|
|
331
|
+
showEnvVarsInLog = 0;
|
|
332
|
+
};
|
|
333
|
+
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
|
|
334
|
+
isa = PBXShellScriptBuildPhase;
|
|
335
|
+
buildActionMask = 2147483647;
|
|
336
|
+
files = (
|
|
337
|
+
);
|
|
338
|
+
inputFileListPaths = (
|
|
339
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
340
|
+
);
|
|
341
|
+
name = "[CP] Embed Pods Frameworks";
|
|
342
|
+
outputFileListPaths = (
|
|
343
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
344
|
+
);
|
|
345
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
346
|
+
shellPath = /bin/sh;
|
|
347
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests-frameworks.sh\"\n";
|
|
348
|
+
showEnvVarsInLog = 0;
|
|
349
|
+
};
|
|
350
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
351
|
+
isa = PBXShellScriptBuildPhase;
|
|
352
|
+
buildActionMask = 2147483647;
|
|
353
|
+
files = (
|
|
354
|
+
);
|
|
355
|
+
inputFileListPaths = (
|
|
356
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
357
|
+
);
|
|
358
|
+
name = "[CP] Copy Pods Resources";
|
|
359
|
+
outputFileListPaths = (
|
|
360
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
361
|
+
);
|
|
362
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
363
|
+
shellPath = /bin/sh;
|
|
364
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample/Pods-AnalyticsReactNativeExample-resources.sh\"\n";
|
|
365
|
+
showEnvVarsInLog = 0;
|
|
366
|
+
};
|
|
367
|
+
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
|
|
368
|
+
isa = PBXShellScriptBuildPhase;
|
|
369
|
+
buildActionMask = 2147483647;
|
|
370
|
+
files = (
|
|
371
|
+
);
|
|
372
|
+
inputFileListPaths = (
|
|
373
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
374
|
+
);
|
|
375
|
+
name = "[CP] Copy Pods Resources";
|
|
376
|
+
outputFileListPaths = (
|
|
377
|
+
"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
378
|
+
);
|
|
379
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
380
|
+
shellPath = /bin/sh;
|
|
381
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests/Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests-resources.sh\"\n";
|
|
382
|
+
showEnvVarsInLog = 0;
|
|
383
|
+
};
|
|
384
|
+
/* End PBXShellScriptBuildPhase section */
|
|
385
|
+
|
|
386
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
387
|
+
00E356EA1AD99517003FC87E /* Sources */ = {
|
|
388
|
+
isa = PBXSourcesBuildPhase;
|
|
389
|
+
buildActionMask = 2147483647;
|
|
390
|
+
files = (
|
|
391
|
+
00E356F31AD99517003FC87E /* AnalyticsReactNativeExampleTests.m in Sources */,
|
|
392
|
+
);
|
|
393
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
394
|
+
};
|
|
395
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
396
|
+
isa = PBXSourcesBuildPhase;
|
|
397
|
+
buildActionMask = 2147483647;
|
|
398
|
+
files = (
|
|
399
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
|
|
400
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
401
|
+
);
|
|
402
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
403
|
+
};
|
|
404
|
+
/* End PBXSourcesBuildPhase section */
|
|
405
|
+
|
|
406
|
+
/* Begin PBXTargetDependency section */
|
|
407
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
|
408
|
+
isa = PBXTargetDependency;
|
|
409
|
+
target = 13B07F861A680F5B00A75B9A /* AnalyticsReactNativeExample */;
|
|
410
|
+
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
|
411
|
+
};
|
|
412
|
+
/* End PBXTargetDependency section */
|
|
413
|
+
|
|
414
|
+
/* Begin XCBuildConfiguration section */
|
|
415
|
+
00E356F61AD99517003FC87E /* Debug */ = {
|
|
416
|
+
isa = XCBuildConfiguration;
|
|
417
|
+
baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.debug.xcconfig */;
|
|
418
|
+
buildSettings = {
|
|
419
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
420
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
421
|
+
"DEBUG=1",
|
|
422
|
+
"$(inherited)",
|
|
423
|
+
);
|
|
424
|
+
INFOPLIST_FILE = AnalyticsReactNativeExampleTests/Info.plist;
|
|
425
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
426
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
427
|
+
"$(inherited)",
|
|
428
|
+
"@executable_path/Frameworks",
|
|
429
|
+
"@loader_path/Frameworks",
|
|
430
|
+
);
|
|
431
|
+
OTHER_LDFLAGS = (
|
|
432
|
+
"-ObjC",
|
|
433
|
+
"-lc++",
|
|
434
|
+
"$(inherited)",
|
|
435
|
+
);
|
|
436
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
437
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
438
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AnalyticsReactNativeExample.app/AnalyticsReactNativeExample";
|
|
439
|
+
};
|
|
440
|
+
name = Debug;
|
|
441
|
+
};
|
|
442
|
+
00E356F71AD99517003FC87E /* Release */ = {
|
|
443
|
+
isa = XCBuildConfiguration;
|
|
444
|
+
baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-AnalyticsReactNativeExample-AnalyticsReactNativeExampleTests.release.xcconfig */;
|
|
445
|
+
buildSettings = {
|
|
446
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
447
|
+
COPY_PHASE_STRIP = NO;
|
|
448
|
+
INFOPLIST_FILE = AnalyticsReactNativeExampleTests/Info.plist;
|
|
449
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
450
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
451
|
+
"$(inherited)",
|
|
452
|
+
"@executable_path/Frameworks",
|
|
453
|
+
"@loader_path/Frameworks",
|
|
454
|
+
);
|
|
455
|
+
OTHER_LDFLAGS = (
|
|
456
|
+
"-ObjC",
|
|
457
|
+
"-lc++",
|
|
458
|
+
"$(inherited)",
|
|
459
|
+
);
|
|
460
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
461
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
462
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AnalyticsReactNativeExample.app/AnalyticsReactNativeExample";
|
|
463
|
+
};
|
|
464
|
+
name = Release;
|
|
465
|
+
};
|
|
466
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
467
|
+
isa = XCBuildConfiguration;
|
|
468
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-AnalyticsReactNativeExample.debug.xcconfig */;
|
|
469
|
+
buildSettings = {
|
|
470
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
471
|
+
CLANG_ENABLE_MODULES = YES;
|
|
472
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
473
|
+
ENABLE_BITCODE = NO;
|
|
474
|
+
INFOPLIST_FILE = AnalyticsReactNativeExample/Info.plist;
|
|
475
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
476
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
477
|
+
"$(inherited)",
|
|
478
|
+
"@executable_path/Frameworks",
|
|
479
|
+
);
|
|
480
|
+
MARKETING_VERSION = 1.0;
|
|
481
|
+
OTHER_LDFLAGS = (
|
|
482
|
+
"$(inherited)",
|
|
483
|
+
"-ObjC",
|
|
484
|
+
"-lc++",
|
|
485
|
+
);
|
|
486
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
487
|
+
PRODUCT_NAME = AnalyticsReactNativeExample;
|
|
488
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
489
|
+
SWIFT_VERSION = 5.0;
|
|
490
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
491
|
+
};
|
|
492
|
+
name = Debug;
|
|
493
|
+
};
|
|
494
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
495
|
+
isa = XCBuildConfiguration;
|
|
496
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-AnalyticsReactNativeExample.release.xcconfig */;
|
|
497
|
+
buildSettings = {
|
|
498
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
499
|
+
CLANG_ENABLE_MODULES = YES;
|
|
500
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
501
|
+
INFOPLIST_FILE = AnalyticsReactNativeExample/Info.plist;
|
|
502
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
503
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
504
|
+
"$(inherited)",
|
|
505
|
+
"@executable_path/Frameworks",
|
|
506
|
+
);
|
|
507
|
+
MARKETING_VERSION = 1.0;
|
|
508
|
+
OTHER_LDFLAGS = (
|
|
509
|
+
"$(inherited)",
|
|
510
|
+
"-ObjC",
|
|
511
|
+
"-lc++",
|
|
512
|
+
);
|
|
513
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
514
|
+
PRODUCT_NAME = AnalyticsReactNativeExample;
|
|
515
|
+
SWIFT_VERSION = 5.0;
|
|
516
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
517
|
+
};
|
|
518
|
+
name = Release;
|
|
519
|
+
};
|
|
520
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
521
|
+
isa = XCBuildConfiguration;
|
|
522
|
+
buildSettings = {
|
|
523
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
524
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
525
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
526
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
527
|
+
CLANG_ENABLE_MODULES = YES;
|
|
528
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
529
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
530
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
531
|
+
CLANG_WARN_COMMA = YES;
|
|
532
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
533
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
534
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
535
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
536
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
537
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
538
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
539
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
540
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
541
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
542
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
543
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
544
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
545
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
546
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
547
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
548
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
549
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
550
|
+
COPY_PHASE_STRIP = NO;
|
|
551
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
552
|
+
ENABLE_TESTABILITY = YES;
|
|
553
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
554
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
555
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
556
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
557
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
558
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
559
|
+
"DEBUG=1",
|
|
560
|
+
"$(inherited)",
|
|
561
|
+
);
|
|
562
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
563
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
564
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
565
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
566
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
567
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
568
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
569
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
570
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
571
|
+
/usr/lib/swift,
|
|
572
|
+
"$(inherited)",
|
|
573
|
+
);
|
|
574
|
+
LIBRARY_SEARCH_PATHS = (
|
|
575
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
576
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
577
|
+
"\"$(inherited)\"",
|
|
578
|
+
);
|
|
579
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
580
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
581
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
582
|
+
"$(OTHER_CFLAGS)",
|
|
583
|
+
"-DFOLLY_NO_CONFIG",
|
|
584
|
+
"-DFOLLY_MOBILE=1",
|
|
585
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
586
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
587
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
588
|
+
);
|
|
589
|
+
OTHER_LDFLAGS = (
|
|
590
|
+
"$(inherited)",
|
|
591
|
+
" ",
|
|
592
|
+
);
|
|
593
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
594
|
+
SDKROOT = iphoneos;
|
|
595
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
596
|
+
USE_HERMES = true;
|
|
597
|
+
};
|
|
598
|
+
name = Debug;
|
|
599
|
+
};
|
|
600
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
601
|
+
isa = XCBuildConfiguration;
|
|
602
|
+
buildSettings = {
|
|
603
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
604
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
605
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
606
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
607
|
+
CLANG_ENABLE_MODULES = YES;
|
|
608
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
609
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
610
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
611
|
+
CLANG_WARN_COMMA = YES;
|
|
612
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
613
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
614
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
615
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
616
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
617
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
618
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
619
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
620
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
621
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
622
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
623
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
624
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
625
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
626
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
627
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
628
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
629
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
630
|
+
COPY_PHASE_STRIP = YES;
|
|
631
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
632
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
633
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
634
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
635
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
636
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
637
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
638
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
639
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
640
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
641
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
642
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
643
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
644
|
+
/usr/lib/swift,
|
|
645
|
+
"$(inherited)",
|
|
646
|
+
);
|
|
647
|
+
LIBRARY_SEARCH_PATHS = (
|
|
648
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
649
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
650
|
+
"\"$(inherited)\"",
|
|
651
|
+
);
|
|
652
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
653
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
654
|
+
"$(OTHER_CFLAGS)",
|
|
655
|
+
"-DFOLLY_NO_CONFIG",
|
|
656
|
+
"-DFOLLY_MOBILE=1",
|
|
657
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
658
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
659
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
660
|
+
);
|
|
661
|
+
OTHER_LDFLAGS = (
|
|
662
|
+
"$(inherited)",
|
|
663
|
+
" ",
|
|
664
|
+
);
|
|
665
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
666
|
+
SDKROOT = iphoneos;
|
|
667
|
+
USE_HERMES = true;
|
|
668
|
+
VALIDATE_PRODUCT = YES;
|
|
669
|
+
};
|
|
670
|
+
name = Release;
|
|
671
|
+
};
|
|
672
|
+
/* End XCBuildConfiguration section */
|
|
673
|
+
|
|
674
|
+
/* Begin XCConfigurationList section */
|
|
675
|
+
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "AnalyticsReactNativeExampleTests" */ = {
|
|
676
|
+
isa = XCConfigurationList;
|
|
677
|
+
buildConfigurations = (
|
|
678
|
+
00E356F61AD99517003FC87E /* Debug */,
|
|
679
|
+
00E356F71AD99517003FC87E /* Release */,
|
|
680
|
+
);
|
|
681
|
+
defaultConfigurationIsVisible = 0;
|
|
682
|
+
defaultConfigurationName = Release;
|
|
683
|
+
};
|
|
684
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "AnalyticsReactNativeExample" */ = {
|
|
685
|
+
isa = XCConfigurationList;
|
|
686
|
+
buildConfigurations = (
|
|
687
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
688
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
689
|
+
);
|
|
690
|
+
defaultConfigurationIsVisible = 0;
|
|
691
|
+
defaultConfigurationName = Release;
|
|
692
|
+
};
|
|
693
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "AnalyticsReactNativeExample" */ = {
|
|
694
|
+
isa = XCConfigurationList;
|
|
695
|
+
buildConfigurations = (
|
|
696
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
697
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
698
|
+
);
|
|
699
|
+
defaultConfigurationIsVisible = 0;
|
|
700
|
+
defaultConfigurationName = Release;
|
|
701
|
+
};
|
|
702
|
+
/* End XCConfigurationList section */
|
|
703
|
+
};
|
|
704
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
705
|
+
}
|