From 960ca090003f5ced68d369bf99cf620e50c82994 Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Tue, 5 Aug 2025 13:22:34 +0200 Subject: [PATCH 01/11] fixed sign up and login dark / light temming made compatible with Android 15 and prior --- .../authentication/SimplenoteAuthenticationActivity.java | 5 ++++- .../authentication/SimplenoteSignupActivity.java | 8 +++----- Simplenote/src/main/res/layout/activity_signup.xml | 8 +++++--- .../src/main/res/layout/authentication_fancy_or.xml | 1 + Simplenote/src/main/res/layout/fragment_login.xml | 5 +++-- Simplenote/src/main/res/layout/fragment_signup.xml | 2 +- Simplenote/src/main/res/values-night/colors.xml | 5 +++++ Simplenote/src/main/res/values-night/styles.xml | 6 ++++++ 8 files changed, 28 insertions(+), 12 deletions(-) diff --git a/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteAuthenticationActivity.java b/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteAuthenticationActivity.java index 7ce9eb4dd..839943087 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteAuthenticationActivity.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteAuthenticationActivity.java @@ -70,7 +70,10 @@ public void onCreate(Bundle savedInstanceState) { // Since this extends Simperium's AuthenticationActivity, we need to be conservative if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.VANILLA_ICE_CREAM) { WindowCompat.setDecorFitsSystemWindows(getWindow(), false); - SystemBarUtils.setSystemBarsAppearance(this, true, true); // Dark icons on light background + // Use auto-theming to properly handle dark mode + boolean isLightTheme = (getResources().getConfiguration().uiMode & android.content.res.Configuration.UI_MODE_NIGHT_MASK) + != android.content.res.Configuration.UI_MODE_NIGHT_YES; + SystemBarUtils.setSystemBarsAppearance(this, isLightTheme, isLightTheme); // Apply navigation bar insets to avoid button overlap with 3-button navigation ViewCompat.setOnApplyWindowInsetsListener(findViewById(android.R.id.content), (v, windowInsets) -> { diff --git a/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteSignupActivity.java b/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteSignupActivity.java index 6b5e73cba..eb153339c 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteSignupActivity.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/authentication/SimplenoteSignupActivity.java @@ -48,14 +48,12 @@ protected void onCreate(@Nullable Bundle savedInstanceState) { initToolbar(isSignUp); // Setup edge-to-edge display with proper WindowInsets handling - // Toolbar has white background, so we need light status bar appearance (dark icons) - SystemBarUtils.setupEdgeToEdgeWithToolbar( + // Use auto-theming to properly handle status bar appearance based on theme + SystemBarUtils.setupEdgeToEdgeWithAutoTheming( this, findViewById(R.id.main), mToolbar, - findViewById(R.id.fragment_container), - true, // Light status bar (dark icons) for white toolbar background - true // Light navigation bar (dark icons) + findViewById(R.id.fragment_container) ); } diff --git a/Simplenote/src/main/res/layout/activity_signup.xml b/Simplenote/src/main/res/layout/activity_signup.xml index f96187a25..4dd3d0ac3 100644 --- a/Simplenote/src/main/res/layout/activity_signup.xml +++ b/Simplenote/src/main/res/layout/activity_signup.xml @@ -13,10 +13,12 @@ android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" - android:background="@android:color/white" + android:background="?attr/toolbarColor" android:elevation="0dp" - app:popupTheme="@style/ThemeOverlay.MaterialComponents.Light" - app:theme="@style/ThemeOverlay.MaterialComponents.Light" + app:titleTextColor="@color/text_title" + app:navigationIconTint="@color/text_title" + app:popupTheme="@style/ThemeOverlay.MaterialComponents" + app:theme="@style/ThemeOverlay.MaterialComponents" tools:layout_height="wrap_content" /> android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/magic_link_login_with_wordpress_or_break" + android:textColor="?attr/onMainBackgroundColor" android:paddingHorizontal="5dp" /> + android:textColor="@color/text_button_primary" /> @@ -73,6 +74,6 @@ android:minHeight="@dimen/height_button" android:text="@string/simperium_button_login_other" android:textAllCaps="true" - android:textColor="@android:color/white" /> + android:textColor="@color/text_button_primary" /> diff --git a/Simplenote/src/main/res/layout/fragment_signup.xml b/Simplenote/src/main/res/layout/fragment_signup.xml index 356dc9447..707e3e48b 100644 --- a/Simplenote/src/main/res/layout/fragment_signup.xml +++ b/Simplenote/src/main/res/layout/fragment_signup.xml @@ -41,7 +41,7 @@ android:minHeight="@dimen/height_button" android:text="@string/simperium_button_signup" android:textAllCaps="true" - android:textColor="@android:color/white" /> + android:textColor="@color/text_button_primary" /> @color/text_content_dark @color/text_title_dark @color/red_20 + + + @color/gray_1 + @color/gray_1 + diff --git a/Simplenote/src/main/res/values-night/styles.xml b/Simplenote/src/main/res/values-night/styles.xml index d801e6fc3..044541ef2 100755 --- a/Simplenote/src/main/res/values-night/styles.xml +++ b/Simplenote/src/main/res/values-night/styles.xml @@ -329,4 +329,10 @@ @color/background_dark_sepia_8 + + + From 84953ab7b80c2d550901f0776c16e88e30d1c94e Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 6 Aug 2025 12:21:29 +0200 Subject: [PATCH 02/11] updated simperium commit hash --- Simplenote/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simplenote/build.gradle b/Simplenote/build.gradle index a48c58be2..ca1be9af9 100644 --- a/Simplenote/build.gradle +++ b/Simplenote/build.gradle @@ -109,7 +109,7 @@ dependencies { // Fastlane screengrab for screenshots automation androidTestImplementation "tools.fastlane:screengrab:$screengrabVersion" // Automattic and WordPress dependencies - implementation 'com.automattic:simperium:v1.3.1' + implementation 'com.automattic:simperium:251-2707fc58fab32757668a6290a7e3df8e89edbce1' implementation "com.automattic:Automattic-Tracks-Android:$automatticTracksVersion" implementation "com.automattic.tracks:crashlogging:$automatticTracksVersion" From 93d2607d4cb239925ba93a074031858524b5720b Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 6 Aug 2025 13:54:46 +0200 Subject: [PATCH 03/11] changing default theme to follow system settings --- .../main/java/com/automattic/simplenote/utils/ThemeUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java b/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java index 081f45489..9c417da45 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java @@ -66,7 +66,7 @@ public static void setTheme(Activity activity) { } } - switch (PrefUtils.getIntPref(activity, PrefUtils.PREF_THEME, THEME_LIGHT)) { + switch (PrefUtils.getIntPref(activity, PrefUtils.PREF_THEME, THEME_SYSTEM)) { case THEME_AUTO: AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_AUTO_TIME); break; From 97ce05f24fec8190f5e7d5146df71d0eb078f302 Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 6 Aug 2025 14:21:18 +0200 Subject: [PATCH 04/11] apply edge-to-edge and adjust margins on enter password screen --- .../authentication/NewCredentialsActivity.kt | 10 ++++++++++ .../res/layout/new_activity_credentials.xml | 18 +++++++++++------- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/Simplenote/src/main/java/com/automattic/simplenote/authentication/NewCredentialsActivity.kt b/Simplenote/src/main/java/com/automattic/simplenote/authentication/NewCredentialsActivity.kt index 4b47e4f0d..bebe34929 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/authentication/NewCredentialsActivity.kt +++ b/Simplenote/src/main/java/com/automattic/simplenote/authentication/NewCredentialsActivity.kt @@ -30,6 +30,7 @@ import com.automattic.simplenote.utils.AccountNetworkUtils import com.automattic.simplenote.utils.AccountVerificationEmailHandler import com.automattic.simplenote.utils.AppLog import com.automattic.simplenote.utils.HtmlCompat +import com.automattic.simplenote.utils.SystemBarUtils import com.google.android.material.color.MaterialColors import com.google.android.material.textfield.TextInputLayout import com.simperium.Simperium @@ -249,6 +250,15 @@ open class NewCredentialsActivity : AppCompatActivity() { ) { Handler().postDelayed({ startLogin() }, 600L) } + + // Setup edge-to-edge display with proper WindowInsets handling + // Use auto-theming to properly handle status bar appearance based on theme + SystemBarUtils.setupEdgeToEdgeWithAutoTheming( + this, + findViewById(R.id.main_parent_view), + toolbar, + findViewById(R.id.content_view) + ); } protected fun handleResponseSuccess(user: User, userId: String?, token: String?, provider: AuthProvider) { diff --git a/Simplenote/src/main/res/layout/new_activity_credentials.xml b/Simplenote/src/main/res/layout/new_activity_credentials.xml index 0b0e8fc2d..5f2c845ea 100644 --- a/Simplenote/src/main/res/layout/new_activity_credentials.xml +++ b/Simplenote/src/main/res/layout/new_activity_credentials.xml @@ -4,9 +4,10 @@ xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" - android:id="@+id/main" + android:id="@+id/main_parent_view" android:layout_height="match_parent" - android:layout_width="match_parent"> + android:layout_width="match_parent" + android:fitsSystemWindows="false"> @@ -74,7 +78,7 @@ android:layout_marginBottom="@dimen/margin_default_quarter" android:layout_marginEnd="@dimen/margin_default_quarter" android:layout_marginStart="@dimen/margin_default_quarter" - android:layout_marginTop="@dimen/margin_default_quarter" + android:layout_marginTop="@dimen/margin_default" android:layout_width="match_parent" android:hint="@string/simperium_hint_password" app:endIconMode="password_toggle" @@ -94,8 +98,8 @@ android:backgroundTint="@color/button_primary_disabled_selector" android:layout_below="@id/input_password" android:layout_height="wrap_content" - android:layout_marginBottom="@dimen/margin_default_quarter" - android:layout_marginTop="@dimen/margin_default_quarter" + android:layout_marginBottom="@dimen/padding_medium" + android:layout_marginTop="@dimen/padding_medium" android:layout_width="match_parent" android:minHeight="@dimen/height_button" android:textAllCaps="true" @@ -114,7 +118,7 @@ android:layout_height="wrap_content" android:layout_width="match_parent" android:minHeight="@dimen/height_footer" - android:padding="@dimen/margin_default_quarter" + android:padding="@dimen/padding_medium" android:textColor="@color/text_footer" android:textSize="@dimen/text_footer" tools:text="@string/simperium_footer_login"> From b02b2b647f0ae62829333b6b330f1426d4cd37ec Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 6 Aug 2025 14:46:32 +0200 Subject: [PATCH 05/11] clearing prefs for theme upon logout --- .../java/com/automattic/simplenote/PreferencesFragment.java | 2 ++ .../main/java/com/automattic/simplenote/utils/PrefUtils.java | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java b/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java index f8fa1b462..570e72b6b 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java @@ -14,6 +14,7 @@ import static com.automattic.simplenote.utils.PrefUtils.DATE_MODIFIED_ASCENDING_LABEL; import static com.automattic.simplenote.utils.PrefUtils.DATE_MODIFIED_DESCENDING; import static com.automattic.simplenote.utils.PrefUtils.DATE_MODIFIED_DESCENDING_LABEL; +import static com.automattic.simplenote.utils.PrefUtils.clearThemePrefs; import android.app.Activity; import android.app.Fragment; @@ -585,6 +586,7 @@ private void logOut() { ); AuthUtils.logOut((Simplenote) requireActivity().getApplication()); + clearThemePrefs(getActivity()); getActivity().finish(); } diff --git a/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java b/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java index 1fb3072a0..2b809438e 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java @@ -115,6 +115,10 @@ private static SharedPreferences getPrefs(Context context) { return PreferenceManager.getDefaultSharedPreferences(context); } + public static void clearThemePrefs(Context context) { + getPrefs(context).edit().remove(PREF_THEME).apply(); + } + public static String getStringPref(Context context, String prefKey) { return getStringPref(context, prefKey, ""); } From 642b75717f76514fc53f83c32b34b9eb21e21c13 Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 6 Aug 2025 15:11:53 +0200 Subject: [PATCH 06/11] removing clearing the theme prefs on logout, better to stick to defaults --- .../java/com/automattic/simplenote/PreferencesFragment.java | 2 -- .../main/java/com/automattic/simplenote/utils/PrefUtils.java | 4 ---- .../main/java/com/automattic/simplenote/utils/ThemeUtils.java | 4 +--- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java b/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java index 570e72b6b..f8fa1b462 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java @@ -14,7 +14,6 @@ import static com.automattic.simplenote.utils.PrefUtils.DATE_MODIFIED_ASCENDING_LABEL; import static com.automattic.simplenote.utils.PrefUtils.DATE_MODIFIED_DESCENDING; import static com.automattic.simplenote.utils.PrefUtils.DATE_MODIFIED_DESCENDING_LABEL; -import static com.automattic.simplenote.utils.PrefUtils.clearThemePrefs; import android.app.Activity; import android.app.Fragment; @@ -586,7 +585,6 @@ private void logOut() { ); AuthUtils.logOut((Simplenote) requireActivity().getApplication()); - clearThemePrefs(getActivity()); getActivity().finish(); } diff --git a/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java b/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java index 2b809438e..1fb3072a0 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/utils/PrefUtils.java @@ -115,10 +115,6 @@ private static SharedPreferences getPrefs(Context context) { return PreferenceManager.getDefaultSharedPreferences(context); } - public static void clearThemePrefs(Context context) { - getPrefs(context).edit().remove(PREF_THEME).apply(); - } - public static String getStringPref(Context context, String prefKey) { return getStringPref(context, prefKey, ""); } diff --git a/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java b/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java index 9c417da45..4dc399b6a 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/utils/ThemeUtils.java @@ -67,15 +67,13 @@ public static void setTheme(Activity activity) { } switch (PrefUtils.getIntPref(activity, PrefUtils.PREF_THEME, THEME_SYSTEM)) { - case THEME_AUTO: - AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_AUTO_TIME); - break; case THEME_DARK: AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); break; case THEME_LIGHT: AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); break; + case THEME_AUTO: case THEME_SYSTEM: AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM); break; From 5124e4f643118ec753c0b99114040fe38d3f4597 Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 6 Aug 2025 15:14:31 +0200 Subject: [PATCH 07/11] adjusted background and style for toolbar on enter password screen --- Simplenote/src/main/res/layout/new_activity_credentials.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Simplenote/src/main/res/layout/new_activity_credentials.xml b/Simplenote/src/main/res/layout/new_activity_credentials.xml index 5f2c845ea..c3d366dcf 100644 --- a/Simplenote/src/main/res/layout/new_activity_credentials.xml +++ b/Simplenote/src/main/res/layout/new_activity_credentials.xml @@ -11,12 +11,12 @@ From c43d0ad4eef6ea87069ac6e22e757982b9647bc1 Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 6 Aug 2025 15:15:16 +0200 Subject: [PATCH 08/11] removed AUTO theme since MODE_NIGHT_AUTO_TIME is deprecated - still keeping the switch value if it was kept in preferences so it doesnt break for old users --- Simplenote/src/main/res/values-v29/arrays.xml | 1 - Simplenote/src/main/res/values/arrays.xml | 2 +- Simplenote/src/main/res/xml/preferences.xml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Simplenote/src/main/res/values-v29/arrays.xml b/Simplenote/src/main/res/values-v29/arrays.xml index 3c9d60c14..75900f832 100644 --- a/Simplenote/src/main/res/values-v29/arrays.xml +++ b/Simplenote/src/main/res/values-v29/arrays.xml @@ -24,7 +24,6 @@ @string/theme_light @string/theme_dark - @string/theme_auto @string/theme_system diff --git a/Simplenote/src/main/res/values/arrays.xml b/Simplenote/src/main/res/values/arrays.xml index aecfc5791..ee971972a 100644 --- a/Simplenote/src/main/res/values/arrays.xml +++ b/Simplenote/src/main/res/values/arrays.xml @@ -24,7 +24,7 @@ @string/theme_light @string/theme_dark - @string/theme_auto + @string/theme_system diff --git a/Simplenote/src/main/res/xml/preferences.xml b/Simplenote/src/main/res/xml/preferences.xml index 15ae53fde..f07c8f745 100644 --- a/Simplenote/src/main/res/xml/preferences.xml +++ b/Simplenote/src/main/res/xml/preferences.xml @@ -43,7 +43,7 @@ Date: Thu, 7 Aug 2025 14:55:26 +0200 Subject: [PATCH 09/11] changed colors for text visibility in email sent screens --- Simplenote/src/main/res/layout/fragment_confirmation.xml | 8 ++++---- .../src/main/res/layout/fragment_magic_link_code.xml | 2 +- Simplenote/src/main/res/values-night/colors.xml | 4 ++++ Simplenote/src/main/res/values/colors.xml | 4 ++++ 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Simplenote/src/main/res/layout/fragment_confirmation.xml b/Simplenote/src/main/res/layout/fragment_confirmation.xml index 605219fde..9661b18cc 100644 --- a/Simplenote/src/main/res/layout/fragment_confirmation.xml +++ b/Simplenote/src/main/res/layout/fragment_confirmation.xml @@ -13,7 +13,7 @@ android:layout_gravity="center" android:layout_marginBottom="@dimen/padding_large" android:src="@drawable/ic_mail" - android:tint="@color/gray_50" /> + android:tint="@color/text_description" /> @@ -35,8 +35,8 @@ android:layout_marginEnd="@dimen/padding_extra_extra_large" android:layout_marginBottom="@dimen/padding_extra_large" android:gravity="center" - android:textColor="@color/gray_50" - android:textColorLink="@color/gray_50" + android:textColor="@color/text_description_secondary" + android:textColorLink="@color/text_description_secondary" android:textSize="16sp" tools:text="Didn't get an email? You may already have an account. Contact simplenote@support.com for help." /> diff --git a/Simplenote/src/main/res/layout/fragment_magic_link_code.xml b/Simplenote/src/main/res/layout/fragment_magic_link_code.xml index 78cd09ed6..a9aa601ee 100644 --- a/Simplenote/src/main/res/layout/fragment_magic_link_code.xml +++ b/Simplenote/src/main/res/layout/fragment_magic_link_code.xml @@ -72,6 +72,6 @@ android:minHeight="@dimen/height_button" android:text="@string/magic_link_confirm_code_enter_pass_label" android:textAllCaps="true" - android:textColor="@android:color/black"/> + android:textColor="@color/text_button_tertiary"/> diff --git a/Simplenote/src/main/res/values-night/colors.xml b/Simplenote/src/main/res/values-night/colors.xml index 7adf38756..400140567 100644 --- a/Simplenote/src/main/res/values-night/colors.xml +++ b/Simplenote/src/main/res/values-night/colors.xml @@ -24,6 +24,10 @@ @color/text_title_dark @color/red_20 + + @color/gray_20 + @color/gray_30 + @color/gray_1 @color/gray_1 diff --git a/Simplenote/src/main/res/values/colors.xml b/Simplenote/src/main/res/values/colors.xml index e46ca47f7..75f13b15f 100644 --- a/Simplenote/src/main/res/values/colors.xml +++ b/Simplenote/src/main/res/values/colors.xml @@ -128,6 +128,10 @@ @color/gray_80 @color/red_50 + + @color/gray_80 + @color/gray_50 + @color/gray_20 @color/simplenote_blue_50 From b10906d7cd4605ad7944342d3f2ce9708799551a Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Thu, 7 Aug 2025 15:52:50 +0200 Subject: [PATCH 10/11] updated commit hash --- Simplenote/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simplenote/build.gradle b/Simplenote/build.gradle index ca1be9af9..9d9918e7f 100644 --- a/Simplenote/build.gradle +++ b/Simplenote/build.gradle @@ -109,7 +109,7 @@ dependencies { // Fastlane screengrab for screenshots automation androidTestImplementation "tools.fastlane:screengrab:$screengrabVersion" // Automattic and WordPress dependencies - implementation 'com.automattic:simperium:251-2707fc58fab32757668a6290a7e3df8e89edbce1' + implementation 'com.automattic:simperium:251-957eff99738fc5cb26c2851c22c6cd563598062a' implementation "com.automattic:Automattic-Tracks-Android:$automatticTracksVersion" implementation "com.automattic.tracks:crashlogging:$automatticTracksVersion" From eaae36de202daf2d8f1c962d3265d348ab5e5cb3 Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Thu, 7 Aug 2025 18:41:28 +0200 Subject: [PATCH 11/11] updated simperium library version --- Simplenote/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simplenote/build.gradle b/Simplenote/build.gradle index 9d9918e7f..d070f825d 100644 --- a/Simplenote/build.gradle +++ b/Simplenote/build.gradle @@ -109,7 +109,7 @@ dependencies { // Fastlane screengrab for screenshots automation androidTestImplementation "tools.fastlane:screengrab:$screengrabVersion" // Automattic and WordPress dependencies - implementation 'com.automattic:simperium:251-957eff99738fc5cb26c2851c22c6cd563598062a' + implementation 'com.automattic:simperium:v1.4.0' implementation "com.automattic:Automattic-Tracks-Android:$automatticTracksVersion" implementation "com.automattic.tracks:crashlogging:$automatticTracksVersion"