react-native-acoustic-connect 19.0.9 → 19.0.28
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/CHANGELOG.md +91 -0
- package/ConnectConfig.example.json +1 -1
- package/README.md +390 -1
- package/android/build.gradle +86 -3
- package/android/config.gradle +137 -13
- package/android/src/main/assets/ConnectAdvancedConfig.json +1 -1
- package/android/src/main/java/com/acousticconnectrn/HybridAcousticConnectRN.kt +407 -34
- package/app.plugin.js +2 -2
- package/ios/AcousticConnectRNConfig.json +2 -2
- package/ios/ConnectRNParsing.swift +229 -0
- package/ios/HybridAcousticConnectRN.swift +290 -30
- package/lib/commonjs/TLTRN.js +116 -3
- package/lib/commonjs/TLTRN.js.map +1 -1
- package/lib/commonjs/components/Connect.js +145 -27
- package/lib/commonjs/components/Connect.js.map +1 -1
- package/lib/commonjs/index.js +3 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/TLTRN.js +116 -3
- package/lib/module/TLTRN.js.map +1 -1
- package/lib/module/components/Connect.js +146 -28
- package/lib/module/components/Connect.js.map +1 -1
- package/lib/module/index.js +5 -0
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/src/TLTRN.d.ts +85 -1
- package/lib/typescript/src/TLTRN.d.ts.map +1 -1
- package/lib/typescript/src/components/Connect.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts +178 -10
- package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts.map +1 -1
- package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.cpp +5 -9
- package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.hpp +1 -1
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/acousticconnectrn/HybridAcousticConnectRNSpec.kt +2 -1
- package/nitrogen/generated/ios/AcousticConnectRN-Swift-Cxx-Umbrella.hpp +1 -0
- package/nitrogen/generated/ios/c++/HybridAcousticConnectRNSpecSwift.hpp +2 -1
- package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec.swift +1 -1
- package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec_cxx.swift +2 -25
- package/nitrogen/generated/shared/c++/HybridAcousticConnectRNSpec.hpp +2 -1
- package/package.json +4 -7
- package/plugin/build/withConnectAndroidConfig.d.ts +2 -2
- package/plugin/build/withConnectAndroidConfig.js +2 -2
- package/plugin/build/withConnectIosSigning.d.ts +1 -1
- package/plugin/build/withConnectIosSigning.js +1 -1
- package/plugin/src/withConnectAndroidConfig.ts +2 -2
- package/plugin/src/withConnectIosSigning.ts +1 -1
- package/scripts/gradleParser.js +1 -1
- package/src/TLTRN.ts +125 -4
- package/src/components/Connect.tsx +150 -27
- package/src/index.ts +5 -0
- package/src/specs/react-native-acoustic-connect.nitro.ts +180 -10
- package/Examples/SampleUI/.bundle/config +0 -2
- package/Examples/SampleUI/.detoxrc.js +0 -83
- package/Examples/SampleUI/.eslintrc.js +0 -4
- package/Examples/SampleUI/.prettierrc.js +0 -7
- package/Examples/SampleUI/.watchmanconfig +0 -1
- package/Examples/SampleUI/App.js +0 -1
- package/Examples/SampleUI/Gemfile +0 -10
- package/Examples/SampleUI/Gemfile.lock +0 -121
- package/Examples/SampleUI/README.md +0 -79
- package/Examples/SampleUI/__tests__/App.test.tsx +0 -17
- package/Examples/SampleUI/android/app/build.gradle +0 -129
- package/Examples/SampleUI/android/app/debug.keystore +0 -0
- package/Examples/SampleUI/android/app/proguard-rules.pro +0 -10
- package/Examples/SampleUI/android/app/src/debug/AndroidManifest.xml +0 -9
- package/Examples/SampleUI/android/app/src/main/AndroidManifest.xml +0 -31
- package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainActivity.kt +0 -30
- package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainApplication.kt +0 -53
- package/Examples/SampleUI/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -37
- package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/values/strings.xml +0 -3
- package/Examples/SampleUI/android/app/src/main/res/values/styles.xml +0 -9
- package/Examples/SampleUI/android/build.gradle +0 -21
- package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.properties +0 -7
- package/Examples/SampleUI/android/gradle.properties +0 -39
- package/Examples/SampleUI/android/gradlew +0 -252
- package/Examples/SampleUI/android/gradlew.bat +0 -94
- package/Examples/SampleUI/android/settings.gradle +0 -21
- package/Examples/SampleUI/app.json +0 -51
- package/Examples/SampleUI/assets/fonts/Abel-Regular.ttf +0 -0
- package/Examples/SampleUI/assets/fonts/NotoSans-Regular.ttf +0 -0
- package/Examples/SampleUI/assets/images/android-icon.png +0 -0
- package/Examples/SampleUI/assets/images/artist-1.jpg +0 -0
- package/Examples/SampleUI/assets/images/artist-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/avatar.png +0 -0
- package/Examples/SampleUI/assets/images/beach.jpg +0 -0
- package/Examples/SampleUI/assets/images/bridge.jpg +0 -0
- package/Examples/SampleUI/assets/images/chameleon.jpg +0 -0
- package/Examples/SampleUI/assets/images/city.jpg +0 -0
- package/Examples/SampleUI/assets/images/email-icon.png +0 -0
- package/Examples/SampleUI/assets/images/favorite.png +0 -0
- package/Examples/SampleUI/assets/images/forest.jpg +0 -0
- package/Examples/SampleUI/assets/images/paper-icon.png +0 -0
- package/Examples/SampleUI/assets/images/players-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/players.jpg +0 -0
- package/Examples/SampleUI/assets/images/restaurant-1.jpg +0 -0
- package/Examples/SampleUI/assets/images/restaurant-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/song-1.jpg +0 -0
- package/Examples/SampleUI/assets/images/song-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/splash.png +0 -0
- package/Examples/SampleUI/assets/images/strawberries.jpg +0 -0
- package/Examples/SampleUI/assets/images/wrecked-ship.jpg +0 -0
- package/Examples/SampleUI/assets/styles/fonts.css +0 -47
- package/Examples/SampleUI/babel.config.js +0 -22
- package/Examples/SampleUI/index.js +0 -9
- package/Examples/SampleUI/ios/.xcode.env +0 -11
- package/Examples/SampleUI/ios/Podfile +0 -71
- package/Examples/SampleUI/ios/Podfile.lock +0 -2276
- package/Examples/SampleUI/ios/SampleUI/AppDelegate.h +0 -7
- package/Examples/SampleUI/ios/SampleUI/AppDelegate.mm +0 -31
- package/Examples/SampleUI/ios/SampleUI/Images.xcassets/AppIcon.appiconset/Contents.json +0 -53
- package/Examples/SampleUI/ios/SampleUI/Images.xcassets/Contents.json +0 -6
- package/Examples/SampleUI/ios/SampleUI/Info.plist +0 -52
- package/Examples/SampleUI/ios/SampleUI/LaunchScreen.storyboard +0 -47
- package/Examples/SampleUI/ios/SampleUI/PrivacyInfo.xcprivacy +0 -48
- package/Examples/SampleUI/ios/SampleUI/main.m +0 -10
- package/Examples/SampleUI/ios/SampleUI.xcodeproj/project.pbxproj +0 -785
- package/Examples/SampleUI/ios/SampleUI.xcodeproj/xcshareddata/xcschemes/SampleUI.xcscheme +0 -105
- package/Examples/SampleUI/ios/SampleUI.xcworkspace/contents.xcworkspacedata +0 -10
- package/Examples/SampleUI/ios/SampleUITests/Info.plist +0 -24
- package/Examples/SampleUI/ios/SampleUITests/SampleUITests.m +0 -66
- package/Examples/SampleUI/jest.config.js +0 -3
- package/Examples/SampleUI/metro.config.js +0 -54
- package/Examples/SampleUI/package.json +0 -65
- package/Examples/SampleUI/scripts/integration-test-android.sh +0 -292
- package/Examples/SampleUI/src/DrawerItems.tsx +0 -322
- package/Examples/SampleUI/src/ExampleList.tsx +0 -175
- package/Examples/SampleUI/src/Examples/ActivityIndicatorExample.tsx +0 -73
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/AnimatedFABExample.tsx +0 -220
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFAB.tsx +0 -70
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFABControls.tsx +0 -146
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/index.ts +0 -1
- package/Examples/SampleUI/src/Examples/AppbarExample.tsx +0 -263
- package/Examples/SampleUI/src/Examples/AvatarExample.tsx +0 -76
- package/Examples/SampleUI/src/Examples/BadgeExample.tsx +0 -97
- package/Examples/SampleUI/src/Examples/BannerExample.tsx +0 -152
- package/Examples/SampleUI/src/Examples/BottomNavigationBarExample.tsx +0 -94
- package/Examples/SampleUI/src/Examples/BottomNavigationExample.tsx +0 -205
- package/Examples/SampleUI/src/Examples/ButtonExample.tsx +0 -405
- package/Examples/SampleUI/src/Examples/CardExample.tsx +0 -245
- package/Examples/SampleUI/src/Examples/CheckboxExample.tsx +0 -87
- package/Examples/SampleUI/src/Examples/CheckboxItemExample.tsx +0 -72
- package/Examples/SampleUI/src/Examples/ChipExample.tsx +0 -432
- package/Examples/SampleUI/src/Examples/DataTableExample.tsx +0 -128
- package/Examples/SampleUI/src/Examples/DialogExample.tsx +0 -217
- package/Examples/SampleUI/src/Examples/Dialogs/DialogTextComponent.tsx +0 -31
- package/Examples/SampleUI/src/Examples/Dialogs/DialogTrackingTest.tsx +0 -307
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithCustomColors.tsx +0 -57
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithDismissableBackButton.tsx +0 -38
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithIcon.tsx +0 -42
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLoadingIndicator.tsx +0 -48
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLongText.tsx +0 -81
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithRadioBtns.tsx +0 -111
- package/Examples/SampleUI/src/Examples/Dialogs/UndismissableDialog.tsx +0 -30
- package/Examples/SampleUI/src/Examples/Dialogs/index.tsx +0 -44
- package/Examples/SampleUI/src/Examples/DividerExample.tsx +0 -30
- package/Examples/SampleUI/src/Examples/FABExample.tsx +0 -226
- package/Examples/SampleUI/src/Examples/IconButtonExample.tsx +0 -230
- package/Examples/SampleUI/src/Examples/IconExample.tsx +0 -50
- package/Examples/SampleUI/src/Examples/ListAccordionExample.tsx +0 -65
- package/Examples/SampleUI/src/Examples/ListAccordionGroupExample.tsx +0 -80
- package/Examples/SampleUI/src/Examples/ListItemExample.tsx +0 -310
- package/Examples/SampleUI/src/Examples/ListSectionExample.tsx +0 -159
- package/Examples/SampleUI/src/Examples/MaterialBottomTabNavigatorExample.tsx +0 -87
- package/Examples/SampleUI/src/Examples/MenuExample.tsx +0 -211
- package/Examples/SampleUI/src/Examples/ProgressBarExample.tsx +0 -142
- package/Examples/SampleUI/src/Examples/RadioButtonExample.tsx +0 -104
- package/Examples/SampleUI/src/Examples/RadioButtonGroupExample.tsx +0 -67
- package/Examples/SampleUI/src/Examples/RadioButtonItemExample.tsx +0 -77
- package/Examples/SampleUI/src/Examples/SearchbarExample.tsx +0 -249
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonCustomColorCheck.tsx +0 -93
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDefault.tsx +0 -49
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDisabled.tsx +0 -47
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselect.tsx +0 -50
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectIcons.tsx +0 -49
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectRealCase.tsx +0 -114
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIcons.tsx +0 -40
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIconsWithCheck.tsx +0 -43
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonRealCase.tsx +0 -97
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithDensity.tsx +0 -47
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithSelectedCheck.tsx +0 -52
- package/Examples/SampleUI/src/Examples/SegmentedButtons/index.ts +0 -9
- package/Examples/SampleUI/src/Examples/SegmentedButtonsExample.tsx +0 -57
- package/Examples/SampleUI/src/Examples/SnackbarExample.tsx +0 -141
- package/Examples/SampleUI/src/Examples/SurfaceExample.tsx +0 -130
- package/Examples/SampleUI/src/Examples/SwitchExample.tsx +0 -105
- package/Examples/SampleUI/src/Examples/TeamDetails.tsx +0 -291
- package/Examples/SampleUI/src/Examples/TeamsList.tsx +0 -57
- package/Examples/SampleUI/src/Examples/TextExample.tsx +0 -132
- package/Examples/SampleUI/src/Examples/TextInputExample.tsx +0 -914
- package/Examples/SampleUI/src/Examples/ThemeExample.tsx +0 -41
- package/Examples/SampleUI/src/Examples/ThemingWithReactNavigation.tsx +0 -75
- package/Examples/SampleUI/src/Examples/ToggleButtonExample.tsx +0 -128
- package/Examples/SampleUI/src/Examples/TooltipExample.tsx +0 -191
- package/Examples/SampleUI/src/Examples/TouchableRippleExample.tsx +0 -37
- package/Examples/SampleUI/src/RootNavigator.tsx +0 -95
- package/Examples/SampleUI/src/ScreenWrapper.tsx +0 -67
- package/Examples/SampleUI/src/components/ActivityIndicator.tsx +0 -254
- package/Examples/SampleUI/src/components/Appbar/Appbar.tsx +0 -364
- package/Examples/SampleUI/src/components/Appbar/AppbarAction.tsx +0 -132
- package/Examples/SampleUI/src/components/Appbar/AppbarBackAction.tsx +0 -77
- package/Examples/SampleUI/src/components/Appbar/AppbarBackIcon.tsx +0 -52
- package/Examples/SampleUI/src/components/Appbar/AppbarContent.tsx +0 -249
- package/Examples/SampleUI/src/components/Appbar/AppbarHeader.tsx +0 -174
- package/Examples/SampleUI/src/components/Appbar/index.ts +0 -22
- package/Examples/SampleUI/src/components/Appbar/utils.ts +0 -188
- package/Examples/SampleUI/src/components/Avatar/Avatar.tsx +0 -8
- package/Examples/SampleUI/src/components/Avatar/AvatarIcon.tsx +0 -87
- package/Examples/SampleUI/src/components/Avatar/AvatarImage.tsx +0 -128
- package/Examples/SampleUI/src/components/Avatar/AvatarText.tsx +0 -127
- package/Examples/SampleUI/src/components/Badge.tsx +0 -138
- package/Examples/SampleUI/src/components/Banner.tsx +0 -302
- package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigation.tsx +0 -643
- package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationBar.tsx +0 -1039
- package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationRouteScreen.tsx +0 -31
- package/Examples/SampleUI/src/components/BottomNavigation/utils.ts +0 -70
- package/Examples/SampleUI/src/components/Button/Button.tsx +0 -503
- package/Examples/SampleUI/src/components/Button/utils.tsx +0 -272
- package/Examples/SampleUI/src/components/Card/Card.tsx +0 -373
- package/Examples/SampleUI/src/components/Card/CardActions.tsx +0 -74
- package/Examples/SampleUI/src/components/Card/CardContent.tsx +0 -99
- package/Examples/SampleUI/src/components/Card/CardCover.tsx +0 -96
- package/Examples/SampleUI/src/components/Card/CardTitle.tsx +0 -236
- package/Examples/SampleUI/src/components/Card/utils.tsx +0 -110
- package/Examples/SampleUI/src/components/Checkbox/Checkbox.tsx +0 -78
- package/Examples/SampleUI/src/components/Checkbox/CheckboxAndroid.tsx +0 -180
- package/Examples/SampleUI/src/components/Checkbox/CheckboxIOS.tsx +0 -104
- package/Examples/SampleUI/src/components/Checkbox/CheckboxItem.tsx +0 -236
- package/Examples/SampleUI/src/components/Checkbox/index.ts +0 -19
- package/Examples/SampleUI/src/components/Checkbox/utils.ts +0 -183
- package/Examples/SampleUI/src/components/Chip/Chip.tsx +0 -513
- package/Examples/SampleUI/src/components/Chip/helpers.tsx +0 -322
- package/Examples/SampleUI/src/components/CrossFadeIcon.tsx +0 -140
- package/Examples/SampleUI/src/components/DataTable/DataTable.tsx +0 -138
- package/Examples/SampleUI/src/components/DataTable/DataTableCell.tsx +0 -132
- package/Examples/SampleUI/src/components/DataTable/DataTableHeader.tsx +0 -82
- package/Examples/SampleUI/src/components/DataTable/DataTablePagination.tsx +0 -407
- package/Examples/SampleUI/src/components/DataTable/DataTableRow.tsx +0 -107
- package/Examples/SampleUI/src/components/DataTable/DataTableTitle.tsx +0 -208
- package/Examples/SampleUI/src/components/Dialog/Dialog.tsx +0 -191
- package/Examples/SampleUI/src/components/Dialog/DialogActions.tsx +0 -94
- package/Examples/SampleUI/src/components/Dialog/DialogContent.tsx +0 -54
- package/Examples/SampleUI/src/components/Dialog/DialogIcon.tsx +0 -100
- package/Examples/SampleUI/src/components/Dialog/DialogScrollArea.tsx +0 -88
- package/Examples/SampleUI/src/components/Dialog/DialogTitle.tsx +0 -94
- package/Examples/SampleUI/src/components/Divider.tsx +0 -102
- package/Examples/SampleUI/src/components/Drawer/Drawer.tsx +0 -8
- package/Examples/SampleUI/src/components/Drawer/DrawerCollapsedItem.tsx +0 -282
- package/Examples/SampleUI/src/components/Drawer/DrawerItem.tsx +0 -209
- package/Examples/SampleUI/src/components/Drawer/DrawerSection.tsx +0 -138
- package/Examples/SampleUI/src/components/FAB/AnimatedFAB.tsx +0 -619
- package/Examples/SampleUI/src/components/FAB/FAB.tsx +0 -371
- package/Examples/SampleUI/src/components/FAB/FABGroup.tsx +0 -532
- package/Examples/SampleUI/src/components/FAB/index.ts +0 -13
- package/Examples/SampleUI/src/components/FAB/utils.ts +0 -474
- package/Examples/SampleUI/src/components/HelperText/HelperText.tsx +0 -168
- package/Examples/SampleUI/src/components/HelperText/utils.ts +0 -30
- package/Examples/SampleUI/src/components/Icon.tsx +0 -170
- package/Examples/SampleUI/src/components/IconButton/IconButton.tsx +0 -234
- package/Examples/SampleUI/src/components/IconButton/utils.ts +0 -190
- package/Examples/SampleUI/src/components/List/List.tsx +0 -20
- package/Examples/SampleUI/src/components/List/ListAccordion.tsx +0 -391
- package/Examples/SampleUI/src/components/List/ListAccordionGroup.tsx +0 -88
- package/Examples/SampleUI/src/components/List/ListIcon.tsx +0 -79
- package/Examples/SampleUI/src/components/List/ListImage.tsx +0 -89
- package/Examples/SampleUI/src/components/List/ListItem.tsx +0 -313
- package/Examples/SampleUI/src/components/List/ListSection.tsx +0 -87
- package/Examples/SampleUI/src/components/List/ListSubheader.tsx +0 -79
- package/Examples/SampleUI/src/components/List/utils.ts +0 -113
- package/Examples/SampleUI/src/components/MaterialCommunityIcon.tsx +0 -121
- package/Examples/SampleUI/src/components/Menu/Menu.tsx +0 -711
- package/Examples/SampleUI/src/components/Menu/MenuItem.tsx +0 -257
- package/Examples/SampleUI/src/components/Menu/utils.ts +0 -110
- package/Examples/SampleUI/src/components/Modal.tsx +0 -245
- package/Examples/SampleUI/src/components/Portal/Portal.tsx +0 -69
- package/Examples/SampleUI/src/components/Portal/PortalConsumer.tsx +0 -44
- package/Examples/SampleUI/src/components/Portal/PortalHost.tsx +0 -143
- package/Examples/SampleUI/src/components/Portal/PortalManager.tsx +0 -54
- package/Examples/SampleUI/src/components/ProgressBar.tsx +0 -292
- package/Examples/SampleUI/src/components/RadioButton/RadioButton.tsx +0 -86
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonAndroid.tsx +0 -202
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonGroup.tsx +0 -67
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonIOS.tsx +0 -130
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonItem.tsx +0 -268
- package/Examples/SampleUI/src/components/RadioButton/index.ts +0 -22
- package/Examples/SampleUI/src/components/RadioButton/utils.ts +0 -37
- package/Examples/SampleUI/src/components/Searchbar.tsx +0 -459
- package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtonItem.tsx +0 -271
- package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtons.tsx +0 -197
- package/Examples/SampleUI/src/components/SegmentedButtons/utils.ts +0 -179
- package/Examples/SampleUI/src/components/Snackbar.tsx +0 -430
- package/Examples/SampleUI/src/components/Surface.tsx +0 -376
- package/Examples/SampleUI/src/components/Switch/Switch.tsx +0 -108
- package/Examples/SampleUI/src/components/Switch/utils.ts +0 -113
- package/Examples/SampleUI/src/components/TextInput/Addons/Outline.tsx +0 -64
- package/Examples/SampleUI/src/components/TextInput/Addons/Underline.tsx +0 -78
- package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAdornment.tsx +0 -208
- package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAffix.tsx +0 -212
- package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputIcon.tsx +0 -195
- package/Examples/SampleUI/src/components/TextInput/Adornment/enums.tsx +0 -12
- package/Examples/SampleUI/src/components/TextInput/Adornment/types.tsx +0 -11
- package/Examples/SampleUI/src/components/TextInput/Adornment/utils.ts +0 -48
- package/Examples/SampleUI/src/components/TextInput/Label/InputLabel.tsx +0 -217
- package/Examples/SampleUI/src/components/TextInput/Label/LabelBackground.tsx +0 -100
- package/Examples/SampleUI/src/components/TextInput/TextInput.tsx +0 -572
- package/Examples/SampleUI/src/components/TextInput/TextInputFlat.tsx +0 -475
- package/Examples/SampleUI/src/components/TextInput/TextInputOutlined.tsx +0 -450
- package/Examples/SampleUI/src/components/TextInput/constants.tsx +0 -48
- package/Examples/SampleUI/src/components/TextInput/helpers.tsx +0 -612
- package/Examples/SampleUI/src/components/TextInput/types.tsx +0 -155
- package/Examples/SampleUI/src/components/ToggleButton/ToggleButton.tsx +0 -187
- package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonGroup.tsx +0 -72
- package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonRow.tsx +0 -107
- package/Examples/SampleUI/src/components/ToggleButton/index.ts +0 -16
- package/Examples/SampleUI/src/components/ToggleButton/utils.ts +0 -26
- package/Examples/SampleUI/src/components/Tooltip/Tooltip.tsx +0 -249
- package/Examples/SampleUI/src/components/Tooltip/utils.ts +0 -129
- package/Examples/SampleUI/src/components/TouchableRipple/Pressable.tsx +0 -41
- package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.native.tsx +0 -145
- package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.tsx +0 -317
- package/Examples/SampleUI/src/components/TouchableRipple/utils.ts +0 -66
- package/Examples/SampleUI/src/components/Typography/AnimatedText.tsx +0 -107
- package/Examples/SampleUI/src/components/Typography/Text.tsx +0 -184
- package/Examples/SampleUI/src/components/Typography/types.tsx +0 -5
- package/Examples/SampleUI/src/components/Typography/v2/Caption.tsx +0 -50
- package/Examples/SampleUI/src/components/Typography/v2/Headline.tsx +0 -52
- package/Examples/SampleUI/src/components/Typography/v2/Paragraph.tsx +0 -49
- package/Examples/SampleUI/src/components/Typography/v2/StyledText.tsx +0 -56
- package/Examples/SampleUI/src/components/Typography/v2/Subheading.tsx +0 -50
- package/Examples/SampleUI/src/components/Typography/v2/Text.tsx +0 -62
- package/Examples/SampleUI/src/components/Typography/v2/Title.tsx +0 -49
- package/Examples/SampleUI/src/components/Typography/v2/index.ts +0 -5
- package/Examples/SampleUI/src/core/PaperProvider.tsx +0 -122
- package/Examples/SampleUI/src/core/SafeAreaProviderCompat.tsx +0 -65
- package/Examples/SampleUI/src/core/settings.tsx +0 -23
- package/Examples/SampleUI/src/core/theming.tsx +0 -170
- package/Examples/SampleUI/src/index.native.tsx +0 -285
- package/Examples/SampleUI/src/index.tsx +0 -226
- package/Examples/SampleUI/src/react-navigation/index.tsx +0 -19
- package/Examples/SampleUI/src/react-navigation/navigators/createMaterialBottomTabNavigator.tsx +0 -72
- package/Examples/SampleUI/src/react-navigation/types.tsx +0 -126
- package/Examples/SampleUI/src/react-navigation/views/MaterialBottomTabView.tsx +0 -140
- package/Examples/SampleUI/src/styles/__tests__/fonts.test.js +0 -290
- package/Examples/SampleUI/src/styles/fonts.tsx +0 -143
- package/Examples/SampleUI/src/styles/overlay.tsx +0 -70
- package/Examples/SampleUI/src/styles/shadow.tsx +0 -109
- package/Examples/SampleUI/src/styles/themes/index.ts +0 -4
- package/Examples/SampleUI/src/styles/themes/v2/DarkTheme.tsx +0 -30
- package/Examples/SampleUI/src/styles/themes/v2/LightTheme.tsx +0 -30
- package/Examples/SampleUI/src/styles/themes/v2/colors.tsx +0 -277
- package/Examples/SampleUI/src/styles/themes/v3/DarkTheme.tsx +0 -66
- package/Examples/SampleUI/src/styles/themes/v3/LightTheme.tsx +0 -69
- package/Examples/SampleUI/src/styles/themes/v3/tokens.tsx +0 -230
- package/Examples/SampleUI/src/utils/BackHandler/BackHandler.native.tsx +0 -3
- package/Examples/SampleUI/src/utils/BackHandler/BackHandler.tsx +0 -11
- package/Examples/SampleUI/src/utils/addEventListener.tsx +0 -56
- package/Examples/SampleUI/src/utils/forwardRef.tsx +0 -23
- package/Examples/SampleUI/src/utils/getContrastingColor.tsx +0 -15
- package/Examples/SampleUI/src/utils/hasTouchHandler.tsx +0 -23
- package/Examples/SampleUI/src/utils/roundLayoutSize.ts +0 -2
- package/Examples/SampleUI/src/utils/splitStyles.ts +0 -60
- package/Examples/SampleUI/src/utils/useAnimatedValue.tsx +0 -9
- package/Examples/SampleUI/src/utils/useAnimatedValueArray.tsx +0 -13
- package/Examples/SampleUI/src/utils/useIsKeyboardShown.tsx +0 -55
- package/Examples/SampleUI/src/utils/useLayout.tsx +0 -29
- package/Examples/SampleUI/src/utils/useLazyRef.tsx +0 -11
- package/Examples/SampleUI/tsconfig.json +0 -3
- package/Examples/SampleUI/utils/index.ts +0 -1426
- package/cli/__tests__/doctor.test.mjs +0 -88
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react-native-acoustic-connect.nitro.d.ts","sourceRoot":"","sources":["../../../../src/specs/react-native-acoustic-connect.nitro.ts"],"names":[],"mappings":"AAYA,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,4BAA4B,CAAA;
|
|
1
|
+
{"version":3,"file":"react-native-acoustic-connect.nitro.d.ts","sourceRoot":"","sources":["../../../../src/specs/react-native-acoustic-connect.nitro.ts"],"names":[],"mappings":"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"}
|
|
@@ -25,6 +25,8 @@ namespace margelo::nitro::acousticconnectrn { struct PushErrorInfo; }
|
|
|
25
25
|
#include "JVariant_NullType_Boolean.hpp"
|
|
26
26
|
#include "JVariant_Boolean_String_Double.hpp"
|
|
27
27
|
#include <unordered_map>
|
|
28
|
+
#include <NitroModules/AnyMap.hpp>
|
|
29
|
+
#include <NitroModules/JAnyMap.hpp>
|
|
28
30
|
#include <NitroModules/ArrayBuffer.hpp>
|
|
29
31
|
#include <NitroModules/JArrayBuffer.hpp>
|
|
30
32
|
#include "PushErrorInfo.hpp"
|
|
@@ -119,15 +121,9 @@ namespace margelo::nitro::acousticconnectrn {
|
|
|
119
121
|
}(), level);
|
|
120
122
|
return static_cast<bool>(__result);
|
|
121
123
|
}
|
|
122
|
-
bool JHybridAcousticConnectRNSpec::logSignal(const std::
|
|
123
|
-
static const auto method = _javaPart->javaClassStatic()->getMethod<jboolean(jni::alias_ref<
|
|
124
|
-
auto __result = method(_javaPart,
|
|
125
|
-
auto __map = jni::JHashMap<jni::JString, JVariant_Boolean_String_Double>::create(values.size());
|
|
126
|
-
for (const auto& __entry : values) {
|
|
127
|
-
__map->put(jni::make_jstring(__entry.first), JVariant_Boolean_String_Double::fromCpp(__entry.second));
|
|
128
|
-
}
|
|
129
|
-
return __map;
|
|
130
|
-
}(), level);
|
|
124
|
+
bool JHybridAcousticConnectRNSpec::logSignal(const std::shared_ptr<AnyMap>& values, double level) {
|
|
125
|
+
static const auto method = _javaPart->javaClassStatic()->getMethod<jboolean(jni::alias_ref<JAnyMap::javaobject> /* values */, double /* level */)>("logSignal");
|
|
126
|
+
auto __result = method(_javaPart, JAnyMap::create(values), level);
|
|
131
127
|
return static_cast<bool>(__result);
|
|
132
128
|
}
|
|
133
129
|
bool JHybridAcousticConnectRNSpec::logExceptionEvent(const std::string& message, const std::string& stackInfo, bool unhandled) {
|
|
@@ -64,7 +64,7 @@ namespace margelo::nitro::acousticconnectrn {
|
|
|
64
64
|
std::optional<std::variant<nitro::NullType, std::string>> getStringItemForKey(const std::string& theDefault, const std::string& key, const std::string& moduleName) override;
|
|
65
65
|
double getNumberItemForKey(double theDefault, const std::string& key, const std::string& moduleName) override;
|
|
66
66
|
bool logCustomEvent(const std::string& eventName, const std::unordered_map<std::string, std::variant<bool, std::string, double>>& values, double level) override;
|
|
67
|
-
bool logSignal(const std::
|
|
67
|
+
bool logSignal(const std::shared_ptr<AnyMap>& values, double level) override;
|
|
68
68
|
bool logExceptionEvent(const std::string& message, const std::string& stackInfo, bool unhandled) override;
|
|
69
69
|
bool logLocation() override;
|
|
70
70
|
bool logLocationWithLatitudeLongitude(double latitude, double longitude, double level) override;
|
|
@@ -11,6 +11,7 @@ import androidx.annotation.Keep
|
|
|
11
11
|
import com.facebook.jni.HybridData
|
|
12
12
|
import com.facebook.proguard.annotations.DoNotStrip
|
|
13
13
|
import com.margelo.nitro.core.NullType
|
|
14
|
+
import com.margelo.nitro.core.AnyMap
|
|
14
15
|
import com.margelo.nitro.core.Promise
|
|
15
16
|
import com.margelo.nitro.core.ArrayBuffer
|
|
16
17
|
import com.margelo.nitro.core.HybridObject
|
|
@@ -73,7 +74,7 @@ abstract class HybridAcousticConnectRNSpec: HybridObject() {
|
|
|
73
74
|
|
|
74
75
|
@DoNotStrip
|
|
75
76
|
@Keep
|
|
76
|
-
abstract fun logSignal(values:
|
|
77
|
+
abstract fun logSignal(values: AnyMap, level: Double): Boolean
|
|
77
78
|
|
|
78
79
|
@DoNotStrip
|
|
79
80
|
@Keep
|
|
@@ -19,6 +19,7 @@ namespace margelo::nitro::acousticconnectrn { struct PushPermissionResult; }
|
|
|
19
19
|
#include "HybridAcousticConnectRNSpec.hpp"
|
|
20
20
|
#include "PushErrorInfo.hpp"
|
|
21
21
|
#include "PushPermissionResult.hpp"
|
|
22
|
+
#include <NitroModules/AnyMap.hpp>
|
|
22
23
|
#include <NitroModules/ArrayBuffer.hpp>
|
|
23
24
|
#include <NitroModules/Null.hpp>
|
|
24
25
|
#include <NitroModules/Promise.hpp>
|
|
@@ -24,6 +24,7 @@ namespace margelo::nitro::acousticconnectrn { struct PushPermissionResult; }
|
|
|
24
24
|
#include <NitroModules/Null.hpp>
|
|
25
25
|
#include <optional>
|
|
26
26
|
#include <unordered_map>
|
|
27
|
+
#include <NitroModules/AnyMap.hpp>
|
|
27
28
|
#include <NitroModules/Promise.hpp>
|
|
28
29
|
#include <NitroModules/ArrayBuffer.hpp>
|
|
29
30
|
#include <NitroModules/ArrayBufferHolder.hpp>
|
|
@@ -160,7 +161,7 @@ namespace margelo::nitro::acousticconnectrn {
|
|
|
160
161
|
auto __value = std::move(__result.value());
|
|
161
162
|
return __value;
|
|
162
163
|
}
|
|
163
|
-
inline bool logSignal(const std::
|
|
164
|
+
inline bool logSignal(const std::shared_ptr<AnyMap>& values, double level) override {
|
|
164
165
|
auto __result = _swiftPart.logSignal(values, std::forward<decltype(level)>(level));
|
|
165
166
|
if (__result.hasError()) [[unlikely]] {
|
|
166
167
|
std::rethrow_exception(__result.error());
|
|
@@ -23,7 +23,7 @@ public protocol HybridAcousticConnectRNSpec_protocol: HybridObject {
|
|
|
23
23
|
func getStringItemForKey(theDefault: String, key: String, moduleName: String) throws -> Variant_NullType_String?
|
|
24
24
|
func getNumberItemForKey(theDefault: Double, key: String, moduleName: String) throws -> Double
|
|
25
25
|
func logCustomEvent(eventName: String, values: Dictionary<String, Variant_Bool_String_Double>, level: Double) throws -> Bool
|
|
26
|
-
func logSignal(values:
|
|
26
|
+
func logSignal(values: AnyMap, level: Double) throws -> Bool
|
|
27
27
|
func logExceptionEvent(message: String, stackInfo: String, unhandled: Bool) throws -> Bool
|
|
28
28
|
func logLocation() throws -> Bool
|
|
29
29
|
func logLocationWithLatitudeLongitude(latitude: Double, longitude: Double, level: Double) throws -> Bool
|
|
@@ -296,32 +296,9 @@ open class HybridAcousticConnectRNSpec_cxx {
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
@inline(__always)
|
|
299
|
-
public final func logSignal(values:
|
|
299
|
+
public final func logSignal(values: margelo.nitro.SharedAnyMap, level: Double) -> bridge.Result_bool_ {
|
|
300
300
|
do {
|
|
301
|
-
let __result = try self.__implementation.logSignal(values:
|
|
302
|
-
var __dictionary = Dictionary<String, Variant_Bool_String_Double>(minimumCapacity: values.size())
|
|
303
|
-
let __keys = bridge.get_std__unordered_map_std__string__std__variant_bool__std__string__double___keys(values)
|
|
304
|
-
for __key in __keys {
|
|
305
|
-
let __value = bridge.get_std__unordered_map_std__string__std__variant_bool__std__string__double___value(values, __key)
|
|
306
|
-
__dictionary[String(__key)] = { () -> Variant_Bool_String_Double in
|
|
307
|
-
let __variant = bridge.std__variant_bool__std__string__double_(__value)
|
|
308
|
-
switch __variant.index() {
|
|
309
|
-
case 0:
|
|
310
|
-
let __actual = __variant.get_0()
|
|
311
|
-
return .first(__actual)
|
|
312
|
-
case 1:
|
|
313
|
-
let __actual = __variant.get_1()
|
|
314
|
-
return .second(String(__actual))
|
|
315
|
-
case 2:
|
|
316
|
-
let __actual = __variant.get_2()
|
|
317
|
-
return .third(__actual)
|
|
318
|
-
default:
|
|
319
|
-
fatalError("Variant can never have index \(__variant.index())!")
|
|
320
|
-
}
|
|
321
|
-
}()
|
|
322
|
-
}
|
|
323
|
-
return __dictionary
|
|
324
|
-
}(), level: level)
|
|
301
|
+
let __result = try self.__implementation.logSignal(values: AnyMap(withCppPart: values), level: level)
|
|
325
302
|
let __resultCpp = __result
|
|
326
303
|
return bridge.create_Result_bool_(__resultCpp)
|
|
327
304
|
} catch (let __error) {
|
|
@@ -23,6 +23,7 @@ namespace margelo::nitro::acousticconnectrn { struct PushPermissionResult; }
|
|
|
23
23
|
#include <NitroModules/Null.hpp>
|
|
24
24
|
#include <optional>
|
|
25
25
|
#include <unordered_map>
|
|
26
|
+
#include <NitroModules/AnyMap.hpp>
|
|
26
27
|
#include <NitroModules/Promise.hpp>
|
|
27
28
|
#include <NitroModules/ArrayBuffer.hpp>
|
|
28
29
|
#include "PushErrorInfo.hpp"
|
|
@@ -69,7 +70,7 @@ namespace margelo::nitro::acousticconnectrn {
|
|
|
69
70
|
virtual std::optional<std::variant<nitro::NullType, std::string>> getStringItemForKey(const std::string& theDefault, const std::string& key, const std::string& moduleName) = 0;
|
|
70
71
|
virtual double getNumberItemForKey(double theDefault, const std::string& key, const std::string& moduleName) = 0;
|
|
71
72
|
virtual bool logCustomEvent(const std::string& eventName, const std::unordered_map<std::string, std::variant<bool, std::string, double>>& values, double level) = 0;
|
|
72
|
-
virtual bool logSignal(const std::
|
|
73
|
+
virtual bool logSignal(const std::shared_ptr<AnyMap>& values, double level) = 0;
|
|
73
74
|
virtual bool logExceptionEvent(const std::string& message, const std::string& stackInfo, bool unhandled) = 0;
|
|
74
75
|
virtual bool logLocation() = 0;
|
|
75
76
|
virtual bool logLocationWithLatitudeLongitude(double latitude, double longitude, double level) = 0;
|
package/package.json
CHANGED
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"!android/src/test/**",
|
|
80
80
|
"android/config.gradle",
|
|
81
81
|
"android/src/main/assets/**",
|
|
82
|
+
"!android/src/main/assets/ConnectLayoutConfig.json",
|
|
82
83
|
"ios/**/*.h",
|
|
83
84
|
"ios/**/*.m",
|
|
84
85
|
"ios/**/*.mm",
|
|
@@ -91,16 +92,12 @@
|
|
|
91
92
|
"plugin/swift",
|
|
92
93
|
"plugin/src",
|
|
93
94
|
"cli",
|
|
95
|
+
"!cli/__tests__/**",
|
|
94
96
|
"ConnectConfig.example.json",
|
|
95
97
|
"*.podspec",
|
|
96
98
|
"README.md",
|
|
97
99
|
"CHANGELOG.md",
|
|
98
|
-
"scripts"
|
|
99
|
-
"Examples/SampleUI/**/*",
|
|
100
|
-
"!Examples/SampleUI/node_modules/**",
|
|
101
|
-
"!Examples/SampleUI/temp/**",
|
|
102
|
-
"!Examples/SampleUI/logs/**",
|
|
103
|
-
"!Examples/SampleUI/android/.gradle/**"
|
|
100
|
+
"scripts"
|
|
104
101
|
],
|
|
105
102
|
"homepage": "https://github.com/go-acoustic/react-native-acoustic-connect",
|
|
106
103
|
"keywords": [
|
|
@@ -229,7 +226,7 @@
|
|
|
229
226
|
"source": "src/index",
|
|
230
227
|
"summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
|
|
231
228
|
"types": "./lib/typescript/src/index.d.ts",
|
|
232
|
-
"version": "19.0.
|
|
229
|
+
"version": "19.0.28",
|
|
233
230
|
"workspaces": [
|
|
234
231
|
"example",
|
|
235
232
|
"Examples/bare-workflow"
|
|
@@ -23,8 +23,8 @@ export declare const withConnectAndroidConfig: ConfigPlugin<ConnectPluginProps>;
|
|
|
23
23
|
* name, so a mismatch makes Gradle fail much later at
|
|
24
24
|
* `:app:processDebugGoogleServices` with the opaque "No matching client found
|
|
25
25
|
* for package name …" — and only after a full prebuild + Gradle config. Surface
|
|
26
|
-
* it here, at the moment the native project is (re)generated, with the exact fix
|
|
27
|
-
*
|
|
26
|
+
* it here, at the moment the native project is (re)generated, with the exact fix.
|
|
27
|
+
* `acoustic-connect doctor` performs the same check up front;
|
|
28
28
|
* this is the guard for a developer who runs `expo run:android` directly.
|
|
29
29
|
*
|
|
30
30
|
* Only the genuine MISMATCH throws. A missing package / googleServicesFile is
|
|
@@ -106,8 +106,8 @@ function isPushEnabled(projectRoot) {
|
|
|
106
106
|
* name, so a mismatch makes Gradle fail much later at
|
|
107
107
|
* `:app:processDebugGoogleServices` with the opaque "No matching client found
|
|
108
108
|
* for package name …" — and only after a full prebuild + Gradle config. Surface
|
|
109
|
-
* it here, at the moment the native project is (re)generated, with the exact fix
|
|
110
|
-
*
|
|
109
|
+
* it here, at the moment the native project is (re)generated, with the exact fix.
|
|
110
|
+
* `acoustic-connect doctor` performs the same check up front;
|
|
111
111
|
* this is the guard for a developer who runs `expo run:android` directly.
|
|
112
112
|
*
|
|
113
113
|
* Only the genuine MISMATCH throws. A missing package / googleServicesFile is
|
|
@@ -19,7 +19,7 @@ export declare function resolveDevelopmentTeam(projectRoot: string, props: Conne
|
|
|
19
19
|
* Why this matters: the NSE mod injects the `aps-environment` entitlement, but
|
|
20
20
|
* a CLI build (`expo run:ios` / `xcodebuild`) with no signing team falls back
|
|
21
21
|
* to ad-hoc signing (`CODE_SIGN_IDENTITY = -`), which DROPS that entitlement —
|
|
22
|
-
* so the OS issues no APNs token and push silently fails
|
|
22
|
+
* so the OS issues no APNs token and push silently fails. Setting
|
|
23
23
|
* the team closes that loop on the prebuild path the SDK owns. Provisioning
|
|
24
24
|
* itself still needs the developer's Apple ID in Xcode and
|
|
25
25
|
* `-allowProvisioningUpdates` on the build (documented in the README).
|
|
@@ -74,7 +74,7 @@ exports.resolveDevelopmentTeam = resolveDevelopmentTeam;
|
|
|
74
74
|
* Why this matters: the NSE mod injects the `aps-environment` entitlement, but
|
|
75
75
|
* a CLI build (`expo run:ios` / `xcodebuild`) with no signing team falls back
|
|
76
76
|
* to ad-hoc signing (`CODE_SIGN_IDENTITY = -`), which DROPS that entitlement —
|
|
77
|
-
* so the OS issues no APNs token and push silently fails
|
|
77
|
+
* so the OS issues no APNs token and push silently fails. Setting
|
|
78
78
|
* the team closes that loop on the prebuild path the SDK owns. Provisioning
|
|
79
79
|
* itself still needs the developer's Apple ID in Xcode and
|
|
80
80
|
* `-allowProvisioningUpdates` on the build (documented in the README).
|
|
@@ -95,8 +95,8 @@ function isPushEnabled(projectRoot: string): boolean {
|
|
|
95
95
|
* name, so a mismatch makes Gradle fail much later at
|
|
96
96
|
* `:app:processDebugGoogleServices` with the opaque "No matching client found
|
|
97
97
|
* for package name …" — and only after a full prebuild + Gradle config. Surface
|
|
98
|
-
* it here, at the moment the native project is (re)generated, with the exact fix
|
|
99
|
-
*
|
|
98
|
+
* it here, at the moment the native project is (re)generated, with the exact fix.
|
|
99
|
+
* `acoustic-connect doctor` performs the same check up front;
|
|
100
100
|
* this is the guard for a developer who runs `expo run:android` directly.
|
|
101
101
|
*
|
|
102
102
|
* Only the genuine MISMATCH throws. A missing package / googleServicesFile is
|
|
@@ -63,7 +63,7 @@ export function resolveDevelopmentTeam(
|
|
|
63
63
|
* Why this matters: the NSE mod injects the `aps-environment` entitlement, but
|
|
64
64
|
* a CLI build (`expo run:ios` / `xcodebuild`) with no signing team falls back
|
|
65
65
|
* to ad-hoc signing (`CODE_SIGN_IDENTITY = -`), which DROPS that entitlement —
|
|
66
|
-
* so the OS issues no APNs token and push silently fails
|
|
66
|
+
* so the OS issues no APNs token and push silently fails. Setting
|
|
67
67
|
* the team closes that loop on the prebuild path the SDK owns. Provisioning
|
|
68
68
|
* itself still needs the developer's Apple ID in Xcode and
|
|
69
69
|
* `-allowProvisioningUpdates` on the build (documented in the README).
|
package/scripts/gradleParser.js
CHANGED
|
@@ -21,7 +21,7 @@ console.log("Run gradleParser.js");
|
|
|
21
21
|
// new architecture does not guarantee — and fails the Gradle sync with
|
|
22
22
|
// "Project with path ':react-native-acoustic-connect' could not be
|
|
23
23
|
// found" otherwise. `require.resolve` walks up node_modules from the Android
|
|
24
|
-
// rootDir and finds the package regardless of autolinking.
|
|
24
|
+
// rootDir and finds the package regardless of autolinking.
|
|
25
25
|
const gradleCode = `apply from: new File(["node", "--print", "require.resolve('react-native-acoustic-connect/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsolutePath() + "/android/config.gradle"`
|
|
26
26
|
// Matches the legacy `apply from: project(':react-native-acoustic-connect')...`
|
|
27
27
|
// line so an existing integration is upgraded in place on the next install.
|
package/src/TLTRN.ts
CHANGED
|
@@ -54,7 +54,7 @@ class TLTRN {
|
|
|
54
54
|
static displayDebug = false;
|
|
55
55
|
|
|
56
56
|
static myTimer = {
|
|
57
|
-
handle: null as
|
|
57
|
+
handle: null as ReturnType<typeof setInterval> | null,
|
|
58
58
|
started: 0,
|
|
59
59
|
time: 1000,
|
|
60
60
|
/**
|
|
@@ -110,11 +110,44 @@ class TLTRN {
|
|
|
110
110
|
return result;
|
|
111
111
|
};
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
/**
|
|
114
|
+
* Sentinel for the native `delay` argument meaning "use the
|
|
115
|
+
* `CaptureLayoutDelay` configured for this screen". Both bridges resolve it
|
|
116
|
+
* from the layout config; anything >= 0 is an explicit delay in
|
|
117
|
+
* milliseconds.
|
|
118
|
+
*/
|
|
119
|
+
static USE_CONFIGURED_CAPTURE_DELAY = -1;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Captures the layout of the current screen.
|
|
123
|
+
*
|
|
124
|
+
* @param name Screen name to associate with the capture.
|
|
125
|
+
* @param delayMs Milliseconds to wait before capturing. Omit it to use the
|
|
126
|
+
* `CaptureLayoutDelay` from `ConnectConfig.json` — that is the setting to
|
|
127
|
+
* reach for when a screen transition animation is still running and the
|
|
128
|
+
* capture would otherwise catch a half-rendered screen. Pass `0` to
|
|
129
|
+
* capture immediately.
|
|
130
|
+
*
|
|
131
|
+
* Passing no delay used to send a hardcoded `0`, which made
|
|
132
|
+
* `CaptureLayoutDelay` inert for React Native apps and fired the capture at
|
|
133
|
+
* the *start* of the transition rather than after it.
|
|
134
|
+
*
|
|
135
|
+
* @returns With no `delayMs` — the normal case — only that the capture was
|
|
136
|
+
* **scheduled**, not that it produced a layout message. The native
|
|
137
|
+
* deferred overload dispatches and returns immediately, so anything that
|
|
138
|
+
* goes wrong once it runs (no view controller resolved, layout capture
|
|
139
|
+
* gated off by config) cannot be reflected here; those surface in logcat
|
|
140
|
+
* / os_log instead. Pass `0` and the value describes the capture itself,
|
|
141
|
+
* at the cost of capturing mid-transition.
|
|
142
|
+
*/
|
|
143
|
+
static logScreenLayout = (name: string | undefined, delayMs?: number) => {
|
|
114
144
|
TLTRN.currentScreen = name || '';
|
|
115
145
|
let result = false
|
|
116
146
|
try {
|
|
117
|
-
result = AcousticConnectRN.logScreenLayout(
|
|
147
|
+
result = AcousticConnectRN.logScreenLayout(
|
|
148
|
+
TLTRN.currentScreen,
|
|
149
|
+
delayMs === undefined ? TLTRN.USE_CONFIGURED_CAPTURE_DELAY : delayMs
|
|
150
|
+
);
|
|
118
151
|
} catch (error: Error | any) {
|
|
119
152
|
console.log('LogScreenLayout error: ', error.message);
|
|
120
153
|
}
|
|
@@ -168,8 +201,86 @@ class TLTRN {
|
|
|
168
201
|
return result;
|
|
169
202
|
};
|
|
170
203
|
|
|
204
|
+
/**
|
|
205
|
+
* Keys already warned about, so a call site inside a render or a list loop
|
|
206
|
+
* warns once rather than on every pass.
|
|
207
|
+
*/
|
|
208
|
+
static warnedNestedValueSites = new Set<string>();
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Cap on {@link warnedNestedValueSites}.
|
|
212
|
+
*
|
|
213
|
+
* The site key includes the nested keys' names, so a payload built from an
|
|
214
|
+
* API response — per-record ids, timestamps — makes every call a distinct
|
|
215
|
+
* site, and the set would then grow for the life of the session. By the
|
|
216
|
+
* hundredth distinct shape the warning has made its point, so it stops
|
|
217
|
+
* instead of accumulating: bounded memory matters more than warning about
|
|
218
|
+
* shape 101.
|
|
219
|
+
*/
|
|
220
|
+
static WARNED_NESTED_VALUE_SITES_MAX = 100;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Warns when a flat-values payload carries a nested object or array.
|
|
224
|
+
*
|
|
225
|
+
* `logCustomEvent`/`logDialogCustomEvent` are typed for flat scalars, but
|
|
226
|
+
* TypeScript types are erased at runtime: a payload built from an API
|
|
227
|
+
* response, widened through `any`, or passed from untyped JS reaches the
|
|
228
|
+
* bridge with its nesting intact. Both platforms then reshape it silently —
|
|
229
|
+
* Android's SDK chain is typed `HashMap<String, String>` end to end, so a
|
|
230
|
+
* nested value is stringified into whatever its `toString()` yields — and
|
|
231
|
+
* the call still returns `true`. `logSignal` is the API that carries nested
|
|
232
|
+
* JSON on both platforms.
|
|
233
|
+
*
|
|
234
|
+
* Warning only: the payload is passed through untouched, so this changes no
|
|
235
|
+
* behaviour and cannot break a caller who is relying on today's reshaping.
|
|
236
|
+
*
|
|
237
|
+
* @param api Name of the calling API, for the message.
|
|
238
|
+
* @param values The payload about to cross the bridge.
|
|
239
|
+
*/
|
|
240
|
+
static warnOnNestedValues = (api: string, values: Record<string, unknown>) => {
|
|
241
|
+
if (values == null || typeof values !== 'object') {
|
|
242
|
+
return;
|
|
243
|
+
}
|
|
244
|
+
const nested = Object.keys(values).filter((key) => {
|
|
245
|
+
const value = (values as Record<string, unknown>)[key];
|
|
246
|
+
return typeof value === 'object' && value !== null;
|
|
247
|
+
});
|
|
248
|
+
if (nested.length === 0) {
|
|
249
|
+
return;
|
|
250
|
+
}
|
|
251
|
+
const site = `${api}:${nested.sort().join(',')}`;
|
|
252
|
+
if (TLTRN.warnedNestedValueSites.has(site)) {
|
|
253
|
+
return;
|
|
254
|
+
}
|
|
255
|
+
if (TLTRN.warnedNestedValueSites.size >= TLTRN.WARNED_NESTED_VALUE_SITES_MAX) {
|
|
256
|
+
return;
|
|
257
|
+
}
|
|
258
|
+
TLTRN.warnedNestedValueSites.add(site);
|
|
259
|
+
console.warn(
|
|
260
|
+
`TLTRN.${api}: nested value(s) [${nested.sort().join(', ')}] will be flattened — ` +
|
|
261
|
+
`${api} carries flat scalars only, and the native SDKs reshape anything else ` +
|
|
262
|
+
`without reporting it. Use logSignal for nested JSON; it is carried intact on ` +
|
|
263
|
+
`both platforms.`
|
|
264
|
+
);
|
|
265
|
+
};
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* Logs a custom event.
|
|
269
|
+
*
|
|
270
|
+
* @param eventName Event name, as it appears in the posted JSON.
|
|
271
|
+
* @param values Flat key/value pairs. Nested objects and arrays are NOT
|
|
272
|
+
* supported here and are reshaped by the native SDKs — use `logSignal`
|
|
273
|
+
* for nested JSON.
|
|
274
|
+
* @param level Monitoring level for this event.
|
|
275
|
+
* @returns Whether the native SDK **accepted the event for delivery** —
|
|
276
|
+
* not whether the collector received it. The event is queued locally and
|
|
277
|
+
* posted later, so no return value from this call can attest to delivery;
|
|
278
|
+
* a `true` here means only that the SDK took the event. A `false` is also
|
|
279
|
+
* logged natively (logcat / os_log) so the rejection is visible.
|
|
280
|
+
*/
|
|
171
281
|
static logCustomEvent = async (eventName: string, values: Record<string, string | number | boolean>, level: number) => {
|
|
172
282
|
let result = false
|
|
283
|
+
TLTRN.warnOnNestedValues('logCustomEvent', values);
|
|
173
284
|
try {
|
|
174
285
|
result = AcousticConnectRN.logCustomEvent(eventName, values, level);
|
|
175
286
|
} catch (error: Error | any) {
|
|
@@ -209,8 +320,15 @@ class TLTRN {
|
|
|
209
320
|
return result;
|
|
210
321
|
};
|
|
211
322
|
|
|
323
|
+
/**
|
|
324
|
+
* Logs a custom event tied to a dialog.
|
|
325
|
+
*
|
|
326
|
+
* Same flat-values contract and same return-value meaning as
|
|
327
|
+
* {@link logCustomEvent} — it routes to the same native API.
|
|
328
|
+
*/
|
|
212
329
|
static logDialogCustomEvent = async (dialogId: string, eventName: string, values: Record<string, string | number | boolean>) => {
|
|
213
330
|
let result = false
|
|
331
|
+
TLTRN.warnOnNestedValues('logDialogCustomEvent', values);
|
|
214
332
|
try {
|
|
215
333
|
result = AcousticConnectRN.logDialogCustomEvent(dialogId, eventName, values);
|
|
216
334
|
} catch (error: Error | any) {
|
|
@@ -356,7 +474,10 @@ class TLTRN {
|
|
|
356
474
|
static logTeal = async () => {
|
|
357
475
|
try {
|
|
358
476
|
TLTRN.isLoggingData = 1;
|
|
359
|
-
var res = await AcousticConnectRN.logScreenLayout(
|
|
477
|
+
var res = await AcousticConnectRN.logScreenLayout(
|
|
478
|
+
TLTRN.currentScreen,
|
|
479
|
+
TLTRN.USE_CONFIGURED_CAPTURE_DELAY
|
|
480
|
+
);
|
|
360
481
|
var dict = { ReactLayoutTime: TLTRN.totalRenderTime };
|
|
361
482
|
var result = await AcousticConnectRN.logCustomEvent("ReactPlugin", dict, 1);
|
|
362
483
|
if (TLTRN.displayDebug) {
|