Sfoglia il codice sorgente

Add note about relative sound uri`s on Android.

Images or sounds must be placed into the res-folder and not into the assets-folder.
Sebastián Katzer 12 anni fa
parent
commit
9d02393571
1 ha cambiato i file con 3 aggiunte e 2 eliminazioni
  1. 3 2
      README.md

+ 3 - 2
README.md

@@ -160,15 +160,16 @@ The default sound is `RingtoneManager.TYPE_NOTIFICATION`. But an specific sound
 The sound must be a absolute or relative Uri pointing to the sound file.
 ```javascript
 /**
- * Plays the sound if the notification pop's up
+ * Plays the `beep.mp3` sound if the notification pop's up
  */
-window.plugin.notification.local.add({ sound: 'res/sounds/beep.mp3' });
+window.plugin.notification.local.add({ "android.resource://" + package_name + "/raw/beep" });
 
 /**
  * Plays the `RingtoneManager.TYPE_ALARM` sound
  */
 window.plugin.notification.local.add({ sound: 'TYPE_ALARM' });
 ```
+**Note:** Images or sounds must be placed into the res-folder and not into the assets-folder.
 
 ### Notification sound on iOS
 The sound must be located in your project's resources and must be a caf file.