diff --git a/apps/native-component-list/src/screens/UI/BottomSheetScreen.android.tsx b/apps/native-component-list/src/screens/UI/BottomSheetScreen.android.tsx index dae1f4296c2e5a..d919b9e843a07c 100644 --- a/apps/native-component-list/src/screens/UI/BottomSheetScreen.android.tsx +++ b/apps/native-component-list/src/screens/UI/BottomSheetScreen.android.tsx @@ -18,13 +18,15 @@ export default function BottomSheetScreen() { isOpened: {isOpened ? 'yes' : 'no'} - - setIsOpened(e)}> - - Hello world - - - + {isOpened && ( + + setIsOpened(false)}> + + Hello world + + + + )} ); } diff --git a/apps/native-component-list/src/screens/UI/JetpackComposePrimitivesScreen.android.tsx b/apps/native-component-list/src/screens/UI/JetpackComposePrimitivesScreen.android.tsx index 2efb07789d5ae9..a74bbed3438f5a 100644 --- a/apps/native-component-list/src/screens/UI/JetpackComposePrimitivesScreen.android.tsx +++ b/apps/native-component-list/src/screens/UI/JetpackComposePrimitivesScreen.android.tsx @@ -23,7 +23,7 @@ export default function JetpackComposePrimitivesScreen() { horizontalArrangement="spaceBetween" verticalAlignment="center" modifiers={[testID('leftTextRow')]}> - + Left Text @@ -33,7 +33,7 @@ export default function JetpackComposePrimitivesScreen() { horizontalArrangement="spaceBetween" verticalAlignment="center" modifiers={[testID('interpolatedTextRow')]}> - + {/* eslint-disable-next-line */} Hello {'world'} {123} @@ -42,23 +42,20 @@ export default function JetpackComposePrimitivesScreen() { {/* Example 2: Column with different Text styles */} Large Bold Text Medium Normal Text Small Light Text @@ -77,10 +74,12 @@ export default function JetpackComposePrimitivesScreen() { modifiers={[background('#ff0000'), weight(2), testID('nestedColumn1')]} verticalArrangement="center" horizontalAlignment="center"> - + Nested - + Column 1 @@ -88,10 +87,12 @@ export default function JetpackComposePrimitivesScreen() { verticalArrangement="center" horizontalAlignment="center" modifiers={[testID('nestedColumn2')]}> - + Nested - + Column 2 @@ -99,10 +100,12 @@ export default function JetpackComposePrimitivesScreen() { modifiers={[background('#ff0000'), weight(4), testID('nestedColumn3')]} verticalArrangement="center" horizontalAlignment="center"> - + Nested - + Column 3 @@ -110,10 +113,12 @@ export default function JetpackComposePrimitivesScreen() { verticalArrangement="center" horizontalAlignment="center" modifiers={[testID('nestedColumn4')]}> - + Nested - + Column 4 diff --git a/apps/notification-tester/scripts/prebuild-android.sh b/apps/notification-tester/scripts/prebuild-android.sh index 0bd7395cedb728..6e79b9519952fb 100755 --- a/apps/notification-tester/scripts/prebuild-android.sh +++ b/apps/notification-tester/scripts/prebuild-android.sh @@ -1,6 +1,6 @@ #!/bin/bash -RELEASE=1 MICROFOAM_GOOGLE_SERVICES_JSON=~/google-services-microfoam-vonovak.json EXPO_NO_GIT_STATUS=1 EXPO_DEBUG=1 npx expo prebuild --clean -p android --template expo-template-bare-minimum@canary +RELEASE=1 MICROFOAM_GOOGLE_SERVICES_JSON=~/google-services-microfoam-vonovak.json EXPO_NO_GIT_STATUS=1 EXPO_DEBUG=1 npx expo prebuild --clean -p android --template expo-template-bare-minimum@55 echo 'include(":expo-modules-test-core")' >> ./android/settings.gradle diff --git a/apps/notification-tester/scripts/prebuild-ios.sh b/apps/notification-tester/scripts/prebuild-ios.sh index 2bffde3f1edbbd..4fb85fc14c1c49 100755 --- a/apps/notification-tester/scripts/prebuild-ios.sh +++ b/apps/notification-tester/scripts/prebuild-ios.sh @@ -1,3 +1,3 @@ #!/bin/bash -EXPO_NO_GIT_STATUS=1 EXPO_DEBUG=1 npx expo prebuild --clean -p ios --template expo-template-bare-minimum@canary && xed ios +EXPO_NO_GIT_STATUS=1 EXPO_DEBUG=1 npx expo prebuild --clean -p ios --template expo-template-bare-minimum@55 && xed ios diff --git a/apps/notification-tester/src/app/scenarios.tsx b/apps/notification-tester/src/app/scenarios.tsx index 11a457e9339a37..a44f87d7947764 100644 --- a/apps/notification-tester/src/app/scenarios.tsx +++ b/apps/notification-tester/src/app/scenarios.tsx @@ -9,6 +9,34 @@ import { ScrollView } from '../misc/Themed'; export default function ScenariosPage() { return ( + Local notification with custom sound + { + await Notifications.scheduleNotificationAsync({ + content: { + title: 'Custom sound test', + body: 'This should play bells_sound.wav', + sound: 'bells_sound.wav', + }, + trigger: null, + }); + }} + /> + { + await Notifications.scheduleNotificationAsync({ + content: { + title: 'Missing sound test', + body: 'This should warn about missing sound', + sound: 'does_not_exist.wav', + }, + trigger: null, + }); + }} + /> + Send push notification with deep link