Skip to content

Releases: saadqbal/react-native-notification-sounds

Fixed incorrect peer dependency errors

07 Aug 17:06
Compare
Choose a tag to compare

Fixed incorrect peer dependency errors. Thanks to @iamifechi

now support React 18+ and RN 0.72+

03 Aug 17:14
Compare
Choose a tag to compare

now support React 18+ and RN 0.72+. Thanks to @iamifechi .

Replaced deprecated classifier

03 Aug 13:57
aa43064
Compare
Choose a tag to compare

Replaced deprecated classifier with archiveClassifier . Thanks to @iamifechi

Replaced deprecated classifier

03 Aug 13:54
2a21774
Compare
Choose a tag to compare

Replaced deprecated classifier with archiveClassifier . Thanks to @iamifechi

v0.5.3 - TypeScript issues resolved

24 Feb 11:12
Compare
Choose a tag to compare

Added stopSampleSound to ts file.

07 Sep 08:05
Compare
Choose a tag to compare
v0.5.2

removed configs

v0.5.0 - Filter by type

02 Sep 17:43
Compare
Choose a tag to compare

A number of new features added in this release.

  • stopSampleSound() added which will stop the current sound playing.
  • You can now pass a notification type to the getNotifications(type). Type can be 'notification', 'ringtone' or 'alarm' (alarm type is android only)
    e.g
// only load the notification sounds
NotificationSounds.getNotifications('notification').then(soundsList => {
    console.warn('SOUNDS', JSON.stringify(SoundsList));
	playSampleSound(soundsList[1]);
	// if you want to stop any playing sound just call:
	// stopSampleSound();
});