diff --git a/app/src/main/java/org/thoughtcrime/securesms/components/settings/app/chats/ChatsSettingsRepository.kt b/app/src/main/java/org/thoughtcrime/securesms/components/settings/app/chats/ChatsSettingsRepository.kt
index 641c5ab5ae..e79b3f4211 100644
--- a/app/src/main/java/org/thoughtcrime/securesms/components/settings/app/chats/ChatsSettingsRepository.kt
+++ b/app/src/main/java/org/thoughtcrime/securesms/components/settings/app/chats/ChatsSettingsRepository.kt
@@ -6,7 +6,6 @@ import org.thoughtcrime.securesms.database.SignalDatabase
import org.thoughtcrime.securesms.dependencies.ApplicationDependencies
import org.thoughtcrime.securesms.jobs.MultiDeviceConfigurationUpdateJob
import org.thoughtcrime.securesms.keyvalue.SignalStore
-import org.thoughtcrime.securesms.megaphone.Megaphones
import org.thoughtcrime.securesms.recipients.Recipient
import org.thoughtcrime.securesms.storage.StorageSyncHelper
import org.thoughtcrime.securesms.util.TextSecurePreferences
@@ -29,9 +28,6 @@ class ChatsSettingsRepository {
isLinkPreviewsEnabled
)
)
- if (isLinkPreviewsEnabled) {
- ApplicationDependencies.getMegaphoneRepository().markFinished(Megaphones.Event.LINK_PREVIEWS)
- }
}
}
}
diff --git a/app/src/main/java/org/thoughtcrime/securesms/linkpreview/LinkPreviewsMegaphoneView.java b/app/src/main/java/org/thoughtcrime/securesms/linkpreview/LinkPreviewsMegaphoneView.java
deleted file mode 100644
index 5842323ef9..0000000000
--- a/app/src/main/java/org/thoughtcrime/securesms/linkpreview/LinkPreviewsMegaphoneView.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package org.thoughtcrime.securesms.linkpreview;
-
-import android.content.Context;
-import android.util.AttributeSet;
-import android.view.View;
-import android.widget.FrameLayout;
-
-import androidx.annotation.NonNull;
-
-import org.thoughtcrime.securesms.R;
-import org.thoughtcrime.securesms.keyvalue.SignalStore;
-import org.thoughtcrime.securesms.megaphone.Megaphone;
-import org.thoughtcrime.securesms.megaphone.MegaphoneActionController;
-
-public class LinkPreviewsMegaphoneView extends FrameLayout {
-
- private View yesButton;
- private View noButton;
-
- public LinkPreviewsMegaphoneView(Context context) {
- super(context);
- initialize(context);
- }
-
- public LinkPreviewsMegaphoneView(Context context, AttributeSet attrs) {
- super(context, attrs);
- initialize(context);
- }
-
- private void initialize(@NonNull Context context) {
- inflate(context, R.layout.link_previews_megaphone, this);
-
- this.yesButton = findViewById(R.id.linkpreview_megaphone_ok);
- this.noButton = findViewById(R.id.linkpreview_megaphone_disable);
- }
-
- public void present(@NonNull Megaphone megaphone, @NonNull MegaphoneActionController listener) {
- this.yesButton.setOnClickListener(v -> {
- SignalStore.settings().setLinkPreviewsEnabled(true);
- listener.onMegaphoneCompleted(megaphone.getEvent());
- });
-
- this.noButton.setOnClickListener(v -> {
- SignalStore.settings().setLinkPreviewsEnabled(false);
- listener.onMegaphoneCompleted(megaphone.getEvent());
- });
- }
-}
diff --git a/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphone.java b/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphone.java
index 2456833a6d..2eeabd949b 100644
--- a/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphone.java
+++ b/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphone.java
@@ -215,12 +215,6 @@ public class Megaphone {
}
enum Style {
- /** Specialized style for announcing reactions. */
- REACTIONS,
-
- /** Specialized style for announcing link previews. */
- LINK_PREVIEWS,
-
/** Specialized style for onboarding. */
ONBOARDING,
diff --git a/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneRepository.java b/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneRepository.java
index d7a72dabf5..54128712f7 100644
--- a/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneRepository.java
+++ b/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneRepository.java
@@ -50,11 +50,6 @@ public class MegaphoneRepository {
@AnyThread
public void onFirstEverAppLaunch() {
executor.execute(() -> {
- database.markFinished(Event.REACTIONS);
- database.markFinished(Event.MESSAGE_REQUESTS);
- database.markFinished(Event.LINK_PREVIEWS);
- database.markFinished(Event.RESEARCH);
- database.markFinished(Event.GROUP_CALLING);
database.markFinished(Event.CHAT_COLORS);
database.markFinished(Event.ADD_A_PROFILE_PHOTO);
database.markFinished(Event.NOTIFICATION_PROFILES);
diff --git a/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneViewBuilder.java b/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneViewBuilder.java
index 4923185349..8fd5b77ae3 100644
--- a/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneViewBuilder.java
+++ b/app/src/main/java/org/thoughtcrime/securesms/megaphone/MegaphoneViewBuilder.java
@@ -6,9 +6,6 @@ import android.view.View;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
-import org.thoughtcrime.securesms.linkpreview.LinkPreviewsMegaphoneView;
-import org.thoughtcrime.securesms.reactions.ReactionsMegaphoneView;
-
public class MegaphoneViewBuilder {
public static @Nullable View build(@NonNull Context context,
@@ -20,10 +17,6 @@ public class MegaphoneViewBuilder {
return buildBasicMegaphone(context, megaphone, listener);
case FULLSCREEN:
return null;
- case REACTIONS:
- return buildReactionsMegaphone(context, megaphone, listener);
- case LINK_PREVIEWS:
- return buildLinkPreviewsMegaphone(context, megaphone, listener);
case ONBOARDING:
return buildOnboardingMegaphone(context, megaphone, listener);
case POPUP:
@@ -42,24 +35,6 @@ public class MegaphoneViewBuilder {
return view;
}
- private static @NonNull View buildReactionsMegaphone(@NonNull Context context,
- @NonNull Megaphone megaphone,
- @NonNull MegaphoneActionController listener)
- {
- ReactionsMegaphoneView view = new ReactionsMegaphoneView(context);
- view.present(megaphone, listener);
- return view;
- }
-
- private static @NonNull View buildLinkPreviewsMegaphone(@NonNull Context context,
- @NonNull Megaphone megaphone,
- @NonNull MegaphoneActionController listener)
- {
- LinkPreviewsMegaphoneView view = new LinkPreviewsMegaphoneView(context);
- view.present(megaphone, listener);
- return view;
- }
-
private static @NonNull View buildOnboardingMegaphone(@NonNull Context context,
@NonNull Megaphone megaphone,
@NonNull MegaphoneActionController listener)
diff --git a/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphones.java b/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphones.java
index 74f96b4e67..3d3d7c3dea 100644
--- a/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphones.java
+++ b/app/src/main/java/org/thoughtcrime/securesms/megaphone/Megaphones.java
@@ -96,14 +96,9 @@ public final class Megaphones {
*/
private static Map buildDisplayOrder(@NonNull Context context) {
return new LinkedHashMap() {{
- put(Event.REACTIONS, ALWAYS);
put(Event.PINS_FOR_ALL, new PinsForAllSchedule());
put(Event.PIN_REMINDER, new SignalPinReminderSchedule());
- put(Event.MESSAGE_REQUESTS, shouldShowMessageRequestsMegaphone() ? ALWAYS : NEVER);
- put(Event.LINK_PREVIEWS, shouldShowLinkPreviewsMegaphone(context) ? ALWAYS : NEVER);
put(Event.CLIENT_DEPRECATED, SignalStore.misc().isClientDeprecated() ? ALWAYS : NEVER);
- put(Event.RESEARCH, shouldShowResearchMegaphone(context) ? ShowForDurationSchedule.showForDays(7) : NEVER);
- put(Event.GROUP_CALLING, shouldShowGroupCallingMegaphone() ? ALWAYS : NEVER);
put(Event.ONBOARDING, shouldShowOnboardingMegaphone(context) ? ALWAYS : NEVER);
put(Event.NOTIFICATIONS, shouldShowNotificationsMegaphone(context) ? RecurringSchedule.every(TimeUnit.DAYS.toMillis(30)) : NEVER);
put(Event.CHAT_COLORS, ALWAYS);
@@ -115,22 +110,12 @@ public final class Megaphones {
private static @NonNull Megaphone forRecord(@NonNull Context context, @NonNull MegaphoneRecord record) {
switch (record.getEvent()) {
- case REACTIONS:
- return buildReactionsMegaphone();
case PINS_FOR_ALL:
return buildPinsForAllMegaphone(record);
case PIN_REMINDER:
return buildPinReminderMegaphone(context);
- case MESSAGE_REQUESTS:
- return buildMessageRequestsMegaphone(context);
- case LINK_PREVIEWS:
- return buildLinkPreviewsMegaphone();
case CLIENT_DEPRECATED:
return buildClientDeprecatedMegaphone(context);
- case RESEARCH:
- return buildResearchMegaphone(context);
- case GROUP_CALLING:
- return buildGroupCallingMegaphone(context);
case ONBOARDING:
return buildOnboardingMegaphone();
case NOTIFICATIONS:
@@ -148,12 +133,6 @@ public final class Megaphones {
}
}
- private static @NonNull Megaphone buildReactionsMegaphone() {
- return new Megaphone.Builder(Event.REACTIONS, Megaphone.Style.REACTIONS)
- .setPriority(Megaphone.Priority.DEFAULT)
- .build();
- }
-
private static @NonNull Megaphone buildPinsForAllMegaphone(@NonNull MegaphoneRecord record) {
if (PinsForAllSchedule.shouldDisplayFullScreen(record.getFirstVisible(), System.currentTimeMillis())) {
return new Megaphone.Builder(Event.PINS_FOR_ALL, Megaphone.Style.FULLSCREEN)
@@ -213,24 +192,6 @@ public final class Megaphones {
.build();
}
- @SuppressWarnings("CodeBlock2Expr")
- private static @NonNull Megaphone buildMessageRequestsMegaphone(@NonNull Context context) {
- return new Megaphone.Builder(Event.MESSAGE_REQUESTS, Megaphone.Style.FULLSCREEN)
- .disableSnooze()
- .setPriority(Megaphone.Priority.HIGH)
- .setOnVisibleListener(((megaphone, listener) -> {
- listener.onMegaphoneNavigationRequested(new Intent(context, MessageRequestMegaphoneActivity.class),
- ConversationListFragment.MESSAGE_REQUESTS_REQUEST_CODE_CREATE_NAME);
- }))
- .build();
- }
-
- private static @NonNull Megaphone buildLinkPreviewsMegaphone() {
- return new Megaphone.Builder(Event.LINK_PREVIEWS, Megaphone.Style.LINK_PREVIEWS)
- .setPriority(Megaphone.Priority.HIGH)
- .build();
- }
-
private static @NonNull Megaphone buildClientDeprecatedMegaphone(@NonNull Context context) {
return new Megaphone.Builder(Event.CLIENT_DEPRECATED, Megaphone.Style.FULLSCREEN)
.disableSnooze()
@@ -239,34 +200,6 @@ public final class Megaphones {
.build();
}
- private static @NonNull Megaphone buildResearchMegaphone(@NonNull Context context) {
- return new Megaphone.Builder(Event.RESEARCH, Megaphone.Style.BASIC)
- .disableSnooze()
- .setTitle(R.string.ResearchMegaphone_tell_signal_what_you_think)
- .setBody(R.string.ResearchMegaphone_to_make_signal_the_best_messaging_app_on_the_planet)
- .setImage(R.drawable.ic_research_megaphone)
- .setActionButton(R.string.ResearchMegaphone_learn_more, (megaphone, controller) -> {
- controller.onMegaphoneCompleted(megaphone.getEvent());
- controller.onMegaphoneDialogFragmentRequested(new ResearchMegaphoneDialog());
- })
- .setSecondaryButton(R.string.ResearchMegaphone_dismiss, (megaphone, controller) -> controller.onMegaphoneCompleted(megaphone.getEvent()))
- .setPriority(Megaphone.Priority.DEFAULT)
- .build();
- }
-
- private static @NonNull Megaphone buildGroupCallingMegaphone(@NonNull Context context) {
- return new Megaphone.Builder(Event.GROUP_CALLING, Megaphone.Style.BASIC)
- .disableSnooze()
- .setTitle(R.string.GroupCallingMegaphone__introducing_group_calls)
- .setBody(R.string.GroupCallingMegaphone__open_a_new_group_to_start)
- .setImage(R.drawable.ic_group_calls_megaphone)
- .setActionButton(android.R.string.ok, (megaphone, controller) -> {
- controller.onMegaphoneCompleted(megaphone.getEvent());
- })
- .setPriority(Megaphone.Priority.DEFAULT)
- .build();
- }
-
private static @NonNull Megaphone buildOnboardingMegaphone() {
return new Megaphone.Builder(Event.ONBOARDING, Megaphone.Style.ONBOARDING)
.setPriority(Megaphone.Priority.DEFAULT)
@@ -359,14 +292,6 @@ public final class Megaphones {
.build();
}
- private static boolean shouldShowMessageRequestsMegaphone() {
- return Recipient.self().getProfileName() == ProfileName.EMPTY;
- }
-
- private static boolean shouldShowResearchMegaphone(@NonNull Context context) {
- return VersionTracker.getDaysSinceFirstInstalled(context) > 7 && LocaleFeatureFlags.isInResearchMegaphone();
- }
-
private static boolean shouldShowDonateMegaphone(@NonNull Context context) {
return VersionTracker.getDaysSinceFirstInstalled(context) >= 3 &&
LocaleFeatureFlags.isInDonateMegaphone() &&
@@ -378,14 +303,6 @@ public final class Megaphones {
.noneMatch(badge -> badge.getCategory() == Badge.Category.Donor);
}
- private static boolean shouldShowLinkPreviewsMegaphone(@NonNull Context context) {
- return TextSecurePreferences.wereLinkPreviewsEnabled(context) && !SignalStore.settings().isLinkPreviewsEnabled();
- }
-
- private static boolean shouldShowGroupCallingMegaphone() {
- return Build.VERSION.SDK_INT > 19;
- }
-
private static boolean shouldShowOnboardingMegaphone(@NonNull Context context) {
return SignalStore.onboarding().hasOnboarding(context);
}
@@ -424,14 +341,9 @@ public final class Megaphones {
}
public enum Event {
- REACTIONS("reactions"),
PINS_FOR_ALL("pins_for_all"),
PIN_REMINDER("pin_reminder"),
- MESSAGE_REQUESTS("message_requests"),
- LINK_PREVIEWS("link_previews"),
CLIENT_DEPRECATED("client_deprecated"),
- RESEARCH("research"),
- GROUP_CALLING("group_calling"),
ONBOARDING("onboarding"),
NOTIFICATIONS("notifications"),
CHAT_COLORS("chat_colors"),
diff --git a/app/src/main/java/org/thoughtcrime/securesms/megaphone/ResearchMegaphoneDialog.java b/app/src/main/java/org/thoughtcrime/securesms/megaphone/ResearchMegaphoneDialog.java
deleted file mode 100644
index 12842b490f..0000000000
--- a/app/src/main/java/org/thoughtcrime/securesms/megaphone/ResearchMegaphoneDialog.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package org.thoughtcrime.securesms.megaphone;
-
-import android.os.Bundle;
-import android.text.Html;
-import android.view.View;
-import android.widget.TextView;
-
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-import androidx.annotation.StringRes;
-
-import org.thoughtcrime.securesms.R;
-import org.thoughtcrime.securesms.components.FullScreenDialogFragment;
-import org.thoughtcrime.securesms.util.CommunicationActions;
-
-public class ResearchMegaphoneDialog extends FullScreenDialogFragment {
-
- private static final String SURVEY_URL = "https://surveys.signalusers.org/s3";
-
- @Override
- public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
- TextView content = view.findViewById(R.id.research_megaphone_content);
- content.setText(Html.fromHtml(requireContext().getString(R.string.ResearchMegaphoneDialog_we_believe_in_privacy)));
-
- view.findViewById(R.id.research_megaphone_dialog_take_the_survey)
- .setOnClickListener(v -> CommunicationActions.openBrowserLink(requireContext(), SURVEY_URL));
-
- view.findViewById(R.id.research_megaphone_dialog_no_thanks)
- .setOnClickListener(v -> dismissAllowingStateLoss());
- }
-
- @Override
- protected @StringRes int getTitle() {
- return R.string.ResearchMegaphoneDialog_signal_research;
- }
-
- @Override
- protected int getDialogLayoutResource() {
- return R.layout.research_megaphone_dialog;
- }
-}
diff --git a/app/src/main/java/org/thoughtcrime/securesms/messagerequests/MessageRequestMegaphoneActivity.java b/app/src/main/java/org/thoughtcrime/securesms/messagerequests/MessageRequestMegaphoneActivity.java
index ec29acca6b..4388a9e544 100644
--- a/app/src/main/java/org/thoughtcrime/securesms/messagerequests/MessageRequestMegaphoneActivity.java
+++ b/app/src/main/java/org/thoughtcrime/securesms/messagerequests/MessageRequestMegaphoneActivity.java
@@ -54,7 +54,6 @@ public class MessageRequestMegaphoneActivity extends PassphraseRequiredActivity
if (requestCode == EDIT_PROFILE_REQUEST_CODE &&
resultCode == RESULT_OK &&
Recipient.self().getProfileName() != ProfileName.EMPTY) {
- ApplicationDependencies.getMegaphoneRepository().markFinished(Megaphones.Event.MESSAGE_REQUESTS);
setResult(RESULT_OK);
finish();
}
diff --git a/app/src/main/java/org/thoughtcrime/securesms/reactions/ReactionsMegaphoneView.java b/app/src/main/java/org/thoughtcrime/securesms/reactions/ReactionsMegaphoneView.java
deleted file mode 100644
index 90e9eaa40b..0000000000
--- a/app/src/main/java/org/thoughtcrime/securesms/reactions/ReactionsMegaphoneView.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package org.thoughtcrime.securesms.reactions;
-
-import android.content.Context;
-import android.util.AttributeSet;
-import android.view.View;
-import android.widget.FrameLayout;
-
-import androidx.annotation.NonNull;
-
-import org.thoughtcrime.securesms.R;
-import org.thoughtcrime.securesms.megaphone.Megaphone;
-import org.thoughtcrime.securesms.megaphone.MegaphoneActionController;
-
-public class ReactionsMegaphoneView extends FrameLayout {
-
- private View closeButton;
-
- public ReactionsMegaphoneView(Context context) {
- super(context);
- initialize(context);
- }
-
- public ReactionsMegaphoneView(Context context, AttributeSet attrs) {
- super(context, attrs);
- initialize(context);
- }
-
- private void initialize(@NonNull Context context) {
- inflate(context, R.layout.reactions_megaphone, this);
-
- this.closeButton = findViewById(R.id.reactions_megaphone_x);
- }
-
- public void present(@NonNull Megaphone megaphone, @NonNull MegaphoneActionController listener) {
- this.closeButton.setOnClickListener(v -> listener.onMegaphoneCompleted(megaphone.getEvent()));
- }
-}
diff --git a/app/src/main/java/org/thoughtcrime/securesms/util/LocaleFeatureFlags.java b/app/src/main/java/org/thoughtcrime/securesms/util/LocaleFeatureFlags.java
index e57c00b41e..81c9698b25 100644
--- a/app/src/main/java/org/thoughtcrime/securesms/util/LocaleFeatureFlags.java
+++ b/app/src/main/java/org/thoughtcrime/securesms/util/LocaleFeatureFlags.java
@@ -30,13 +30,6 @@ public final class LocaleFeatureFlags {
private static final String COUNTRY_WILDCARD = "*";
private static final int NOT_FOUND = -1;
- /**
- * In research megaphone group for given country code
- */
- public static boolean isInResearchMegaphone() {
- return false;
- }
-
/**
* In donate megaphone group for given country code
*/
diff --git a/app/src/main/res/drawable-mdpi/ic_group_calls_megaphone.webp b/app/src/main/res/drawable-mdpi/ic_group_calls_megaphone.webp
deleted file mode 100644
index bf363d11d7..0000000000
Binary files a/app/src/main/res/drawable-mdpi/ic_group_calls_megaphone.webp and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_group_calls_megaphone.webp b/app/src/main/res/drawable-xhdpi/ic_group_calls_megaphone.webp
deleted file mode 100644
index 313d8f8a60..0000000000
Binary files a/app/src/main/res/drawable-xhdpi/ic_group_calls_megaphone.webp and /dev/null differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_group_calls_megaphone.webp b/app/src/main/res/drawable-xxhdpi/ic_group_calls_megaphone.webp
deleted file mode 100644
index 4c646ed66e..0000000000
Binary files a/app/src/main/res/drawable-xxhdpi/ic_group_calls_megaphone.webp and /dev/null differ
diff --git a/app/src/main/res/drawable/ic_megaphone_link_previews.xml b/app/src/main/res/drawable/ic_megaphone_link_previews.xml
deleted file mode 100644
index b40dd02faa..0000000000
--- a/app/src/main/res/drawable/ic_megaphone_link_previews.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/drawable/ic_research_megaphone.xml b/app/src/main/res/drawable/ic_research_megaphone.xml
deleted file mode 100644
index 308238f571..0000000000
--- a/app/src/main/res/drawable/ic_research_megaphone.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/drawable/reactions_megaphone_background.xml b/app/src/main/res/drawable/reactions_megaphone_background.xml
deleted file mode 100644
index 8fa1174e69..0000000000
--- a/app/src/main/res/drawable/reactions_megaphone_background.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/app/src/main/res/layout/link_previews_megaphone.xml b/app/src/main/res/layout/link_previews_megaphone.xml
deleted file mode 100644
index 8a09db0ef0..0000000000
--- a/app/src/main/res/layout/link_previews_megaphone.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/reactions_megaphone.xml b/app/src/main/res/layout/reactions_megaphone.xml
deleted file mode 100644
index c76319c6f2..0000000000
--- a/app/src/main/res/layout/reactions_megaphone.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/research_megaphone_dialog.xml b/app/src/main/res/layout/research_megaphone_dialog.xml
deleted file mode 100644
index 3c42a0136f..0000000000
--- a/app/src/main/res/layout/research_megaphone_dialog.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 8bc677c29d..445328345a 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -516,10 +516,6 @@
Unnamed file
-
- Introducing Group Calls
- Open a New Group to start a free encrypted group call
-
Optimize for missing Play ServicesThis device does not support Play Services. Tap to disable system battery optimizations that prevent Signal from retrieving messages while inactive.
@@ -664,11 +660,6 @@
Before you leave, you must choose at least one new admin for this group.Choose admin
-
- Disable
- Preview any link
- You can now retrieve link previews directly from any website for messages you send.
-
No link preview availableThis group link is not active
@@ -1007,8 +998,6 @@
Sent by you to %1$s
- Introducing Reactions
- Tap and hold any message to quickly share how you feel.Remind me laterVerify your Signal PINWe\'ll occasionally ask you to verify your PIN so that you remember it.
@@ -3026,18 +3015,6 @@
PINs keep information that’s stored with Signal encrypted.Create PIN
-
- Tell Signal what you think
- To make Signal the best messaging app on the planet, we\'d love to hear your feedback.
- Learn more
- Dismiss
-
- Signal Research
- We believe in privacy.
Signal doesn\'t track you or collect your data. To improve Signal for everyone, we rely on user feedback, and we\'d love yours.
We\'re running a survey to understand how you use Signal. Our survey doesn\'t collect any data that will identify you. If you’re interested in sharing additional feedback, you\'ll have the option to provide contact information.
If you have a few minutes and feedback to offer, we\'d love to hear from you.
]]>
- Take the survey
- No thanks
- The survey is hosted by Alchemer at the secure domain surveys.signalusers.org
-
Transport iconLoading…