You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Corrected escaped apostrophe in string resource
The string resource `summary_preference_android_studio_navigation_drawer` contained an unescaped apostrophe. This commit escapes the apostrophe to prevent potential issues.
Copy file name to clipboardExpand all lines: app/src/main/res/values/strings.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -361,7 +361,7 @@
361
361
<stringname="summary_preference_android_studio_simple_notifications">Learn how to use notifications in your Android app with this lesson. Discover how to create a notification channel and builder, and how to show notifications to your users. Explore the different options available for customizing your notifications.</string>
362
362
<stringname="summary_preference_android_studio_inbox_notifications">Learn how to use inbox style notifications in your Android app with this lesson. Discover how to create a notification channel and builder, and how to set the style of your notifications to an InboxStyle with multiple lines of text and a summary text. Explore the different options available for customizing your inbox style notifications.</string>
363
363
<stringname="summary_preference_android_studio_bottom_navigation">A bottom navigation bar lets you quickly switch between top-level views in your app.</string>
364
-
<stringname="summary_preference_android_studio_navigation_drawer">A navigation drawer slides in from the side and displays the app's main navigation options.</string>
364
+
<stringname="summary_preference_android_studio_navigation_drawer">A navigation drawer slides in from the side and displays the app\'s main navigation options.</string>
365
365
<stringname="summary_alert_dialog_close">Are you sure you want to exit?</string>
366
366
<stringname="summary_alert_dialog_message">This will be the message you will see on screen!</string>
367
367
<stringname="summary_alert_dialog_require_restart">To take effect please restart the app!</string>
0 commit comments