Skip to content

Commit

Permalink
fix install notification strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr328 committed Oct 25, 2020
1 parent 5b871a1 commit 8d7e766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ private void notify(int title, int content) {
.setContentTitle(getString(title))
.setContentText(getString(content))
.setContentIntent(intent)
.setAutoCancel(true)
.setStyle(new Notification.BigTextStyle().bigText(getString(content)))
.build();

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
<string name="notification_exception">Installation Failure</string>
<string name="notification_exception_content">ClipboardWhitelist installation error, click here to check.</string>
<string name="notice">Notice</string>
<string name="application_clipboard_detect">Applications cannot detect that the clipboard is not accessible in the background and they may still assume that the clipboard is unavailable.</string>
<string name="application_clipboard_detect">Applications cannot detect that the clipboard is accessible in the background and they may still assume that clipboard is unavailable.</string>
</resources>

0 comments on commit 8d7e766

Please sign in to comment.