purgetss
Version:
A package that simplifies mobile app creation for Titanium developers.
12 lines • 806 B
Markdown
```css
// Property: audioStreamType
// Description: The audio stream type to use when playing the sound.
// Component(s): Ti.Android.Notification
'.audio-stream-type-alarm[platform=android]': { audioStreamType: Ti.Android.STREAM_ALARM }
'.audio-stream-type[platform=android]': { audioStreamType: Ti.Android.STREAM_DEFAULT }
'.audio-stream-type-music[platform=android]': { audioStreamType: Ti.Android.STREAM_MUSIC }
'.audio-stream-type-notification[platform=android]': { audioStreamType: Ti.Android.STREAM_NOTIFICATION }
'.audio-stream-type-ring[platform=android]': { audioStreamType: Ti.Android.STREAM_RING }
'.audio-stream-type-system[platform=android]': { audioStreamType: Ti.Android.STREAM_SYSTEM }
'.audio-stream-type-voice-call[platform=android]': { audioStreamType: Ti.Android.STREAM_VOICE_CALL }
```