diff --git a/Simplenote/src/main/AndroidManifest.xml b/Simplenote/src/main/AndroidManifest.xml index 7e5df703d..abfa29197 100644 --- a/Simplenote/src/main/AndroidManifest.xml +++ b/Simplenote/src/main/AndroidManifest.xml @@ -41,7 +41,7 @@ + + + + + + + + + + + + + + + + + + + + + + + + + 0) { // Create intent to navigate to notes activity on widget click while loading - Intent intentLoading = new Intent(context, NotesActivity.class); + Intent intentLoading = IntentUtils.maybeAliasedIntent(context); intentLoading.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_TAPPED); intentLoading.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntentLoading = PendingIntent.getActivity(context, appWidgetId, intentLoading, PendingIntent.FLAG_IMMUTABLE); @@ -159,7 +160,7 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in views.setPendingIntentTemplate(R.id.widget_list, pendingIntentItem); // Create intent to navigate to note editor on note list add button click - Intent intentButton = new Intent(context, NotesActivity.class); + Intent intentButton = IntentUtils.maybeAliasedIntent(context); intentButton.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_BUTTON_TAPPED); intentButton.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntentButton = PendingIntent.getActivity(context, appWidgetId, intentButton, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE); @@ -172,14 +173,14 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in views.setViewVisibility(R.id.widget_list, View.VISIBLE); } else { // Create intent to navigate to notes activity on widget click - Intent intent = new Intent(context, NotesActivity.class); + Intent intent = IntentUtils.maybeAliasedIntent(context); intent.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_TAPPED); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_IMMUTABLE); views.setOnClickPendingIntent(R.id.widget_layout, pendingIntent); // Create intent to navigate to note editor on note list add button click - Intent intentButton = new Intent(context, NotesActivity.class); + Intent intentButton = IntentUtils.maybeAliasedIntent(context); intentButton.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_BUTTON_TAPPED); intentButton.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntentButton = PendingIntent.getActivity(context, appWidgetId, intentButton, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE); diff --git a/Simplenote/src/main/java/com/automattic/simplenote/NoteListWidgetLight.java b/Simplenote/src/main/java/com/automattic/simplenote/NoteListWidgetLight.java index e49fdcce2..d80dc222d 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/NoteListWidgetLight.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/NoteListWidgetLight.java @@ -23,6 +23,7 @@ import com.automattic.simplenote.analytics.AnalyticsTracker; import com.automattic.simplenote.models.Note; +import com.automattic.simplenote.utils.IntentUtils; import com.automattic.simplenote.utils.PrefUtils; import com.simperium.Simperium; import com.simperium.client.Bucket; @@ -112,14 +113,14 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in if (user.getStatus().equals(User.Status.NOT_AUTHORIZED)) { // Create intent to navigate to notes activity which redirects to login on widget click - Intent intent = new Intent(context, NotesActivity.class); + Intent intent = IntentUtils.maybeAliasedIntent(context); intent.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_SIGN_IN_TAPPED); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_IMMUTABLE); views.setOnClickPendingIntent(R.id.widget_layout, pendingIntent); // Reset intent to navigate to note editor on note list add button click to navigate to notes activity, which redirects to login/signup - Intent intentButton = new Intent(context, NotesActivity.class); + Intent intentButton = IntentUtils.maybeAliasedIntent(context); views.setOnClickPendingIntent(R.id.widget_button, PendingIntent.getActivity(context, appWidgetId, intentButton, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE)); views.setTextViewText(R.id.widget_text, context.getResources().getString(R.string.log_in_use_widget)); @@ -136,7 +137,7 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in if (cursor.getCount() > 0) { // Create intent to navigate to notes activity on widget click while loading - Intent intentLoading = new Intent(context, NotesActivity.class); + Intent intentLoading = IntentUtils.maybeAliasedIntent(context); intentLoading.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_TAPPED); intentLoading.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntentLoading = PendingIntent.getActivity(context, appWidgetId, intentLoading, PendingIntent.FLAG_IMMUTABLE); @@ -159,7 +160,7 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in views.setPendingIntentTemplate(R.id.widget_list, pendingIntentItem); // Create intent to navigate to note editor on note list add button click - Intent intentButton = new Intent(context, NotesActivity.class); + Intent intentButton = IntentUtils.maybeAliasedIntent(context); intentButton.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_BUTTON_TAPPED); intentButton.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntentButton = PendingIntent.getActivity(context, appWidgetId, intentButton, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE); @@ -172,14 +173,14 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in views.setViewVisibility(R.id.widget_list, View.VISIBLE); } else { // Create intent to navigate to notes activity on widget click - Intent intent = new Intent(context, NotesActivity.class); + Intent intent = IntentUtils.maybeAliasedIntent(context); intent.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_TAPPED); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_IMMUTABLE); views.setOnClickPendingIntent(R.id.widget_layout, pendingIntent); // Create intent to navigate to note editor on note list add button click - Intent intentButton = new Intent(context, NotesActivity.class); + Intent intentButton = IntentUtils.maybeAliasedIntent(context); intentButton.putExtra(KEY_LIST_WIDGET_CLICK, NOTE_LIST_WIDGET_BUTTON_TAPPED); intentButton.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntentButton = PendingIntent.getActivity(context, appWidgetId, intentButton, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE); diff --git a/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetDark.java b/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetDark.java index ea0213a46..02fbbafe7 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetDark.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetDark.java @@ -22,6 +22,7 @@ import com.automattic.simplenote.analytics.AnalyticsTracker; import com.automattic.simplenote.models.Note; import com.automattic.simplenote.utils.ChecklistUtils; +import com.automattic.simplenote.utils.IntentUtils; import com.automattic.simplenote.utils.PrefUtils; import com.simperium.Simperium; import com.simperium.client.Bucket; @@ -108,7 +109,7 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in if (user.getStatus().equals(User.Status.NOT_AUTHORIZED)) { // Create intent to navigate to notes activity which redirects to login on widget click - Intent intent = new Intent(context, NotesActivity.class); + Intent intent = IntentUtils.maybeAliasedIntent(context); intent.putExtra(KEY_WIDGET_CLICK, NOTE_WIDGET_SIGN_IN_TAPPED); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_IMMUTABLE); diff --git a/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetLight.java b/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetLight.java index 5ddc84308..6cd45fcdb 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetLight.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/NoteWidgetLight.java @@ -22,6 +22,7 @@ import com.automattic.simplenote.analytics.AnalyticsTracker; import com.automattic.simplenote.models.Note; import com.automattic.simplenote.utils.ChecklistUtils; +import com.automattic.simplenote.utils.IntentUtils; import com.automattic.simplenote.utils.PrefUtils; import com.simperium.Simperium; import com.simperium.client.Bucket; @@ -108,7 +109,7 @@ private void updateWidget(Context context, AppWidgetManager appWidgetManager, in if (user.getStatus().equals(User.Status.NOT_AUTHORIZED)) { // Create intent to navigate to notes activity which redirects to login on widget click - Intent intent = new Intent(context, NotesActivity.class); + Intent intent = IntentUtils.maybeAliasedIntent(context); intent.putExtra(KEY_WIDGET_CLICK, NOTE_WIDGET_SIGN_IN_TAPPED); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent, PendingIntent.FLAG_IMMUTABLE); diff --git a/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java b/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java index ff18090ba..f38a1d390 100644 --- a/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java +++ b/Simplenote/src/main/java/com/automattic/simplenote/PreferencesFragment.java @@ -17,13 +17,17 @@ import android.app.Activity; import android.app.Fragment; +import android.content.ComponentName; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; +import android.content.pm.PackageManager; import android.net.Uri; import android.os.AsyncTask; +import android.os.Build; import android.os.Bundle; import android.os.ParcelFileDescriptor; +import android.widget.Switch; import android.widget.Toast; import androidx.appcompat.app.AlertDialog; @@ -237,6 +241,23 @@ public boolean onPreferenceClick(Preference preference) { } }); + final SwitchPreferenceCompat sustainerIconPreference = findPreference("pref_key_sustainer_icon"); + try { + if ( + mPreferencesBucket.get(PREFERENCES_OBJECT_KEY).getCurrentSubscriptionPlatform() != null && + Build.VERSION.SDK_INT >= Build.VERSION_CODES.P + ) { + sustainerIconPreference.setVisible(true); + sustainerIconPreference.setOnPreferenceChangeListener((preference, newValue) -> { + toggleSustainerAppIcon((boolean) newValue); + + return true; + }); + } + } catch (BucketObjectMissingException e) { + sustainerIconPreference.setVisible(false); + } + final Preference membershipPreference = findPreference("pref_key_membership"); membershipPreference.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override @@ -347,6 +368,30 @@ public boolean onPreferenceClick(Preference preference) { }); } + private void toggleSustainerAppIcon(boolean enabled) { + Context context = getContext(); + if (context == null) { + return; + } + + PackageManager packageManager = context.getPackageManager(); + String componentPackage = BuildConfig.DEBUG ? "com.automattic.simplenote.debug" : "com.automattic.simplenote"; + + ComponentName mainComponent = new ComponentName(componentPackage, "com.automattic.simplenote.NotesActivity"); + packageManager.setComponentEnabledSetting( + mainComponent, + enabled ? PackageManager.COMPONENT_ENABLED_STATE_DISABLED : PackageManager.COMPONENT_ENABLED_STATE_ENABLED, + PackageManager.DONT_KILL_APP + ); + + ComponentName sustainerComponent = new ComponentName(componentPackage, "com.automattic.simplenote.NotesActivitySustainerAlias"); + packageManager.setComponentEnabledSetting( + sustainerComponent, + enabled ? PackageManager.COMPONENT_ENABLED_STATE_ENABLED : PackageManager.COMPONENT_ENABLED_STATE_DISABLED, + PackageManager.DONT_KILL_APP + ); + } + private void showProgressDialogDeleteAccount() { FragmentActivity activity = getActivity(); if (activity == null) { diff --git a/Simplenote/src/main/java/com/automattic/simplenote/utils/IntentUtils.java b/Simplenote/src/main/java/com/automattic/simplenote/utils/IntentUtils.java new file mode 100644 index 000000000..b654daf3b --- /dev/null +++ b/Simplenote/src/main/java/com/automattic/simplenote/utils/IntentUtils.java @@ -0,0 +1,27 @@ +package com.automattic.simplenote.utils; + +import android.content.ComponentName; +import android.content.Context; +import android.content.Intent; + +public class IntentUtils { + public static String getMainActivityClassName(Context context) { + String packageName = context.getPackageName(); + Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage(packageName); + if (launchIntent != null && launchIntent.getComponent() != null) { + ComponentName componentName = launchIntent.getComponent(); + return componentName.getClassName(); + } + + return "com.simplenote.automattic.NotesActivity"; + } + + public static Intent maybeAliasedIntent(Context context) { + String packageName = context.getPackageName(); + + Intent intent = new Intent(); + intent.setComponent(new ComponentName(packageName, getMainActivityClassName(context))); + + return intent; + } +} diff --git a/Simplenote/src/main/res/drawable/ic_launcher_foreground_green.xml b/Simplenote/src/main/res/drawable/ic_launcher_foreground_green.xml new file mode 100644 index 000000000..e6fa349d1 --- /dev/null +++ b/Simplenote/src/main/res/drawable/ic_launcher_foreground_green.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/Simplenote/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml b/Simplenote/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml new file mode 100644 index 000000000..50d9f4421 --- /dev/null +++ b/Simplenote/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Simplenote/src/main/res/values/colors.xml b/Simplenote/src/main/res/values/colors.xml index 907d029b2..e46ca47f7 100644 --- a/Simplenote/src/main/res/values/colors.xml +++ b/Simplenote/src/main/res/values/colors.xml @@ -177,6 +177,7 @@ #00450c #003008 #001c05 + #328a19 #f5ece6 #f7dcc6 #ffbf86 diff --git a/Simplenote/src/main/res/values/strings.xml b/Simplenote/src/main/res/values/strings.xml index de465eb06..c89fb76d5 100644 --- a/Simplenote/src/main/res/values/strings.xml +++ b/Simplenote/src/main/res/values/strings.xml @@ -123,6 +123,7 @@ Detect links Share analytics Help us improve Simplenote by sharing usage data with our analytics tool. %1$sLearn more%2$s + Sustainer app icon Add Tag diff --git a/Simplenote/src/main/res/xml/preferences.xml b/Simplenote/src/main/res/xml/preferences.xml index ee1fd5efd..15ae53fde 100644 --- a/Simplenote/src/main/res/xml/preferences.xml +++ b/Simplenote/src/main/res/xml/preferences.xml @@ -59,6 +59,13 @@ tools:summary="@string/style_classic"> + + +