diff --git a/SettingsLib/ButtonPreference/build.gradle b/SettingsLib/ButtonPreference/build.gradle
index 5a3c9741..175094c5 100644
--- a/SettingsLib/ButtonPreference/build.gradle
+++ b/SettingsLib/ButtonPreference/build.gradle
@@ -9,7 +9,7 @@ android {
namespace 'com.android.settingslib.widget.preference.button'
defaultConfig {
- minSdk 21
+ minSdk 23
versionCode 1
versionName "1.0"
}
diff --git a/SettingsLib/CollapsingToolbarBaseActivity/build.gradle b/SettingsLib/CollapsingToolbarBaseActivity/build.gradle
index d4495a4e..71071db2 100644
--- a/SettingsLib/CollapsingToolbarBaseActivity/build.gradle
+++ b/SettingsLib/CollapsingToolbarBaseActivity/build.gradle
@@ -1,5 +1,6 @@
plugins {
id 'com.android.library'
+ id 'org.jetbrains.kotlin.android'
}
def SettingsLibCollapsingToolbarBaseActivity = '../fwb/packages/SettingsLib/CollapsingToolbarBaseActivity'
diff --git a/SettingsLib/LayoutPreference/build.gradle b/SettingsLib/LayoutPreference/build.gradle
index af3a9bfc..14f38ef7 100644
--- a/SettingsLib/LayoutPreference/build.gradle
+++ b/SettingsLib/LayoutPreference/build.gradle
@@ -8,7 +8,7 @@ android {
namespace 'com.android.settingslib.widget.preference.layout'
defaultConfig {
- minSdk 21
+ minSdk 23
versionCode 1
versionName "1.0"
}
diff --git a/SettingsLib/SettingsTheme/build.gradle b/SettingsLib/SettingsTheme/build.gradle
index 45da6b20..f014365d 100644
--- a/SettingsLib/SettingsTheme/build.gradle
+++ b/SettingsLib/SettingsTheme/build.gradle
@@ -9,7 +9,7 @@ android {
namespace 'com.android.settingslib.widget.theme'
defaultConfig {
- minSdk 21
+ minSdk 23
versionCode 1
versionName "1.0"
}
diff --git a/SettingsLib/SettingsThemeFlags/build.gradle b/SettingsLib/SettingsThemeFlags/build.gradle
index 852315ad..a8a59315 100644
--- a/SettingsLib/SettingsThemeFlags/build.gradle
+++ b/SettingsLib/SettingsThemeFlags/build.gradle
@@ -6,7 +6,7 @@ android {
namespace 'com.android.settingslib.widget.theme.flags'
defaultConfig {
- minSdk 21
+ minSdk 23
}
sourceSets {
diff --git a/SettingsLib/TwoTargetPreference/build.gradle b/SettingsLib/TwoTargetPreference/build.gradle
index 8da2902b..512e97cf 100644
--- a/SettingsLib/TwoTargetPreference/build.gradle
+++ b/SettingsLib/TwoTargetPreference/build.gradle
@@ -8,7 +8,7 @@ android {
namespace 'com.android.settingslib.widget.preference.twotarget'
defaultConfig {
- minSdk 21
+ minSdk 23
versionCode 1
versionName "1.0"
}
diff --git a/SettingsLib/fetch.sh b/SettingsLib/fetch.sh
index 83d81c18..6a70383e 100755
--- a/SettingsLib/fetch.sh
+++ b/SettingsLib/fetch.sh
@@ -8,7 +8,7 @@ declare -r SHORT_OPTS=u:,t:
declare -r LONG_OPTS=set-repo-url:,set-repo-tag:,get-repo-url,get-repo-tag,apply-patches-only
declare -r FWB_DIR='fwb'
declare REPO_URL='https://android.googlesource.com/platform/frameworks/base.git'
-declare REPO_TAG='android-16.0.0_r1'
+declare REPO_TAG='android-16.0.0_r4'
declare -a LIBS=(
'BannerMessagePreference'
'ButtonPreference'
diff --git a/build.gradle b/build.gradle
index d55eb843..e618bd66 100644
--- a/build.gradle
+++ b/build.gradle
@@ -160,6 +160,7 @@ android {
// Instead of failing the build due to missing translations, just inform us to avoid
// mistakes during manual import
informational 'MissingTranslation'
+ disable 'GradlePluginVersion'
}
dependenciesInfo {
@@ -267,6 +268,7 @@ dependencies {
exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
+ implementation libs.errorprone.annotations
errorprone libs.errorprone
annotationProcessor libs.errorprone
testAnnotationProcessor libs.errorprone
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 63d3c106..06ffbc50 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -6,13 +6,13 @@
# https://mvnrepository.com/artifact/androidx.room/room-runtime
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/room/room-compiler/
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/room/room-runtime/
-room = "2.7.0-beta01"
+room = "2.8.0-alpha01"
# https://mvnrepository.com/artifact/com.google.dagger/hilt-android
# https://mvnrepository.com/artifact/com.google.dagger/hilt-compiler
# https://android.googlesource.com/platform/external/dagger2
hilt = "2.55"
# https://mvnrepository.com/artifact/io.github.takahirom.roborazzi/roborazzi
-roborazzi = "1.50.0"
+roborazzi = "1.54.0"
# https://mvnrepository.com/artifact/androidx.test.espresso/espresso-core
# https://mvnrepository.com/artifact/androidx.test.espresso/espresso-contrib
espresso = "3.7.0"
@@ -22,21 +22,21 @@ espresso = "3.7.0"
# ========================================
# https://mvnrepository.com/artifact/com.android.application/com.android.application.gradle.plugin
# https://mvnrepository.com/artifact/com.android.library/com.android.library.gradle.plugin
-agp = "8.10.1"
+agp = "8.11.2"
# https://plugins.gradle.org/plugin/org.jetbrains.kotlin.android
kotlin = "2.1.10"
-# https://mvnrepository.com/artifact/net.ltgt.errorprone/net.ltgt.errorprone.gradle.plugin
-errorprone = "4.2.0"
+# https://mvnrepository.com/artifact/com.google.errorprone/error_prone_core
+errorprone = "2.45.0"
# https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kover-gradle-plugin
-kover = "0.9.1"
+kover = "0.9.4"
[libraries]
# https://mvnrepository.com/artifact/androidx.activity/activity
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/activity/activity/
-activity = { module = "androidx.activity:activity", version = "1.11.0-alpha01" }
+activity = { module = "androidx.activity:activity", version = "1.12.0-alpha08" }
# https://mvnrepository.com/artifact/androidx.annotation/annotation
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/annotation/annotation-jvm/
-annotation = { module = "androidx.annotation:annotation", version = "1.9.0-rc01" }
+annotation = { module = "androidx.annotation:annotation", version = "1.9.1" } # TODO: AOSP sources use 1.11.0-alpha01; upgrade when available in Maven Central
# https://mvnrepository.com/artifact/androidx.appcompat/appcompat
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/appcompat/appcompat/
appcompat = { module = "androidx.appcompat:appcompat", version = "1.7.1" } # TODO: AOSP sources use 1.8.0-alpha01; upgrade when available in Maven Central }
@@ -46,18 +46,18 @@ arch-core-testing = { module = "androidx.arch.core:core-testing", version = "2.2
awaitility = { module = "org.awaitility:awaitility", version = "4.3.0" }
# https://mvnrepository.com/artifact/androidx.biometric/biometric
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/biometric/biometric/
-biometric = { module = "androidx.biometric:biometric", version = "1.4.0-alpha02" }
+biometric = { module = "androidx.biometric:biometric", version = "1.4.0-alpha04" }
# https://mvnrepository.com/artifact/androidx.collection/collection
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/collection/collection-jvm/
-collection = { module = "androidx.collection:collection", version = "1.5.0-beta03" }
+collection = { module = "androidx.collection:collection", version = "1.5.0" }
# https://mvnrepository.com/artifact/androidx.coordinatorlayout/coordinatorlayout
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/coordinatorlayout/coordinatorlayout/
coordinatorlayout = { module = "androidx.coordinatorlayout:coordinatorlayout", version = "1.3.0-alpha02" }
# https://mvnrepository.com/artifact/androidx.core/core
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/core/core/
-core = { module = "androidx.core:core", version = "1.16.0-beta01" }
-# https://mvnrepository.com/artifact/com.google.errorprone/error_prone_core
-errorprone = { module = "com.google.errorprone:error_prone_core", version = "2.42.0" }
+core = { module = "androidx.core:core", version = "1.17.0" } # TODO: AOSP sources use 1.19.0-alpha01; upgrade when available in Maven Central }
+errorprone = { module = "com.google.errorprone:error_prone_core", version.ref = "errorprone" }
+errorprone-annotations = { module = "com.google.errorprone:error_prone_annotations", version.ref = "errorprone" }
# https://mvnrepository.com/artifact/androidx.test.espresso/espresso-core
espresso = { module = "androidx.test.espresso:espresso-core", version.ref = "espresso" }
espresso-contrib = { module = "androidx.test.espresso:espresso-contrib", version.ref = "espresso" }
@@ -70,12 +70,12 @@ hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hil
junit = { module = "junit:junit", version = "4.13.2" }
# https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-livedata
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/lifecycle/lifecycle-livedata/
-livedata = { module = "androidx.lifecycle:lifecycle-livedata", version = "2.9.0-alpha12" }
+livedata = { module = "androidx.lifecycle:lifecycle-livedata", version = "2.10.0-alpha04" }
# https://mvnrepository.com/artifact/com.google.android.material/material
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/extras/material-design-x/com/google/android/material/material/
-material = { module = "com.google.android.material:material", version = "1.13.0-alpha08" }
+material = { module = "com.google.android.material:material", version = "1.14.0-alpha02" }
# https://mvnrepository.com/artifact/org.mockito/mockito-core
-mockito = { module = "org.mockito:mockito-core", version = "5.20.0" }
+mockito = { module = "org.mockito:mockito-core", version = "5.21.0" }
# https://mvnrepository.com/artifact/androidx.preference/preference
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/preference/preference/
preference = { module = "androidx.preference:preference", version = "1.2.1" } # TODO AOSP sources use 1.3.0-alpha01; upgrade when available in Maven Central }
@@ -101,12 +101,13 @@ test-rules = { module = "androidx.test:rules", version = "1.7.0" }
test-runner = { module = "androidx.test:runner", version = "1.7.0" }
# https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-viewmodel
# https://android.googlesource.com/platform/prebuilts/sdk/+/refs/heads/main/current/androidx/m2repository/androidx/lifecycle/lifecycle-viewmodel-android/
-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel", version = "2.9.0-alpha12" }
+viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel", version = "2.10.0-alpha04" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
android-library = { id = "com.android.library", version.ref = "agp" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
-errorprone = { id = "net.ltgt.errorprone", version.ref = "errorprone" }
+# https://mvnrepository.com/artifact/net.ltgt.errorprone/net.ltgt.errorprone.gradle.plugin
+errorprone = { id = "net.ltgt.errorprone", version = "4.2.0" }
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }
roborazzi = { id = "io.github.takahirom.roborazzi", version.ref = "roborazzi" }
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index e2847c82..d4081da4 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
diff --git a/res/values-ko-rKR/strings.xml b/res/values-ko-rKR/strings.xml
index 6af88cad..c4ee2d18 100644
--- a/res/values-ko-rKR/strings.xml
+++ b/res/values-ko-rKR/strings.xml
@@ -25,8 +25,8 @@
"이 작업은 되돌릴 수 없습니다. 계속 하시겠습니까?"
"차단하지 않음"
"매일"
- "%1$s]]>에 자동으로 켜짐"
- "%1$s]]>에 자동으로 꺼짐"
+ "%1$s%2$1s]]>에 자동으로 켜짐"
+ "%1$s%2$1s]]>에 자동으로 꺼짐"
"자동으로 켜지지 않음"
"자동으로 끄지 않음"
"일정 없음"
diff --git a/res/values-v36/themes_expressive.xml b/res/values-v36/themes_expressive.xml
index 713d27b5..4a5abe12 100644
--- a/res/values-v36/themes_expressive.xml
+++ b/res/values-v36/themes_expressive.xml
@@ -7,5 +7,16 @@
- @color/settingslib_materialColorSurfaceBright
- @color/settingslib_materialColorSurfaceDim
+
+ - @style/ExpressiveTwoTargetPreferenceTheme.Custom
+
+
+
+
+
diff --git a/settings.gradle b/settings.gradle
index b176f88c..4a1d2b2a 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -6,8 +6,20 @@ pluginManagement {
}
}
+buildscript {
+ ext {
+ agpVersion = new File(rootProject.projectDir.absoluteFile, "gradle/libs.versions.toml")
+ .readLines()
+ .stream()
+ .filter((line) -> line.startsWith("agp ="))
+ .map((line) -> line.split('"')[1])
+ .findFirst()
+ .get()
+ }
+}
+
plugins {
- id 'com.android.settings' version '8.10.1'
+ id 'com.android.settings' version "${agpVersion}"
}
dependencyResolutionManagement {
diff --git a/src/com/github/iusmac/sevensim/DirectBootAwareBroadcastReceiver.java b/src/com/github/iusmac/sevensim/DirectBootAwareBroadcastReceiver.java
index c2532423..ca47dc1b 100644
--- a/src/com/github/iusmac/sevensim/DirectBootAwareBroadcastReceiver.java
+++ b/src/com/github/iusmac/sevensim/DirectBootAwareBroadcastReceiver.java
@@ -43,7 +43,7 @@ public void onReceive(final Context context, final Intent intent) {
mLogger = mLoggerFactory.create(getClass().getSimpleName());
- mLogger.d("onReceive() : intent=" + intent);
+ mLogger.d("onReceive() : intent=%s", intent);
final LocalDateTime now = LocalDateTime.now(ZoneId.systemDefault());
final String action = intent.getAction() != null ? intent.getAction() : "";
diff --git a/src/com/github/iusmac/sevensim/Logger.java b/src/com/github/iusmac/sevensim/Logger.java
index b3ce0a5f..0b06d0a5 100644
--- a/src/com/github/iusmac/sevensim/Logger.java
+++ b/src/com/github/iusmac/sevensim/Logger.java
@@ -4,6 +4,9 @@
import androidx.annotation.VisibleForTesting;
+import com.google.errorprone.annotations.FormatMethod;
+import com.google.errorprone.annotations.FormatString;
+
import dagger.assisted.Assisted;
import dagger.assisted.AssistedFactory;
import dagger.assisted.AssistedInject;
@@ -51,31 +54,36 @@ public Logger(final Runtime javaRuntime, final @Named("Debug") boolean debug,
public boolean isErrorLoggable() { return Log.isLoggable(mTag, Log.ERROR); }
public boolean isWtfLoggable() { return Log.isLoggable(mTag, Log.ASSERT); }
- public void v(String message, Object... args) {
+ @FormatMethod
+ public void v(@FormatString String message, Object... args) {
if (mIsDebuggable || isVerboseLoggable()) {
Log.v(mTag, format(message, args));
}
}
- public void d(String message, Object... args) {
+ @FormatMethod
+ public void d(@FormatString String message, Object... args) {
if (mIsDebuggable || isDebugLoggable()) {
Log.d(mTag, format(message, args));
}
}
- public void i(String message, Object... args) {
+ @FormatMethod
+ public void i(@FormatString String message, Object... args) {
if (mIsDebuggable || isInfoLoggable()) {
Log.i(mTag, format(message, args));
}
}
- public void w(String message, Object... args) {
+ @FormatMethod
+ public void w(@FormatString String message, Object... args) {
if (mIsDebuggable || isWarnLoggable()) {
Log.w(mTag, format(message, args));
}
}
- public void e(String message, Object... args) {
+ @FormatMethod
+ public void e(@FormatString String message, Object... args) {
if (mIsDebuggable || isErrorLoggable()) {
Log.e(mTag, format(message, args));
}
@@ -87,7 +95,8 @@ public void e(String message, Throwable e) {
}
}
- public void wtf(String message, Object... args) {
+ @FormatMethod
+ public void wtf(@FormatString String message, Object... args) {
if (mIsDebuggable || isWtfLoggable()) {
Log.wtf(mTag, format(message, args));
}
@@ -108,7 +117,8 @@ public interface Factory {
Logger create(String tag);
}
- private static String format(String message, Object... args) {
+ @FormatMethod
+ private static String format(@FormatString String message, Object... args) {
return args == null || args.length == 0 ? message : String.format(Locale.US, message, args);
}
}
diff --git a/src/com/github/iusmac/sevensim/SystemBroadcastReceiver.java b/src/com/github/iusmac/sevensim/SystemBroadcastReceiver.java
index 3d996a87..c2020eca 100644
--- a/src/com/github/iusmac/sevensim/SystemBroadcastReceiver.java
+++ b/src/com/github/iusmac/sevensim/SystemBroadcastReceiver.java
@@ -48,7 +48,7 @@ public void onReceive(final Context context, final Intent intent) {
mLogger = mLoggerFactory.create(getClass().getSimpleName());
- mLogger.d("onReceive() : intent=" + intent);
+ mLogger.d("onReceive() : intent=%s", intent);
final LocalDateTime now = LocalDateTime.now(ZoneId.systemDefault());
final String action = intent.getAction() != null ? intent.getAction() : "";
diff --git a/src/com/github/iusmac/sevensim/telephony/SubscriptionController.java b/src/com/github/iusmac/sevensim/telephony/SubscriptionController.java
index bba3533d..740087a4 100644
--- a/src/com/github/iusmac/sevensim/telephony/SubscriptionController.java
+++ b/src/com/github/iusmac/sevensim/telephony/SubscriptionController.java
@@ -61,12 +61,12 @@ public void setUiccApplicationsEnabled(final int subId, final boolean enabled) {
final String logPrefix = String.format(Locale.getDefault(), "setUiccApplicationsEnabled(" +
"subId=%d,enabled=%s)", subId, enabled);
- mLogger.d(logPrefix);
+ mLogger.d("%s", logPrefix);
final Subscription sub = mSubscriptions.getSubscriptionForSubId(subId).orElse(null);
if (sub == null) {
- mLogger.e(logPrefix + " Aborting due to missing subscription.");
+ mLogger.e("%s Aborting due to missing subscription.", logPrefix);
mSubscriptions.notifyAllListeners();
return;
}
diff --git a/src/com/github/iusmac/sevensim/telephony/Subscriptions.java b/src/com/github/iusmac/sevensim/telephony/Subscriptions.java
index 20085451..20721c22 100644
--- a/src/com/github/iusmac/sevensim/telephony/Subscriptions.java
+++ b/src/com/github/iusmac/sevensim/telephony/Subscriptions.java
@@ -73,7 +73,7 @@ public abstract class Subscriptions implements Iterable {
private final BroadcastReceiver mCarrierConfigChangedReceiver = new BroadcastReceiver() {
@Override
public void onReceive(final Context context, final Intent intent) {
- mLogger.v("onReceive() : intent=" + intent);
+ mLogger.v("onReceive() : intent=%s", intent);
switch (Objects.toString(intent.getAction(), "")) {
case TelephonyManager.ACTION_SIM_CARD_STATE_CHANGED,
diff --git a/src/com/github/iusmac/sevensim/telephony/TelephonyController.java b/src/com/github/iusmac/sevensim/telephony/TelephonyController.java
index 84d03c95..d7306f2b 100644
--- a/src/com/github/iusmac/sevensim/telephony/TelephonyController.java
+++ b/src/com/github/iusmac/sevensim/telephony/TelephonyController.java
@@ -113,7 +113,7 @@ public void setSimState(final int slotIndex, final boolean enabled,
// From testing, it turned out that SIM power state change request ignores Airplane mode,
// so we can allow disabling but not enabling request
if (enabled && TelephonyUtils.isAirplaneModeOn(mContext)) {
- mLogger.w(logPrefix + "Aborting due to Airplane mode.");
+ mLogger.w("%sAborting due to Airplane mode.", logPrefix);
Utils.makeToast(mContext, mContext.getString(R.string.airplane_mode_enabled));
@@ -122,19 +122,19 @@ public void setSimState(final int slotIndex, final boolean enabled,
}
synchronized (this) {
- mLogger.d(logPrefix + "In sync block.");
+ mLogger.d("%sIn sync block.", logPrefix);
final Subscription sub =
mSubscriptions.getSubscriptionForSimSlotIndex(slotIndex).orElse(null);
if (sub == null) {
- mLogger.e(logPrefix + "Aborting due to missing subscription.");
+ mLogger.e("%sAborting due to missing subscription.", logPrefix);
mSubscriptions.notifyAllListeners();
return;
}
if (enabled == sub.isSimEnabled()) {
- mLogger.w(logPrefix + "Already in state.");
+ mLogger.w("%sAlready in state.", logPrefix);
mSubscriptions.notifyAllListeners();
return;
}
@@ -199,7 +199,7 @@ public void setSimState(final int slotIndex, final boolean enabled,
try {
mRequestMetadata.wait(deadlineMillis - nowMillis);
} catch (InterruptedException e) {
- mLogger.w(logPrefix + "Acquire wait interrupted.");
+ mLogger.w("%sAcquire wait interrupted.", logPrefix);
// At this point we'll just propagate a custom internal "interrupted
// abruptly" code that will assume the request succeeded
mRequestMetadata.putInt(KEY_REQUEST_RESPONSE_CODE,
@@ -294,7 +294,7 @@ private void handleOnSetSimPowerStateForSlotFinished(final int resCode) {
TelephonyManager.SET_SIM_POWER_STATE_NOT_SUPPORTED -> // 4
requestFailed = true;
- default -> mLogger.e(logPrefix + ". Unexpected resCode.");
+ default -> mLogger.e("%s. Unexpected resCode.", logPrefix);
}
} else {
switch (resCode) {
@@ -356,7 +356,7 @@ private void handleOnSetSimPowerStateForSlotFinished(final int resCode) {
// to explicitly notify listeners, so they can stay tuned to actual state
shouldNotifyAllListeners |= requestFailed;
- mLogger.d(logPrefix + ", requestFailed=%s,shouldNotifyAllListeners=%s", requestFailed,
+ mLogger.d("%s,requestFailed=%s,shouldNotifyAllListeners=%s", logPrefix, requestFailed,
shouldNotifyAllListeners);
if (shouldNotifyAllListeners) {
diff --git a/src/com/github/iusmac/sevensim/ui/components/CollapsingToolbarBaseActivity.java b/src/com/github/iusmac/sevensim/ui/components/CollapsingToolbarBaseActivity.java
index 62c1bbe3..86b807fb 100644
--- a/src/com/github/iusmac/sevensim/ui/components/CollapsingToolbarBaseActivity.java
+++ b/src/com/github/iusmac/sevensim/ui/components/CollapsingToolbarBaseActivity.java
@@ -1,5 +1,6 @@
package com.github.iusmac.sevensim.ui.components;
+import android.annotation.DrawableRes;
import android.app.ActionBar;
import android.os.Bundle;
import android.view.MenuItem;
@@ -37,7 +38,7 @@ public abstract class CollapsingToolbarBaseActivity extends FragmentActivity {
private CollapsingToolbarDelegate mToolbardelegate;
private ToolbarDecorator mToolbarDecorator;
private ViewModel mViewModel;
- private Optional mActionButton = Optional.empty();
+ private Optional mTrailingButtons = Optional.empty();
@Override
protected void onCreate(final @Nullable Bundle savedInstanceState) {
@@ -46,6 +47,8 @@ protected void onCreate(final @Nullable Bundle savedInstanceState) {
EdgeToEdgeUtils.enable(this);
super.onCreate(savedInstanceState);
+ getToolbarDelegate().registerToolbarCollapseBehavior(this);
+
final boolean isExpressiveTheme = SettingsThemeHelper.isExpressiveTheme(this);
if (isExpressiveTheme) {
setTheme(R.style.Theme_SubSettingsBase_Expressive_Custom);
@@ -78,10 +81,14 @@ protected void onCreate(final @Nullable Bundle savedInstanceState) {
getAppBarLayout().setExpanded(true);
}
if (isExpressiveTheme) {
- mActionButton = Optional.ofNullable(getToolbarDelegate().getToolbar().findViewById(
- com.android.settingslib.collapsingtoolbar.R.id.action_button));
- // Hide the action button by default when expressive theme is enabled.
- setActionButtonEnabled(false);
+ mTrailingButtons = Optional.ofNullable(getToolbarDelegate().getToolbar()
+ // Use action button view to find the trailing buttons parent
+ .findViewById(com.android.settingslib.collapsingtoolbar.R.id.action_button))
+ .map((v) -> (View) v.getParent());
+ // Hide the trailing buttons view by default when expressive theme is enabled to
+ // avoid the blank space at the end of the Toolbar added in XML, which we can't
+ // edit. This will allow for the Toolbar's title & subtitle to fully expand
+ setTrailingButtonsEnabled(false);
}
// Our use case requires the CollapsingToolbar to be permanently lifted above the
// scrollable content (safe to disable; less animations, better performance)
@@ -129,6 +136,52 @@ public void setSubtitle(final @StringRes int subtitleId) {
setSubtitle(getText(subtitleId));
}
+ /**
+ * Show/Hide the primary button on the Toolbar.
+ * @param enabled true to show the button, otherwise it's hidden.
+ */
+ public void setPrimaryButtonEnabled(final boolean enabled) {
+ getToolbarDelegate().setPrimaryButtonEnabled(enabled);
+ }
+
+ /** Set the icon to the primary button */
+ public void setPrimaryButtonIcon(final @DrawableRes int drawableRes) {
+ getToolbarDelegate().setPrimaryButtonIcon(this, drawableRes);
+ }
+
+ /** Set the OnClick listener to the primary button. */
+ public void setPrimaryButtonOnClickListener(final @Nullable View.OnClickListener listener) {
+ getToolbarDelegate().setPrimaryButtonOnClickListener(listener);
+ }
+
+ /** Set the content description to the primary button */
+ public void setPrimaryButtonContentDescription(final @Nullable CharSequence contentDescription) {
+ getToolbarDelegate().setPrimaryButtonContentDescription(contentDescription);
+ }
+
+ /**
+ * Show/Hide the secondary button on the Toolbar.
+ * @param enabled true to show the button, otherwise it's hidden.
+ */
+ public void setSecondaryButtonEnabled(final boolean enabled) {
+ getToolbarDelegate().setSecondaryButtonEnabled(enabled);
+ }
+
+ /** Set the icon to the secondary button */
+ public void setSecondaryButtonIcon(final @DrawableRes int drawableRes) {
+ getToolbarDelegate().setSecondaryButtonIcon(this, drawableRes);
+ }
+
+ /** Set the OnClick listener to the secondary button */
+ public void setSecondaryButtonOnClickListener(final @Nullable View.OnClickListener listener) {
+ getToolbarDelegate().setSecondaryButtonOnClickListener(listener);
+ }
+
+ /** Set the content description to the secondary button */
+ public void setSecondaryButtonContentDescription(final @Nullable CharSequence contentDescription) {
+ getToolbarDelegate().setSecondaryButtonContentDescription(contentDescription);
+ }
+
/**
* Show/Hide the action button on the Toolbar.
*
@@ -137,13 +190,46 @@ public void setSubtitle(final @StringRes int subtitleId) {
* @param enabled {@code true} to show the button, otherwise it's hidden.
*/
public void setActionButtonEnabled(final boolean enabled) {
- mActionButton.ifPresent((v) ->
- // Note that, the action button is wrapped by a parent view that has padding and we
- // can't edit the layout in XML, so we want to hide it too to avoid empty spaces
- ((View) v.getParent()).setVisibility(enabled ? View.VISIBLE : View.GONE));
getToolbarDelegate().setActionButtonEnabled(enabled);
}
+ /**
+ * Enable/Disable the action button on the Toolbar (being clickable or not).
+ * @param clickable true to enable the button, otherwise it's disabled.
+ */
+ public void setActionButtonClickable(final boolean clickable) {
+ getToolbarDelegate().setActionButtonClickable(clickable);
+ }
+
+ /** Set the icon to the action button */
+ public void setActionButtonIcon(final @DrawableRes int drawableRes) {
+ getToolbarDelegate().setActionButtonIcon(this, drawableRes);
+ }
+
+ /** Set the text to the action button */
+ public void setActionButtonText(final @Nullable CharSequence text) {
+ getToolbarDelegate().setActionButtonText(text);
+ }
+
+ /** Set the OnClick listener to the action button */
+ public void setActionButtonListener(final @Nullable View.OnClickListener listener) {
+ getToolbarDelegate().setActionButtonOnClickListener(listener);
+ }
+
+ /** Set the content description to the action button */
+ public void setActionButtonContentDescription(final @Nullable CharSequence contentDescription) {
+ getToolbarDelegate().setActionButtonContentDescription(contentDescription);
+ }
+
+ /**
+ * Show/Hide the Toolbar's trailing buttons (action/primary/secondary) view.
+ *
+ * @param enabled {@code true} to show the trailing buttons view, otherwise it's hidden.
+ */
+ public void setTrailingButtonsEnabled(final boolean enabled) {
+ mTrailingButtons.ifPresent((v) -> v.setVisibility(enabled ? View.VISIBLE : View.GONE));
+ }
+
@Override
public boolean onNavigateUp() {
if (!super.onNavigateUp()) {
diff --git a/src/com/github/iusmac/sevensim/ui/components/PrimarySwitchPreference.java b/src/com/github/iusmac/sevensim/ui/components/PrimarySwitchPreference.java
index 553bbb23..46f962c3 100644
--- a/src/com/github/iusmac/sevensim/ui/components/PrimarySwitchPreference.java
+++ b/src/com/github/iusmac/sevensim/ui/components/PrimarySwitchPreference.java
@@ -21,7 +21,6 @@
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.view.MotionEvent;
-import android.view.View;
import android.widget.Switch;
import androidx.annotation.Keep;
@@ -29,7 +28,6 @@
import androidx.annotation.Nullable;
import androidx.preference.PreferenceViewHolder;
-import com.android.settingslib.widget.SettingsThemeHelper;
import com.android.settingslib.widget.TwoTargetPreference;
import com.github.iusmac.sevensim.R;
@@ -99,16 +97,6 @@ public void onBindViewHolder(final PreferenceViewHolder holder) {
mSwitch.setChecked(mChecked);
mSwitch.setEnabled(mEnableSwitch);
}
-
- if (SettingsThemeHelper.isExpressiveTheme(holder.itemView.getContext())) {
- final View divider = holder.findViewById(
- com.android.settingslib.widget.preference.twotarget.R.id.two_target_divider);
- if (divider != null) {
- // Remove unnecessary padding at the start of the divider in the expressive theme
- divider.setPaddingRelative(0, divider.getPaddingTop(), divider.getPaddingEnd(),
- divider.getPaddingBottom());
- }
- }
}
@Override
diff --git a/src/com/github/iusmac/sevensim/ui/scheduler/SchedulerViewModel.java b/src/com/github/iusmac/sevensim/ui/scheduler/SchedulerViewModel.java
index cd59f03b..5a57672c 100644
--- a/src/com/github/iusmac/sevensim/ui/scheduler/SchedulerViewModel.java
+++ b/src/com/github/iusmac/sevensim/ui/scheduler/SchedulerViewModel.java
@@ -425,7 +425,7 @@ final class IntentReceiver extends BroadcastReceiver {
public void onReceive(final Context context, final Intent intent) {
final String action = intent.getAction();
- mLogger.d("onReceive() : intent=" + intent);
+ mLogger.d("onReceive() : intent=%s", intent);
switch (action) {
case Intent.ACTION_LOCALE_CHANGED -> {
diff --git a/src/com/github/iusmac/sevensim/ui/sim/SimListActivity.java b/src/com/github/iusmac/sevensim/ui/sim/SimListActivity.java
index ab32bcc3..eead4a9b 100644
--- a/src/com/github/iusmac/sevensim/ui/sim/SimListActivity.java
+++ b/src/com/github/iusmac/sevensim/ui/sim/SimListActivity.java
@@ -151,7 +151,7 @@ final class IntentReceiver extends BroadcastReceiver {
public void onReceive(final Context context, final Intent intent) {
final String action = intent.getAction();
- mLogger.d("onReceive() : intent=" + intent);
+ mLogger.d("onReceive() : intent=%s", intent);
switch (action) {
case Intent.ACTION_TIMEZONE_CHANGED, Intent.ACTION_TIME_CHANGED -> {
diff --git a/src/com/github/iusmac/sevensim/ui/sim/SimListFragment.java b/src/com/github/iusmac/sevensim/ui/sim/SimListFragment.java
index 4171e94f..a616c655 100644
--- a/src/com/github/iusmac/sevensim/ui/sim/SimListFragment.java
+++ b/src/com/github/iusmac/sevensim/ui/sim/SimListFragment.java
@@ -82,7 +82,8 @@ private void setupBackgroundRestrictedBanner() {
.setAttentionLevel(BannerMessagePreference.AttentionLevel.HIGH)
.setPositiveButtonText(R.string.background_restricted_button_prioritize_app)
.setPositiveButtonOnClickListener((view) ->
- startActivity(mApplicationInfoLazy.get().getAppBatterySettingsActivityIntent()));
+ startActivity(mApplicationInfoLazy.get().getAppBatterySettingsActivityIntent()))
+ .setVisible(mActivityManager.isBackgroundRestricted());
}
private void setupDisclaimerBanner() {
diff --git a/tests/test/java/com/github/iusmac/sevensim/telephony/SimPinFeederTest.java b/tests/test/java/com/github/iusmac/sevensim/telephony/SimPinFeederTest.java
index c1d9b9b9..6837c3a5 100644
--- a/tests/test/java/com/github/iusmac/sevensim/telephony/SimPinFeederTest.java
+++ b/tests/test/java/com/github/iusmac/sevensim/telephony/SimPinFeederTest.java
@@ -69,9 +69,13 @@
@HiltAndroidTest
@RunWith(RobolectricTestRunner.class)
public final class SimPinFeederTest extends MockitoHiltAndroidTestBase {
- private static final long TASK_WAIT_TIMEOUT_MILLIS = 3_000L;
+ // Increase timeout in CI environments to account for server load, which may increase the time
+ // between Thread.State.RUNNABLE and Thread.State.{TERMINATED/TIMED_WAITING} when running task.
private static final Duration TASK_WAIT_TIMEOUT_DURATION =
- Duration.ofMillis(TASK_WAIT_TIMEOUT_MILLIS);
+ Duration.ofMillis(Optional.ofNullable(System.getenv("CI"))
+ .filter((v) -> v.equals("true"))
+ .map((v) -> 5_000L)
+ .orElse(3_000L));
private static final ExecutorService EXECUTOR = Executors.newSingleThreadExecutor();
@Inject
@@ -112,33 +116,32 @@ public void test_ShouldNotAllowCreationWithEncryptedEntities() {
createTaskWith(List.of(pinEntityEncrypted));
}
- @Test(timeout = TASK_WAIT_TIMEOUT_MILLIS)
- public void test_ShouldFinishFastWithoutUsablePinEntities() throws InterruptedException {
- runTaskWith(Collections.emptyList()).join();
+ @Test
+ public void test_ShouldFinishFastWithoutUsablePinEntities() {
+ runTaskWith(Collections.emptyList());
+ assertTaskInState(TERMINATED);
}
- @Test(timeout = TASK_WAIT_TIMEOUT_MILLIS)
- public void test_ShouldFinishFastWhenPreemptivelyCancelled() throws InterruptedException {
+ @Test
+ public void test_ShouldFinishFastWhenPreemptivelyCancelled() {
final var pinEntity = new PinEntity();
pinEntity.setSubscriptionId(1);
pinEntity.setClearPin("1234");
runTaskWith(List.of(pinEntity)).cancel();
- mTask.join();
+ assertTaskInState(TERMINATED);
}
- @Test(timeout = TASK_WAIT_TIMEOUT_MILLIS)
- public void test_ShouldFinishWhenPreemptivelyCancelled() throws InterruptedException {
+ @Test
+ public void test_ShouldFinishWhenPreemptivelyCancelled() {
final var pinEntity = new PinEntity();
pinEntity.setSubscriptionId(1);
pinEntity.setClearPin("1234");
runTaskWith(List.of(pinEntity)).cancel();
- mTask.join();
+ assertTaskInState(TERMINATED);
}
- @Test(timeout = TASK_WAIT_TIMEOUT_MILLIS)
- public void test_ShouldFinishWhenCancelledWhileWaitingForSimStatusChangeEvent()
- throws InterruptedException {
-
+ @Test
+ public void test_ShouldFinishWhenCancelledWhileWaitingForSimStatusChangeEvent() {
final var pinEntity = new PinEntity();
pinEntity.setSubscriptionId(1);
pinEntity.setClearPin("1234");
@@ -146,7 +149,7 @@ public void test_ShouldFinishWhenCancelledWhileWaitingForSimStatusChangeEvent()
runTaskWith(List.of(pinEntity));
assertTaskInState(TIMED_WAITING);
mTask.cancel();
- mTask.join();
+ assertTaskInState(TERMINATED);
}
@Test
@@ -161,19 +164,15 @@ public void test_ShouldNotFinishWhenInterruptedWhileWaitingForSimStatusChangeEve
assertTaskTimedOut();
}
- @Test(timeout = TASK_WAIT_TIMEOUT_MILLIS)
- public void test_ShouldUnregisterOnSimStatusChangedListenerWhenFinishedFastWithoutUsablePinEntities()
- throws InterruptedException {
-
- runTaskWith(Collections.emptyList()).join();
-
+ @Test
+ public void test_ShouldUnregisterOnSimStatusChangedListenerWhenFinishedFastWithoutUsablePinEntities() {
+ runTaskWith(Collections.emptyList());
+ assertTaskInState(TERMINATED);
assertThat(findCarrierConfigChangedReceiver(), is(Optional.empty()));
}
- @Test(timeout = TASK_WAIT_TIMEOUT_MILLIS)
- public void test_ShouldUnregisterOnSimStatusChangedListenerWhenCancelledWhileWaitingForSimStatusChangeEvent()
- throws InterruptedException {
-
+ @Test
+ public void test_ShouldUnregisterOnSimStatusChangedListenerWhenCancelledWhileWaitingForSimStatusChangeEvent() {
final var pinEntity = new PinEntity();
pinEntity.setSubscriptionId(1);
pinEntity.setClearPin("1234");
@@ -181,7 +180,7 @@ public void test_ShouldUnregisterOnSimStatusChangedListenerWhenCancelledWhileWai
runTaskWith(List.of(pinEntity));
assertTaskInState(TIMED_WAITING);
mTask.cancel();
- mTask.join();
+ assertTaskInState(TERMINATED);
assertThat(findCarrierConfigChangedReceiver(), is(Optional.empty()));
}
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation.png
index aef6eecb..a0ac6bb2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[31].png
index 2d575ff5..9811879e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[32].png
index 2d575ff5..9811879e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[33].png
index 2d575ff5..9811879e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[34].png
index 94bbc74c..19ec5b48 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[35].png
index affe0065..484d4c8e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view after activity recreation[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view.png
index d1e5b87a..017152aa 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[31].png
index 2d575ff5..9811879e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[32].png
index 2d575ff5..9811879e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[33].png
index 2d575ff5..9811879e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[34].png
index 94bbc74c..19ec5b48 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[35].png
index affe0065..484d4c8e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.license.LicenseActivityTest/test full view[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation.png
index 326b9ade..65ca8cf7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[31].png
index 45a31fe1..187a4ab5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[32].png
index 45a31fe1..187a4ab5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[33].png
index 45a31fe1..187a4ab5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[34].png
index fb1a6c52..11f32f8c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[35].png
index bcb00833..466a7ec3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view after activity recreation[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view.png
index 326b9ade..65ca8cf7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[31].png
index 45a31fe1..187a4ab5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[32].png
index 45a31fe1..187a4ab5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[33].png
index 45a31fe1..187a4ab5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[34].png
index fb1a6c52..11f32f8c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[35].png
index bcb00833..466a7ec3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/Activity/test full view[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide.png
index a83ccc8a..48b3f7a1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[31].png
index 842eabf3..7d96ce24 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[32].png
index 842eabf3..7d96ce24 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[33].png
index 842eabf3..7d96ce24 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[34].png
index 76899bbf..fe685a75 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[35].png
index 0aef5ee0..a2c6367b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should be grayed out when cannot hide[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide.png
index 42acca6d..86ccabc4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[31].png
index b56212ad..477717d2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[32].png
index b56212ad..477717d2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[33].png
index b56212ad..477717d2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[34].png
index a96cc361..d7eb0e96 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[35].png
index 8b20da0a..ee43b94f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should not be grayed out when can hide[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore.png
index a0392c22..e0af932f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[31].png
index 4d869ce0..a001a6e2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[32].png
index 4d869ce0..a001a6e2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[33].png
index 4d869ce0..a001a6e2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[34].png
index 9d580176..5c4c278f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[35].png
index 5118864c..8c0144e7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice even if cannot hide anymore[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice.png
index 84ff0fd0..986b2143 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[31].png
index e21c8fa7..517682dc 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[32].png
index e21c8fa7..517682dc 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[33].png
index e21c8fa7..517682dc 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[34].png
index bbbd7cad..ddc7c1b0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[35].png
index 61bf57f8..76d82b43 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.preferences.PreferenceListActivityTest/ShowAppIconPreference/test should remember user choice[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[31].png
index db4ba4c4..3bcded6e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[32].png
index db4ba4c4..3bcded6e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[33].png
index db4ba4c4..3bcded6e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[34].png
index db4ba4c4..3bcded6e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[35].png
index 1ee80540..23b36fc0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ActionSummaryView/test should display the action name in short form when schedule collapsed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation.png
index aacd5187..7bacccdc 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[31].png
index bc507986..2b13fea6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[32].png
index bc507986..2b13fea6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[33].png
index bc507986..2b13fea6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[34].png
index 9088b395..ba5e144c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[35].png
index e87e1dee..39679787 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view after activity recreation[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape.png
index 3760a752..4545cedd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[31].png
index 3e7c092c..179d0bf9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[32].png
index 3e7c092c..179d0bf9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[33].png
index 3e7c092c..179d0bf9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[34].png
index 4c90e109..fe7ed97d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[35].png
index 7695beb6..a72836d3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in landscape[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode.png
index 0909f901..b28ae58c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[31].png
index 26ef2a14..de381928 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[32].png
index 26ef2a14..de381928 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[33].png
index 26ef2a14..de381928 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[34].png
index 3e2ab9b7..d50d7d46 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[35].png
index 0b49d487..f12ef2aa 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view in night mode[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed.png
index b1547fc6..000290f1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[31].png
index 0a10fe3f..4df83579 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[32].png
index 0a10fe3f..4df83579 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[33].png
index 0a10fe3f..4df83579 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[34].png
index 1ababef1..48f47647 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[35].png
index ccd45086..f4da6811 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view with app bar collapsed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view.png
index aacd5187..7bacccdc 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[31].png
index bc507986..2b13fea6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[32].png
index bc507986..2b13fea6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[33].png
index bc507986..2b13fea6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[34].png
index 9088b395..ba5e144c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[35].png
index e87e1dee..39679787 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Activity/test full view[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[31].png
index d8a2d32e..dcffdfb0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[32].png
index d8a2d32e..dcffdfb0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[33].png
index d8a2d32e..dcffdfb0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[34].png
index 712c4bf2..8ef2585b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[35].png
index c620908f..33896cbf 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/AddFab/test full view[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31].png
index c8cacc23..b9ffd4ff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31]_3.png
index c8cacc23..b9ffd4ff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[31]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32].png
index c8cacc23..b9ffd4ff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32]_3.png
index c8cacc23..b9ffd4ff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[32]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33].png
index c8cacc23..b9ffd4ff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33]_3.png
index c8cacc23..b9ffd4ff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[33]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34].png
index 2e01c969..b052a36f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_2.png
index 7564aa40..e42a043a 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_3.png
index 2e01c969..b052a36f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[34]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35].png
index 2ed9669b..9b034e84 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_2.png
index c93e44db..a9fa8e1d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_3.png
index 2ed9669b..9b034e84 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ArrowView/test should display the schedule expansion state[35]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[31].png
index ede252b2..22897acd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[32].png
index ede252b2..22897acd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[33].png
index ede252b2..22897acd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[34].png
index df134eb6..c4eb11f6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[35].png
index 29a82ac7..0bc20f78 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ClockView/test should display the schedule time[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[31].png
index b396f2e0..2a87e795 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[32].png
index b396f2e0..2a87e795 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[33].png
index b396f2e0..2a87e795 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[34].png
index b396f2e0..2a87e795 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[35].png
index b58495a0..c8dda166 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when all days of week selected[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[31].png
index b2113e8b..06ce2d9c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[32].png
index b2113e8b..06ce2d9c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[33].png
index b2113e8b..06ce2d9c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[34].png
index b2113e8b..06ce2d9c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[35].png
index 72d64f3b..37803d78 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the appropriate text when no days of week selected[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[31].png
index 2c1c18b2..c9495fb8 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[32].png
index 2c1c18b2..c9495fb8 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[33].png
index 2c1c18b2..c9495fb8 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[34].png
index 2c1c18b2..c9495fb8 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[35].png
index 8d2e2c05..9e3263b1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in long form only when a single day is selected[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[31].png
index 43b2270c..d58cf468 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[32].png
index 43b2270c..d58cf468 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[33].png
index 43b2270c..d58cf468 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[34].png
index 43b2270c..d58cf468 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[35].png
index 781ef963..f343ecd9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DaysOfWeekView/test should display the text in short form only when at least two days selected[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34].png
index 1a6781f0..8e5b84f5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34]_2.png
index eedd83c0..1a5cc099 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35].png
index d278c00a..852ba1bd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35]_2.png
index c73518c7..1462f86e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/DeleteView/test should be replaced with confirm view when clicked[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31].png
index 2e0c92ed..2b5ade76 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31]_2.png
index 16fd9f9c..d88cf08c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32].png
index 2e0c92ed..2b5ade76 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32]_2.png
index 16fd9f9c..d88cf08c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33].png
index 2e0c92ed..2b5ade76 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33]_2.png
index 16fd9f9c..d88cf08c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34].png
index f41db571..8baff375 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34]_2.png
index 960a86c2..571c2b2e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35].png
index 834ff3b7..a0c62434 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35]_2.png
index fd395edb..433cc152 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelMutations/test should reflect updated label in the selected schedule view[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelPromptDialog/test full view.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelPromptDialog/test full view.png
index 0f1f73eb..1bc4f9c1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelPromptDialog/test full view.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelPromptDialog/test full view.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[31].png
index 77044bd4..136aaf1d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[32].png
index 77044bd4..136aaf1d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[33].png
index 77044bd4..136aaf1d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[34].png
index 9e9cf8a3..b16a83ef 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[35].png
index 18a4b295..86d8c099 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should be limited to single line with ellipsize when schedule collapsed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[34].png
index b4dc83c0..826523cc 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[35].png
index c4dd1710..f44eea6d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/EditLabelView/test should support multiline when schedule expanded[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data.png
index e6d49f99..1d20b189 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[31].png
index 9d9da16c..78dcac96 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[32].png
index 9d9da16c..78dcac96 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[33].png
index 9d9da16c..78dcac96 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[34].png
index 9d9da16c..78dcac96 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[35].png
index dddb9ba9..df6433d4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinErrorBannerPreference/test should regenerate locale-sensitive data[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[31].png
index 0fa2d486..e2d1955e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[32].png
index 0fa2d486..e2d1955e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[33].png
index 0fa2d486..e2d1955e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[34].png
index 0fa2d486..e2d1955e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[35].png
index c841d8f6..a431f8c3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be disabled while performing PIN tasks[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[31].png
index da500ba8..9ce292c2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[32].png
index da500ba8..9ce292c2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[33].png
index da500ba8..9ce292c2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[34].png
index 70a2a16a..0de49a99 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[35].png
index 3789089d..6b6fefff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN set[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[31].png
index b7074687..384d7894 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[32].png
index b7074687..384d7894 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[33].png
index b7074687..384d7894 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[34].png
index a088921f..ce2463e1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[35].png
index 399eb408..df90bd5e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinFab/test should be in state related to PIN unset[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinPromptDialog/test full view.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinPromptDialog/test full view.png
index 516a8d79..f2c633d5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinPromptDialog/test full view.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/PinPromptDialog/test full view.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[31].png
index 7247c85e..a9c772d4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[32].png
index 7247c85e..a9c772d4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[33].png
index 7247c85e..a9c772d4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[34].png
index 3e365d58..b20ab61e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[35].png
index dd6695bf..df11a353 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in landscape[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[31].png
index 5da3cc35..b9e502b6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[32].png
index 5da3cc35..b9e502b6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[33].png
index ea0f41a9..4d7ec1cb 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[34].png
index 895c3f06..b19d8b19 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[35].png
index 7f580f9b..36440fbd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed in night mode[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[31].png
index 9a854610..d0d765ad 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[32].png
index 9a854610..d0d765ad 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[33].png
index 9a854610..d0d765ad 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[34].png
index 48d658d0..71269d9a 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[35].png
index c9c52b2f..70fca85d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view collapsed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[31].png
index 0fe18321..43502234 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[32].png
index 0fe18321..43502234 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[33].png
index 144c8a31..486c604b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[34].png
index 4d95d8c2..cd8d0d78 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[35].png
index 9c7006a8..2583c12f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in landscape[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[31].png
index 91acbf5c..66a4b738 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[32].png
index 91acbf5c..66a4b738 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[33].png
index 4fb7ee0b..9fdc8fcb 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[34].png
index 7d5677e4..534f41aa 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[35].png
index 7131f376..80aedcd2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded in night mode[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[31].png
index d3aa04a3..d6eb1171 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[32].png
index d3aa04a3..d6eb1171 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[33].png
index a698b6c4..476710bd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[34].png
index 366f47a6..c2aa9c3c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[35].png
index eba4b9f4..812bc00e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/ScheduleView/test full view expanded[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31].png
index 9f143f35..899a4500 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31]_2.png
index c75ff14f..8d40d567 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32].png
index 9f143f35..899a4500 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32]_2.png
index c75ff14f..8d40d567 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33].png
index 9f143f35..899a4500 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33]_2.png
index c75ff14f..8d40d567 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34].png
index 9f143f35..899a4500 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34]_2.png
index c75ff14f..8d40d567 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35].png
index fc1da9cf..8b1142fe 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35]_2.png
index 4ec2cb24..f50a3dcd 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/SubscriptionEnabledStateMutations/test should reflect updated state in the selected schedule view when collapsed[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31].png
index 75802cb6..1c819018 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31]_2.png
index ba6c52f6..8c29c82f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32].png
index 75802cb6..1c819018 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32]_2.png
index ba6c52f6..8c29c82f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33].png
index 75802cb6..1c819018 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33]_2.png
index ba6c52f6..8c29c82f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34].png
index e61f484a..0c182e56 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34]_2.png
index 2cc8c747..863152d3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35].png
index 8472156a..d07a931f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35]_2.png
index fc29e3e4..628a16d3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/TimeMutations/test should reflect updated time in the selected schedule view[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen.png
index d0a0fc25..4e7cf3f1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[31].png
index b8b723b4..62b41c0b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[32].png
index b8b723b4..62b41c0b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[33].png
index b8b723b4..62b41c0b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[34].png
index 620c8554..910251d0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[35].png
index a513442f..b7ed16ed 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test expanded toolbar is not overlapped by FABs in landscape on extra-small screen[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed.png
index d0c651fc..4dfc16a6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31].png
index dbf83eda..fa5fb5de 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31]_2.png
index a5ecdf24..d6798099 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32].png
index dbf83eda..fa5fb5de 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32]_2.png
index a5ecdf24..d6798099 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33].png
index dbf83eda..fa5fb5de 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33]_2.png
index a5ecdf24..d6798099 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34].png
index 8e538990..0c7f72b3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34]_2.png
index b16d3403..2dcd93d3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35].png
index 56a80900..a1063a13 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35]_2.png
index 3efed452..54bb4f9e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed_2.png
index d43fd609..0bbf6389 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should refresh next upcoming schedule summary on subscriptions changed_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data.png
index fb79cabd..e85322c2 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[31].png
index ac1d5ad1..30c7d864 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[32].png
index ac1d5ad1..30c7d864 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[33].png
index ac1d5ad1..30c7d864 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[34].png
index 09355e78..6a427280 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[35].png
index ee8496c5..b71057ef 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate locale-sensitive data[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries.png
index 881e4e1d..6f0a0bc4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31].png
index a7112ac1..46fd3063 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_2.png
index c3299b2e..1cde5eaf 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_3.png
index e7cd2158..b2a48b0f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[31]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32].png
index a7112ac1..46fd3063 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_2.png
index c3299b2e..1cde5eaf 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_3.png
index e7cd2158..b2a48b0f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[32]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33].png
index a7112ac1..46fd3063 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_2.png
index c3299b2e..1cde5eaf 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_3.png
index e7cd2158..b2a48b0f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[33]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34].png
index 31c1d5b3..cb9caa57 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_2.png
index 3650ae25..47ac4d44 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_3.png
index af694cc6..853bafba 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[34]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35].png
index a9c3cfc2..e4ade5d7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_2.png
index 25e3a3e6..b4c27314 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_3.png
index 53afc121..7180d81b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries[35]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_2.png
index a597fc11..f7aaaccb 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_3.png
index abccba8d..7d96d989 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.scheduler.SchedulerActivityTest/Toolbar/test should regenerate time-sensitive data in SIM entries_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation.png
index 082c2d62..8e2fad12 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[31].png
index 1e55d064..fcf5a409 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[32].png
index 1e55d064..fcf5a409 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[33].png
index 1e55d064..fcf5a409 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[34].png
index 5d84d085..c20859d3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[35].png
index 9f0f180e..6a79f309 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view after activity recreation[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed.png
index a285a22a..80f5c349 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[31].png
index dd353400..9c84849f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[32].png
index dd353400..9c84849f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[33].png
index dd353400..9c84849f 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[34].png
index 2209126e..01db8ff6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[35].png
index 36047e38..c0ef08bb 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view with app bar collapsed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view.png
index 03c5feb2..646a333c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[31].png
index 1e55d064..fcf5a409 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[32].png
index 1e55d064..fcf5a409 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[33].png
index 1e55d064..fcf5a409 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[34].png
index 5d84d085..c20859d3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[35].png
index 9f0f180e..6a79f309 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/Activity/test full view[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted.png
index bc10aabd..8fca960b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[31].png
index c8e0d717..9b842c92 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[32].png
index c8e0d717..9b842c92 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[33].png
index c8e0d717..9b842c92 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[34].png
index c8e0d717..9b842c92 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[35].png
index d150644f..ccf85454 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BackgroundRestrictedBanner/test full view when background usage restricted[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string.png
index 0ab9aba3..eafa0d86 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[31].png
index 1d292cbb..51d3004b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[32].png
index 1d292cbb..51d3004b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[33].png
index 1d292cbb..51d3004b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[34].png
index 8692d03e..6803a718 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[35].png
index 6394debb..ef9a19ef 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/BuildVersionPreference/test should be grayed out and contain package version name string[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed.png
index 54500923..b1b7a7d5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[31].png
index 3bee622f..d3b42bb9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[32].png
index 3bee622f..d3b42bb9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[33].png
index 3bee622f..d3b42bb9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[34].png
index 3bee622f..d3b42bb9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[35].png
index 4b8e96e5..7b2b3135 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/DisclaimerBanner/test full view when app signed with AOSP platform signature and not yet dismissed[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards.png
index 6de8645d..cbe3f3c3 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31].png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_2.png
index 081ee956..e629ebd9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_3.png
index b1f102dc..e699cf72 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[31]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32].png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_2.png
index 081ee956..e629ebd9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_3.png
index b1f102dc..e699cf72 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[32]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33].png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_2.png
index 081ee956..e629ebd9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_3.png
index b1f102dc..e699cf72 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[33]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34].png
index a0027686..8bc25635 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_2.png
index 7fab37b9..4601e7b9 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_3.png
index 499ba4a0..d235660a 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[34]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35].png
index 89beba72..36d6d184 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_2.png
index 3b644e56..1164507e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_3.png
index 5f91c13c..5b56bc0c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards[35]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_2.png
index 3711c5bd..2c4d6b70 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_3.png
index b293ce9d..6bd40502 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should contain all available SIM cards_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click.png
index 232aa5cd..13b319ac 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[31].png
index 667c0afc..e8d3e7c0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[32].png
index 667c0afc..e8d3e7c0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[33].png
index 667c0afc..e8d3e7c0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[34].png
index f5ef8465..1cdf3615 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[35].png
index c1e1cf84..ff217d45 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should disable toggle switch on click[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle.png
index 232aa5cd..13b319ac 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31].png
index 667c0afc..e8d3e7c0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31]_2.png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32].png
index 667c0afc..e8d3e7c0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32]_2.png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33].png
index 667c0afc..e8d3e7c0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33]_2.png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34].png
index f5ef8465..1cdf3615 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34]_2.png
index a0027686..8bc25635 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35].png
index c1e1cf84..ff217d45 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35]_2.png
index 89beba72..36d6d184 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle_2.png
index a43b8c32..84171b97 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should re-enable toggle switch on next update cycle_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event.png
index a43b8c32..84171b97 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31].png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31]_2.png
index b540360d..623eed5e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32].png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32]_2.png
index b540360d..623eed5e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33].png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33]_2.png
index b540360d..623eed5e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34].png
index a0027686..8bc25635 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34]_2.png
index 176cc91a..5b8eed18 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35].png
index 89beba72..36d6d184 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35]_2.png
index f7108522..3ca8803e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event_2.png
index 684ed2ee..188935db 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should refresh all SIM entry data on SIM subscription update event_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries.png
index 277f35fb..b67ba300 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[31].png
index caa2f64f..8e6b29c5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[32].png
index caa2f64f..8e6b29c5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[33].png
index caa2f64f..8e6b29c5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[34].png
index e4bb71e1..2cc9778d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[35].png
index e766c2f9..c3676078 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate locale-sensitive data in SIM entries[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries.png
index adead580..a2e8781b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31].png
index 78790e89..da9a831b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_2.png
index 4c90beec..ab244fea 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_3.png
index 70650665..a8572227 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[31]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32].png
index 78790e89..da9a831b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_2.png
index 4c90beec..ab244fea 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_3.png
index 70650665..a8572227 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[32]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33].png
index 78790e89..da9a831b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_2.png
index 4c90beec..ab244fea 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_3.png
index 70650665..a8572227 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[33]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34].png
index 2c1afe2e..4c0ebea6 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_2.png
index e5e42c7b..182304ff 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_3.png
index 71275236..1c168ecc 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[34]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35].png
index bddba75e..b93ffc49 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_2.png
index d87ec459..b8678101 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_3.png
index 3b6eb143..125888d5 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries[35]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_2.png
index cd3d5007..3c17c19b 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_3.png
index d642a460..9df1719e 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should regenerate time-sensitive data in SIM entries_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait.png
index 2144ad6a..44220868 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[31].png
index ba72c809..e4319792 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[32].png
index ba72c809..e4319792 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[33].png
index ba72c809..e4319792 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[34].png
index 3a4db591..0368b255 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[35].png
index af5de29e..b02b99ce 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by new line when in portrait[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape.png
index 0dcb15a1..23a77be0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[31].png
index df0fddc5..b8910ce1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[32].png
index df0fddc5..b8910ce1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[33].png
index df0fddc5..b8910ce1 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[34].png
index e6dc64c8..46f3049d 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[35].png
index 999104a1..5ccba980 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should separate date-time in SIM entries by space when in landscape[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate.png
index bc2651a3..783e7eac 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31].png
index 71c3cef0..f2f02dd7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_2.png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_3.png
index 71c3cef0..f2f02dd7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[31]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32].png
index 71c3cef0..f2f02dd7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_2.png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_3.png
index 71c3cef0..f2f02dd7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[32]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33].png
index 71c3cef0..f2f02dd7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_2.png
index 4936abb6..690bcdf4 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_3.png
index 71c3cef0..f2f02dd7 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[33]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34].png
index 90b1ed39..9ddb0bef 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_2.png
index a0027686..8bc25635 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_3.png
index 90b1ed39..9ddb0bef 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[34]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35].png
index a9e13a7c..3e4a2566 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_2.png
index 89beba72..36d6d184 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_3.png
index a9e13a7c..3e4a2566 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate[35]_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_2.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_2.png
index a43b8c32..84171b97 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_2.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_2.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_3.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_3.png
index bc2651a3..783e7eac 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_3.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/SimEntries/test should show No SIM cards inserted entry ONLY when appropriate_3.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key.png
index e599da22..2ad4a30a 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[31].png
index 786110d4..7c739c60 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[32].png
index 786110d4..7c739c60 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[33].png
index 786110d4..7c739c60 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[34].png
index 00e3fe87..72d7cf73 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[35].png
index 75e21400..6535975c 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should be grayed out when app signed with non-AOSP platform key[35].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key.png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key.png
index ee2d242f..a2e44eb0 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key.png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key.png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[31].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[31].png
index 2809701a..d256947a 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[31].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[31].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[32].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[32].png
index 2809701a..d256947a 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[32].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[32].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[33].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[33].png
index 2809701a..d256947a 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[33].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[33].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[34].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[34].png
index ffdc7558..b7215c50 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[34].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[34].png differ
diff --git a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[35].png b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[35].png
index d8a2801e..891bf299 100644
Binary files a/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[35].png and b/tests/test/roborazzi/com.github.iusmac.sevensim.ui.sim.SimListActivityTest/UpdatesPreference/test should not be grayed out when app signed with AOSP platform key[35].png differ