Home
last modified time | relevance | path

Searched refs:mShouldPlayDefaultSound (Results 1 – 1 of 1) sorted by relevance

/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/model/
H A DNotificationContent.java27 private boolean mShouldPlayDefaultSound; field in NotificationContent
74 return mShouldPlayDefaultSound; in shouldPlayDefaultSound()
128 mShouldPlayDefaultSound = in.readByte() != 0; in NotificationContent()
153 dest.writeByte((byte) (mShouldPlayDefaultSound ? 1 : 0)); in writeToParcel()
173 out.writeByte(mShouldPlayDefaultSound ? 1 : 0); in writeObject()
197 mShouldPlayDefaultSound = in.readByte() == 1; in readObject()
247 private boolean mShouldPlayDefaultSound; field in NotificationContent.Builder
306 mShouldPlayDefaultSound = true; in useDefaultSound()
312 mShouldPlayDefaultSound = false; in setSound()
345 content.mShouldPlayDefaultSound = mShouldPlayDefaultSound; in build()