diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 85d3c35b1..02e27361c 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -21,8 +21,8 @@ android { applicationId = "com.sameerasw.essentials" minSdk = 26 targetSdk = 36 - versionCode = 30 - versionName = "11.6" + versionCode = 31 + versionName = "12.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/app/src/main/java/com/sameerasw/essentials/MainActivity.kt b/app/src/main/java/com/sameerasw/essentials/MainActivity.kt index 0f933cb1f..0ddab28a8 100644 --- a/app/src/main/java/com/sameerasw/essentials/MainActivity.kt +++ b/app/src/main/java/com/sameerasw/essentials/MainActivity.kt @@ -191,6 +191,27 @@ class MainActivity : FragmentActivity() { ) } + // Animate the branding icon if it exists + val brandingViewId = resources.getIdentifier("splashscreen_branding_view", "id", "android") + val brandingView = if (brandingViewId != 0) { + splashScreenView.findViewById(brandingViewId) + } else { + null + } + + if (brandingView != null) { + ObjectAnimator.ofFloat( + brandingView, + "translationY", + 0f, + -brandingView.height.toFloat() + ).apply { + interpolator = AnticipateInterpolator() + duration = 750 + start() + } + } + fadeOut.start() } catch (e: Exception) { // Fallback for any unexpected exceptions during animation diff --git a/app/src/main/java/com/sameerasw/essentials/domain/DIYTabs.kt b/app/src/main/java/com/sameerasw/essentials/domain/DIYTabs.kt index 5e2396378..9f26741d2 100644 --- a/app/src/main/java/com/sameerasw/essentials/domain/DIYTabs.kt +++ b/app/src/main/java/com/sameerasw/essentials/domain/DIYTabs.kt @@ -4,7 +4,7 @@ import androidx.annotation.StringRes import com.sameerasw.essentials.R enum class DIYTabs(@StringRes val title: Int, val subtitle: Any, val iconRes: Int) { - ESSENTIALS(R.string.tab_essentials, if (com.sameerasw.essentials.BuildConfig.DEBUG) "ʕ •ᴥ• ʔ Debug" else "(◍•ᴗ•◍)", R.drawable.ic_stat_name), + ESSENTIALS(R.string.tab_essentials, if (com.sameerasw.essentials.BuildConfig.DEBUG) "=^._.^= ∫ Debug" else "=^..^=", R.drawable.ic_stat_name), FREEZE(R.string.tab_freeze, R.string.tab_freeze_subtitle, R.drawable.rounded_mode_cool_24), DIY(R.string.tab_diy, R.string.tab_diy_subtitle, R.drawable.rounded_experiment_24), APPS(R.string.tab_apps, R.string.tab_apps_subtitle, R.drawable.rounded_apps_24) diff --git a/app/src/main/java/com/sameerasw/essentials/ui/activities/QSPreferencesActivity.kt b/app/src/main/java/com/sameerasw/essentials/ui/activities/QSPreferencesActivity.kt index b2667a0b6..e4b958021 100644 --- a/app/src/main/java/com/sameerasw/essentials/ui/activities/QSPreferencesActivity.kt +++ b/app/src/main/java/com/sameerasw/essentials/ui/activities/QSPreferencesActivity.kt @@ -60,6 +60,15 @@ class QSPreferencesActivity : ComponentActivity() { return } + if (componentName.className == "com.sameerasw.essentials.services.tiles.DeveloperOptionsTileService") { + val devIntent = Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS).apply { + flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP + } + startActivity(devIntent) + finish() + return + } + val feature = when (componentName.className) { "com.sameerasw.essentials.services.tiles.CaffeinateTileService" -> "Caffeinate" "com.sameerasw.essentials.services.tiles.NotificationLightingTileService" -> "Notification lighting" @@ -73,7 +82,6 @@ class QSPreferencesActivity : ComponentActivity() { "com.sameerasw.essentials.services.tiles.AdaptiveBrightnessTileService" -> "Quick settings tiles" "com.sameerasw.essentials.services.tiles.MapsPowerSavingTileService" -> "Maps power saving mode" "com.sameerasw.essentials.services.tiles.UsbDebuggingTileService" -> "Quick settings tiles" - "com.sameerasw.essentials.services.tiles.DeveloperOptionsTileService" -> "Quick settings tiles" "com.sameerasw.essentials.services.tiles.BatteryNotificationTileService" -> "Battery notification" "com.sameerasw.essentials.services.tiles.ChargeQuickTileService" -> "Quick settings tiles" "com.sameerasw.essentials.services.tiles.AlwaysOnDisplayTileService" -> "Always on Display" diff --git a/app/src/main/res/drawable/ic_branding_avatar.xml b/app/src/main/res/drawable/ic_branding_avatar.xml new file mode 100644 index 000000000..82ea350bd --- /dev/null +++ b/app/src/main/res/drawable/ic_branding_avatar.xml @@ -0,0 +1,9 @@ + + + + + diff --git a/app/src/main/res/drawable/ic_branding_avatar_content.xml b/app/src/main/res/drawable/ic_branding_avatar_content.xml new file mode 100644 index 000000000..79c272fa7 --- /dev/null +++ b/app/src/main/res/drawable/ic_branding_avatar_content.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml index 2a5a04f32..20c88bb20 100644 --- a/app/src/main/res/drawable/ic_launcher_foreground.xml +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -2,7 +2,8 @@ android:width="108dp" android:height="108dp" android:viewportWidth="108" - android:viewportHeight="108"> + android:viewportHeight="108" + android:tint="@color/branding_icon_background"> diff --git a/app/src/main/res/drawable/ic_launcher_foreground_light.xml b/app/src/main/res/drawable/ic_launcher_foreground_light.xml index c6367716e..349d2cd3d 100644 --- a/app/src/main/res/drawable/ic_launcher_foreground_light.xml +++ b/app/src/main/res/drawable/ic_launcher_foreground_light.xml @@ -2,7 +2,8 @@ android:width="108dp" android:height="108dp" android:viewportWidth="108" - android:viewportHeight="108"> + android:viewportHeight="108" + android:tint="@color/branding_icon_background"> diff --git a/app/src/main/res/drawable/sameerasw_com.xml b/app/src/main/res/drawable/sameerasw_com.xml new file mode 100644 index 000000000..2fb41372f --- /dev/null +++ b/app/src/main/res/drawable/sameerasw_com.xml @@ -0,0 +1,18 @@ + + + + + diff --git a/app/src/main/res/values-ach/strings.xml b/app/src/main/res/values-ach/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-ach/strings.xml +++ b/app/src/main/res/values-ach/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-af/strings.xml b/app/src/main/res/values-af/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-af/strings.xml +++ b/app/src/main/res/values-af/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index b14e4b1dd..11c2dc5ae 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 4ef814872..beb28e9eb 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -61,6 +61,10 @@ Ein Blick auf aktive Medien auf dem AOD Dock-Modus Behalte das Overlay dauerhaft auf dem AOD, während Musik spielt + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Medienlautstärke umschalten Wenn der Bildschirm ausgeschaltet ist, kann durch langes Drücken der ausgewählten Taste die zugehörige Aktion ausgelöst werden. Auf Pixel-Geräten wird diese Aktion aufgrund von Systembeschränkungen nur ausgelöst, wenn das Always-On-Display aktiviert ist. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Sicherheit bei Bildschirmsperre Sicherheit bei Bildschirmsperre @@ -355,6 +363,8 @@ Selten verwendete Apps deaktivieren Wasserzeichen Fotos mit EXIF-Daten und Logos versehen + Always on Display + Show time and info while screen off Kalender-Synchronisierung Synchronisiere deine Ereignisse mit deiner Uhr Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Herunterladen Display aus @@ -830,6 +842,12 @@ vibration gefühl + + battery + charge + optimization + pixel + Auswahl invertieren Zeige System-Apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-en/strings.xml +++ b/app/src/main/res/values-en/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index c688bfe01..20a740c8b 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 01c843c40..442427241 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -61,6 +61,10 @@ Aperçu du média joué sur le mode Always-on Mode docké Garder la superposition visible indéfiniment quand de la musique est jouée sur le mode Always-on + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Accorder l\'accès aux notifications Activer/désactiver le volume du média Quand l\'écran est éteint, appuyez longuement sur le bouton sélectionné pour déclencher son action assignée. Sur les appareils Pixel, cette action ne se déclenche que si le mode Always-on est activé à cause de limitations systèmes. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Sécurité d\'écran verrouillé Écran de verrouillage @@ -355,6 +363,8 @@ Désactiver les applications rarement utilisées Filigrane Ajoutez des données EXIF et des logos aux photos + Always on Display + Show time and info while screen off Synchronisation des calendriers Synchroniser les événements sur votre montre Superposition @@ -594,6 +604,7 @@ Masquer le contenu sensible sur l\'écran de verrouillage.\n\nChoisissez le contenu des notifications à afficher ou à cacher quand votre appareil est verrouillé. Activez ou désactivez la fonctionnalité \"Appuyer pour activer l\'écran\".\n\nActivez ou désactivez la capacité de rallumer votre écran avec un appui. Activez ou désactivez le mode Always-on.\n\nActivez ou désactivez rapidement le mode Always-on qui permet de voir des informations une fois l\'écran éteint. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combinez les deux canaux audios en mono.\n\nCela peut être utile quand vous utilisez un seul écouteur ou pour l\'aide à l\'accessibilité. Activez ou désactivez la lampe torche.\n\nUn appui long ouvre les contrôles d\'intensité en fonction de l\'implémentation matérielle que certains appareils peuvent manquer. Gardez l\'écran allumé pendant la charge.\n\nEmpêchez l\'écran de s\'éteindre tant que l\'appareil est connecté à une source d\'énergie qui convient au débogage USB. @@ -602,6 +613,7 @@ Activez ou désactivez le DNS Privé.\n\nChangez entre les modes désactivé, automatique et nom d\'hôte. Activez ou désactivez le débogage USB.\n\nActivez ou désactiver l\'accès au débogage ADB directement depuis les \"Réglages rapides\". Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Télécharger Écran éteint @@ -830,6 +842,12 @@ vibration ressenti + + battery + charge + optimization + pixel + Inverser la sélection Afficher les applis système @@ -1064,4 +1082,8 @@ Échelle d\'animation des transitions Échelle d\'animation des fenêtres Ajustez la taille de la police, son épaisseur et les vitesses d\'animations pour tout le système. Veuillez noter que certains paramètres peuvent nécessiter des permissions avancées ou un redémarrage pour certaines applis afin d\'appliquer les modifications. \n\nDes permissions additionnelles comme Shizuku ou l\'accès racine (root) peuvent être nécessaires pour l\'ajustement des échelles + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-he/strings.xml +++ b/app/src/main/res/values-he/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 3fe710f31..0b0d37362 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -62,6 +62,10 @@ Le app bloccate richiederanno l\'autenticazione all\'apertura. L\'app rimarrà s Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -213,6 +217,10 @@ Le app bloccate richiederanno l\'autenticazione all\'apertura. L\'app rimarrà s dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -356,6 +364,8 @@ Le app bloccate richiederanno l\'autenticazione all\'apertura. L\'app rimarrà s Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -595,6 +605,7 @@ Le app bloccate richiederanno l\'autenticazione all\'apertura. L\'app rimarrà s Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -603,6 +614,7 @@ Le app bloccate richiederanno l\'autenticazione all\'apertura. L\'app rimarrà s Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -831,6 +843,12 @@ Le app bloccate richiederanno l\'autenticazione all\'apertura. L\'app rimarrà s vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1065,4 +1083,8 @@ Le app bloccate richiederanno l\'autenticazione all\'apertura. L\'app rimarrà s Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 2a44038bc..4377cfaf5 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -61,6 +61,10 @@ AODにメディアの情報を表示 ドックモード AODで音楽を再生している間、無期限にオーバーレイを表示します + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. 通知アクセスを付与 メディア音量を調整 画面がオフのときに、選択したボタンを長押しすると、割り当てられたアクションが実行されます。Pixelデバイスでは、システムの制限により、このアクションはAODがオンの場合にのみ実行されます。 @@ -113,8 +117,8 @@ その他のオプション すべてのアプリをフリーズ すべてのアプリのフリーズを解除 - Export frozen apps list - Import frozen apps list + フリーズアプリリストをエクスポート + フリーズアプリリストをインポート フリーズさせるアプリを選択 フリーズできるアプリを選択してください 自動化 @@ -194,8 +198,8 @@ 自動 OFF USBデバッグ - Color Picker - Are you sure you\'re on Androdi 17? (╯°_°)╯ + カラーピッカー + 本当にAndroid 17を使っていますか? (╯°_°)╯ Eye Dropper オン オフ @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized ロック画面セキュリティ ロック画面セキュリティ @@ -355,6 +363,8 @@ あまり使わないアプリを無効にする ウォーターマーク 写真にEXIFデータとロゴを追加する + Always on Display + Show time and info while screen off カレンダー同期 Watchにイベントを同期します オーバーレイ @@ -594,6 +604,7 @@ ロック画面で機密性の高いコンテンツを非表示にします。\n\nデバイスがロックされているときに通知コンテンツを表示するか非表示にするかを切り替えます。 タップして起動する機能を切り替えます。\n\nタップで画面を起動する機能を有効または無効にします。 常時表示ディスプレイを切り替えます。\n\n常時表示ディスプレイを素早く有効または無効にして、情報を一目で確認します。 + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. 音声チャンネルをモノラルに統合します。\n\n片方のイヤホンを使用する場合や、アクセシビリティの目的で便利です。 フラッシュライトのオン/オフを切り替えます。\n\n長押しすると明るさ調整のコントロールが開きます。これはハードウェア実装が必要な場合があり、一部のデバイスでは対応していない可能性があります。 充電中は画面をスリープさせないようにします。\n\nデバイスが電源に接続されている間は画面がスリープ状態にならないようにします。デバッグ中の開発者に適しています。 @@ -601,7 +612,8 @@ 明るさ自動調整の切り替え\n\n周囲の明るさに基づく画面の明るさの自動調整を有効または無効にします。 プライベートDNSを切り替えるます。\n\nオフ、自動、プライベートDNSプロバイダーモードを切り替えます。 USBデバッグを切り替えます。\n\nクイック設定から直接ADBデバッグアクセスを有効または無効にします。 - Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Android 17 BETA 2で導入されたカラーピッカーツールを起動します + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile ダウンロード 画面オフ @@ -830,6 +842,12 @@ バイブレーション 感じる + + battery + charge + optimization + pixel + 選択を反転 システムアプリを表示 @@ -1064,4 +1082,8 @@ トランジションアニメスケール ウィンドウアニメスケール システム全体のフォントサイズ、太さ、アニメーション速度を調整します。一部のアプリでは変更を反映させるために高度な権限やデバイスの再起動が必要な場合があります。\n\nサイズ調整には追加のShizuku権限またはRoot権限が必要になる場合があります + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-night-v31/colors_app.xml b/app/src/main/res/values-night-v31/colors_app.xml new file mode 100644 index 000000000..d5557da1a --- /dev/null +++ b/app/src/main/res/values-night-v31/colors_app.xml @@ -0,0 +1,4 @@ + + + @android:color/system_accent1_200 + diff --git a/app/src/main/res/values-night-v31/splash.xml b/app/src/main/res/values-night-v31/splash.xml index 14ad992e7..6cb90ffb4 100644 --- a/app/src/main/res/values-night-v31/splash.xml +++ b/app/src/main/res/values-night-v31/splash.xml @@ -6,6 +6,7 @@ true false @drawable/ic_launcher_foreground + @drawable/ic_branding_avatar 3000 @style/Theme.Essentials diff --git a/app/src/main/res/values-night/colors_app.xml b/app/src/main/res/values-night/colors_app.xml index fe17044b8..15f83ad1d 100644 --- a/app/src/main/res/values-night/colors_app.xml +++ b/app/src/main/res/values-night/colors_app.xml @@ -2,5 +2,6 @@ #FF000000 + #FFD0BCFF diff --git a/app/src/main/res/values-night/splash.xml b/app/src/main/res/values-night/splash.xml index c42054381..09f3c513a 100644 --- a/app/src/main/res/values-night/splash.xml +++ b/app/src/main/res/values-night/splash.xml @@ -6,7 +6,7 @@ true false @color/app_window_background - @mipmap/ic_launcher + @drawable/ic_launcher_foreground 2000 @style/Theme.Essentials diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index a68a093c7..c3ac8f036 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -61,6 +61,10 @@ Media bekijken in één blik op het Always-On Display Gedockte modus Houd de overlay zichtbaar terwijl muziek aan het afspelen is op de Always-On Display + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Meldingstoegang geven Mediavolume in-/uitschakelen Wanneer het scherm uit is, kan door de geselecteerde knop lang in te drukken de bijbehorende actie uitgevoerd worden. Op Pixel-apparaten kan dankzij systeembeperkingen deze actie alleen uitgevoerd worden als de Always-On Display aan is. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Beveiliging bij vergrendeling Beveiliging bij vergrendeling @@ -355,6 +363,8 @@ Schakel weinig gebruikte apps uit Watermerk EXIF-data en logo\'s toevoegen aan foto\'s + Always on Display + Show time and info while screen off Kalenders synchroniseren Gebeurtenissen synchroniseren naar je horloge Overlay @@ -594,6 +604,7 @@ Verberg gevoelige inhoud op het vergrendelscherm.\n\nHet weergeven van meldingsinhoud op het vergrendelscherm in-/uitschakelen. Tikken om te wekken in-/uitschakelen.\n\nDe mogelijkheid om je scherm te wekken met één klik in-/uitschakelen. Always-On Display in-/uitschakelen\n\nSnel de Always-On Display in-/uitscakelen + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Audiokanalen combineren naar mono.\n\nHandig bij gebruik van één oortje of voor toegankelijkheid. De zaklamp in-/uitschakelen\n\nLang indrukken opent de instellingen voor de aanpassing van intensiteit op ondersteunde apparaten. Houd het scherm aan tijdens het opladen.\n\nVoorkomt dat het scherm uitvalt wanneer het apparaat verbonden is met een stroombron, wat handig kan zijn voor ontwikkelaars tijdens het debuggen. @@ -602,6 +613,7 @@ Privé-DNS in-/uitschakelen.\n\nDoor de Uit/Automatisch/Hostnaam privé-DNS-modi schakelen. USB-foutopsporing in-/uitschakelen.\n\nToegang tot foutopsporing via USB in-/uitschakelen via de snelle instellingen. Open het pipethulpmiddel om kleuren te kiezen, geïntroduceerd in Android 17 Bèta 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Downloaden Scherm uit @@ -830,6 +842,12 @@ trillen gevoel + + battery + charge + optimization + pixel + Selectie omdraaien Systeemapps tonen @@ -1064,4 +1082,8 @@ Overgangsanimatieschaal Vensteranimatieschaal Pas de systeemwijde lettertypegrootte, gewicht en animatiesnelheden aan. Let erop dat sommige instellingen mogelijk geavanceerde machtigingen vereisen of het herstarten van het apparaat voordat sommige apps wijzigingen weergeven. \n\nToegevoegde Shizuku- of rootmachtigingen kunnen mogelijk nodig zijn voor het wijzigen van de schaal + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-no/strings.xml +++ b/app/src/main/res/values-no/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index 9b9fe8d0a..7b9f6b7df 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 9c9506408..d38855366 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index ee43cd589..d83dd0395 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -61,6 +61,10 @@ Взгляд на медиа в режиме Always On Display Закрепленный режим Сохраняйте наложение видимым в течение всего времени воспроизведения музыки на Always On Display + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Предоставить доступ к уведомлению Переключение громкости мультимедиа Когда экран выключен, нажмите и удерживайте выбранную кнопку, чтобы активировать назначенное действие. На устройствах Pixel это действие запускается только при включенном AOD из-за системных ограничений. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-si/strings.xml b/app/src/main/res/values-si/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-si/strings.xml +++ b/app/src/main/res/values-si/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index ba3556f21..3018f8ba7 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-v31/colors_app.xml b/app/src/main/res/values-v31/colors_app.xml new file mode 100644 index 000000000..501bfb656 --- /dev/null +++ b/app/src/main/res/values-v31/colors_app.xml @@ -0,0 +1,4 @@ + + + @android:color/system_accent1_600 + diff --git a/app/src/main/res/values-v31/splash.xml b/app/src/main/res/values-v31/splash.xml index 9a312d335..9660ee816 100644 --- a/app/src/main/res/values-v31/splash.xml +++ b/app/src/main/res/values-v31/splash.xml @@ -6,6 +6,7 @@ true false @drawable/ic_launcher_foreground_light + @drawable/ic_branding_avatar 3000 @style/Theme.Essentials diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 62aa1d9a1..2442bb315 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values-zh/strings.xml b/app/src/main/res/values-zh/strings.xml index 68f178f4e..f4ff39184 100644 --- a/app/src/main/res/values-zh/strings.xml +++ b/app/src/main/res/values-zh/strings.xml @@ -61,6 +61,10 @@ Glance at media on AOD Docked mode Keep the overlay visible indefinitely while music is playing on AOD + Notification glance + Keep AOD on while notifications are pending + Same apps as notification lighting + This feature will dynamically enable Always on Display when a notification arrives from a selected app, and disable it once all matching notifications are dismissed. Pick apps or use the same selection as notification lighting. Grant notification access Toggle media volume When the screen is off, long-press the selected button to trigger its assigned action. On Pixel devices, this action only gets triggered if the AOD is on due to system limitations. @@ -212,6 +216,10 @@ dns.quad9.net CleanBrowsing adult-filter-dns.cleanbrowsing.org + Charging + Limit to 80% + Adaptive + Not optimized Screen locked security Screen Locked Security @@ -355,6 +363,8 @@ Disable rarely used apps Watermark Add EXIF data and logos to photos + Always on Display + Show time and info while screen off Calendar Sync Sync events to your watch Overlay @@ -594,6 +604,7 @@ Hide sensitive content on the lock screen.\n\nToggle whether notification content is shown or hidden when your device is locked. Toggle tap to wake functionality.\n\nEnable or disable the ability to wake your screen with a tap. Toggle Always On Display.\n\nQuickly enable or disable the always-on display to view info at a glance. + Automatically control your Always On Display based on your notifications. When a message or alert arrives from a selected app, AOD will stay on until you dismiss the notification, ensuring you never miss important info without wasting battery when no alerts are present. Combine audio channels into mono.\n\nUseful when using a single earbud or for accessibility purposes. Toggle the flashlight.\n\nA Long pressing opens the controls for intensity adjustment which might need hardware implementation which some devices may lack. Keep the screen awake while charging.\n\nPrevents the screen from sleeping as long as the device is connected to a power source which is suitable for developers during debugging. @@ -602,6 +613,7 @@ Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes. Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings. Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2 + Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile Download Screen Off @@ -830,6 +842,12 @@ vibration feel + + battery + charge + optimization + pixel + Invert selection Show system apps @@ -1064,4 +1082,8 @@ Transition animation scale Window animation scale Adjust system-wide font scale, weight, and animation speeds. Note that some settings may require advanced permissions or a device reboot for certain apps to reflect changes. \n\nAdditional shizuku or root permission may be necessary for scale adjustments + Force turn off AOD + Force turn off the AOD when no notifications. Requires accessibility permission. + Auto accessibility + Automatically grants the accessibility permission on app launch if missing using WRITE_SECURE_SETTINGS. diff --git a/app/src/main/res/values/colors_app.xml b/app/src/main/res/values/colors_app.xml index 356f87f44..f6972d1ad 100644 --- a/app/src/main/res/values/colors_app.xml +++ b/app/src/main/res/values/colors_app.xml @@ -2,5 +2,6 @@ #FFFFFFFF + #FF6650a4