-
Notifications
You must be signed in to change notification settings - Fork 52
[tizen_notification] Bump version to 0.2.0 #481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| /// Indicator. | ||
| static const int indicator = 1 << 3; | ||
| /// Display in the indicator area (the top of the screen). | ||
| static const int indicator = 1 << 1 | 1 << 3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTIFICATION_DISPLAY_APP_TICKER and NOTIFICATION_DISPLAY_APP_INDICATOR do not work in the way they are documented and now they are a single property.
NOTIFICATION_DISPLAY_APP_INDICATORhas no effect on mobile (onlyNOTIFICATION_DISPLAY_APP_TICKERworks in an unexpected way).NOTIFICATION_DISPLAY_APP_TICKERis effectively the same asNOTIFICATION_DISPLAY_APP_INDICATORon RPi.
packages/tizen_notification/tizen/src/tizen_notification_plugin.cc
Outdated
Show resolved
Hide resolved
bbrto21
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
JSUYA
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
NotificationImage→NotificationIconsProperty→NotificationPropertyDisplayApplist→NotificationStyleTizenNotificationDetailsand enum types (SoundTypeandVibrationType) totypes.dart.NotificationProperty.disableAppLaunchautomatically ifappControlis not set.