diff --git a/common/djangoapps/student/tests/test_views.py b/common/djangoapps/student/tests/test_views.py
index 59d91b20da..658b3bb6a5 100644
--- a/common/djangoapps/student/tests/test_views.py
+++ b/common/djangoapps/student/tests/test_views.py
@@ -13,8 +13,6 @@ from unittest.mock import patch
import ddt
from completion.test_utils import CompletionWaffleTestMixin, submit_completions_for_testing
from django.conf import settings
-from django.test import TestCase
-from django.test.utils import override_settings
from django.urls import reverse
from django.utils.timezone import now
from milestones.tests.utils import MilestonesTestCaseMixin
@@ -886,13 +884,3 @@ class StudentDashboardTests(SharedModuleStoreTestCase, MilestonesTestCaseMixin,
assert expected_button in dashboard_html
assert unexpected_button not in dashboard_html
-
-
-@unittest.skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in lms')
-@override_settings(BRANCH_IO_KEY='test_key')
-class TextMeTheAppViewTests(UrlResetMixin, TestCase):
- """ Tests for the TextMeTheAppView. """
-
- def test_text_me_the_app(self):
- response = self.client.get(reverse('text_me_the_app'))
- self.assertContains(response, 'Send me a text with the link')
diff --git a/common/djangoapps/student/text_me_the_app.py b/common/djangoapps/student/text_me_the_app.py
deleted file mode 100644
index 956fa4fde7..0000000000
--- a/common/djangoapps/student/text_me_the_app.py
+++ /dev/null
@@ -1,23 +0,0 @@
-"""
-Fragment for rendering text me the app.
-"""
-
-
-from django.template.loader import render_to_string
-from web_fragments.fragment import Fragment
-
-from openedx.core.djangoapps.plugin_api.views import EdxFragmentView
-
-
-class TextMeTheAppFragmentView(EdxFragmentView):
- """
- A fragment to text me the app.
-
- In future we can add this to learner dashboard.
- """
- def render_to_fragment(self, request, **kwargs):
- """
- Render text me the app fragment.
- """
- html = render_to_string('learner_dashboard/text-me-fragment.html', {})
- return Fragment(html)
diff --git a/common/djangoapps/student/views/management.py b/common/djangoapps/student/views/management.py
index 36875e502f..83ebdccf36 100644
--- a/common/djangoapps/student/views/management.py
+++ b/common/djangoapps/student/views/management.py
@@ -69,7 +69,6 @@ from common.djangoapps.student.models import ( # lint-amnesty, pylint: disable=
)
from common.djangoapps.student.signals import REFUND_ORDER
from common.djangoapps.student.tasks import send_activation_email
-from common.djangoapps.student.text_me_the_app import TextMeTheAppFragmentView
from common.djangoapps.util.db import outer_atomic
from common.djangoapps.util.json_request import JsonResponse
from xmodule.modulestore.django import modulestore
@@ -863,19 +862,3 @@ def change_email_settings(request):
)
return JsonResponse({"success": True})
-
-
-@ensure_csrf_cookie
-def text_me_the_app(request):
- """
- Text me the app view.
- """
- text_me_fragment = TextMeTheAppFragmentView().render_to_fragment(request)
- context = {
- 'nav_hidden': True,
- 'show_dashboard_tabs': True,
- 'show_program_listing': ProgramsApiConfig.is_enabled(),
- 'fragment': text_me_fragment
- }
-
- return render_to_response('text-me-the-app.html', context)
diff --git a/lms/static/sass/_build-lms-v1.scss b/lms/static/sass/_build-lms-v1.scss
index 99c6c79e30..3aa93d50cf 100644
--- a/lms/static/sass/_build-lms-v1.scss
+++ b/lms/static/sass/_build-lms-v1.scss
@@ -64,7 +64,6 @@
@import 'views/financial-assistance';
@import 'course/auto-cert';
@import 'views/api-access';
-@import 'views/text-me-the-app';
// features
@import 'features/bookmarks-v1';
diff --git a/lms/static/sass/views/_text-me-the-app.scss b/lms/static/sass/views/_text-me-the-app.scss
deleted file mode 100644
index 9dd1aeb281..0000000000
--- a/lms/static/sass/views/_text-me-the-app.scss
+++ /dev/null
@@ -1,83 +0,0 @@
-.text-me-content {
- box-sizing: border-box;
-
- @include outer-container;
-
- width: 100%;
- justify-content: center;
- background: $white;
- display: block;
- flex-wrap: wrap;
- -webkit-flex-wrap: wrap;
- -moz-flex-wrap: wrap;
-
- .text-me-container {
- $grid-columns: 12;
-
- background: $white;
- min-height: 100%;
- padding: ($baseline*6) ($baseline/2);
- display: block;
- max-width: 350px;
- min-width: 250px;
- margin: 0 auto;
- }
-}
-
-.text-me-fragment {
- h2 {
- @extend %t-title4;
-
- letter-spacing: normal;
- font-family: $font-family-sans-serif;
- color: $uxpl-blue-hover-active;
- }
-
- h3 {
- @extend %t-title6;
- @extend %t-light;
-
- margin: 0;
- letter-spacing: normal;
- font-family: $font-family-sans-serif;
- color: $uxpl-gray-dark;
- }
-
- form {
- @include clearfix();
-
- clear: both;
-
- .form-field {
- @include clearfix();
-
- clear: both;
- position: relative;
- width: 100%;
- margin: ($baseline/2) 0 0 0;
-
- label,
- input {
- width: 100%;
- height: auto;
- line-height: 1.5em;
- border-radius: 0;
- font-family: $font-family-sans-serif;
- font-style: normal;
- font-weight: font-weight(normal);
- display: block;
- }
-
- .action-primary {
- @extend %btn-primary-blue;
-
- padding: 1ex 1em;
- text-transform: none;
- font-weight: font-weight(semi-bold);
- letter-spacing: normal;
- margin-top: $baseline;
- width: 100%;
- }
- }
- }
-}
diff --git a/lms/templates/learner_dashboard/text-me-fragment.html b/lms/templates/learner_dashboard/text-me-fragment.html
deleted file mode 100644
index 2bf7a60655..0000000000
--- a/lms/templates/learner_dashboard/text-me-fragment.html
+++ /dev/null
@@ -1,54 +0,0 @@
-## mako
-
-<%page expression_filter="h"/>
-
-<%namespace name='static' file='/static_content.html'/>
-
-<%!
-from django.utils.translation import ugettext as _
-from openedx.core.djangolib.js_utils import js_escaped_string
-%>
-
-<%block name="headextra">
-
-%block>
-
-${_("Get the {platform_name} Mobile App!").format(platform_name=static.get_platform_name())}
- ${_("We'll send you a one time SMS with a link to download the app.")}
-
-