summaryrefslogtreecommitdiffhomepage
path: root/android/app/src
diff options
context:
space:
mode:
Diffstat (limited to 'android/app/src')
-rw-r--r--android/app/src/main/res/anim/fade_in.xml6
-rw-r--r--android/app/src/main/res/drawable/transparent_red_button_background.xml23
-rw-r--r--android/app/src/main/res/layout/missing_service.xml3
-rw-r--r--android/app/src/main/res/layout/split_tunneling.xml34
-rw-r--r--android/app/src/main/res/layout/split_tunneling_header.xml58
-rw-r--r--android/app/src/main/res/values/colors.xml3
-rw-r--r--android/app/src/main/res/values/strings_non_translatable.xml1
7 files changed, 0 insertions, 128 deletions
diff --git a/android/app/src/main/res/anim/fade_in.xml b/android/app/src/main/res/anim/fade_in.xml
deleted file mode 100644
index d9b78f9197..0000000000
--- a/android/app/src/main/res/anim/fade_in.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<set xmlns:android="http://schemas.android.com/apk/res/android">
- <alpha android:fromAlpha="0.0"
- android:toAlpha="1.0"
- android:duration="@integer/transition_animation_duration" />
-</set>
diff --git a/android/app/src/main/res/drawable/transparent_red_button_background.xml b/android/app/src/main/res/drawable/transparent_red_button_background.xml
deleted file mode 100644
index 84a3a77c38..0000000000
--- a/android/app/src/main/res/drawable/transparent_red_button_background.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:state_pressed="false"
- android:state_focused="false">
- <shape android:shape="rectangle">
- <corners android:radius="4dp" />
- <solid android:color="@color/red60" />
- </shape>
- </item>
- <item android:state_pressed="false"
- android:state_focused="true">
- <shape android:shape="rectangle">
- <corners android:radius="4dp" />
- <solid android:color="@color/red95" />
- </shape>
- </item>
- <item android:state_pressed="true">
- <shape android:shape="rectangle">
- <corners android:radius="4dp" />
- <solid android:color="@color/red80" />
- </shape>
- </item>
-</selector>
diff --git a/android/app/src/main/res/layout/missing_service.xml b/android/app/src/main/res/layout/missing_service.xml
deleted file mode 100644
index 9e3f21fde7..0000000000
--- a/android/app/src/main/res/layout/missing_service.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"></FrameLayout>
diff --git a/android/app/src/main/res/layout/split_tunneling.xml b/android/app/src/main/res/layout/split_tunneling.xml
deleted file mode 100644
index 33a6419400..0000000000
--- a/android/app/src/main/res/layout/split_tunneling.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:mullvad="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/darkBlue"
- android:gravity="left">
- <TextView android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/split_tunneling"
- style="@style/SettingsCollapsedHeader" />
- <LinearLayout android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <FrameLayout android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <net.mullvad.mullvadvpn.ui.widget.BackButton android:id="@+id/back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- mullvad:text="@string/settings_vpn" />
- <TextView android:id="@+id/collapsed_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="4dp"
- android:layout_gravity="center"
- android:text="@string/split_tunneling"
- style="@style/SettingsCollapsedHeader" />
- </FrameLayout>
- <net.mullvad.mullvadvpn.ui.widget.CustomRecyclerView android:id="@+id/app_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:scrollbars="vertical" />
- </LinearLayout>
-</FrameLayout>
diff --git a/android/app/src/main/res/layout/split_tunneling_header.xml b/android/app/src/main/res/layout/split_tunneling_header.xml
deleted file mode 100644
index 2f8bc681ce..0000000000
--- a/android/app/src/main/res/layout/split_tunneling_header.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:mullvad="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:gravity="left">
- <TextView android:id="@+id/expanded_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:layout_marginLeft="@dimen/side_margin"
- android:layout_marginTop="2dp"
- android:layout_marginBottom="12dp"
- android:lines="1"
- android:text="@string/split_tunneling"
- style="@style/SettingsExpandedHeader" />
- <TextView android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="8dp"
- android:paddingHorizontal="@dimen/side_margin"
- android:text="@string/split_tunneling_description"
- android:textColor="@color/white"
- android:textSize="@dimen/text_small" />
- <net.mullvad.mullvadvpn.ui.widget.ToggleCell android:id="@+id/enabled"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/vertical_space"
- mullvad:text="@string/enable" />
- <LinearLayout android:id="@+id/exclude_applications"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/vertical_space"
- android:paddingLeft="@dimen/cell_left_padding"
- android:paddingRight="@dimen/cell_right_padding"
- android:background="@drawable/cell_button_background"
- android:visibility="gone"
- android:gravity="center">
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:paddingRight="@dimen/cell_inner_spacing"
- android:paddingVertical="@dimen/cell_label_vertical_padding"
- android:textColor="@color/white"
- android:textSize="@dimen/text_medium"
- android:textStyle="bold"
- android:text="@string/exclude_applications" />
- </LinearLayout>
- <ProgressBar android:id="@+id/loading_spinner"
- android:layout_width="60dp"
- android:layout_height="60dp"
- android:layout_gravity="center"
- android:layout_marginTop="@dimen/vertical_space"
- android:indeterminate="true"
- android:indeterminateOnly="true"
- android:indeterminateDuration="600"
- android:indeterminateDrawable="@drawable/icon_spinner"
- android:visibility="gone" />
-</LinearLayout>
diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml
index 77a20b7922..1bcfd3d010 100644
--- a/android/app/src/main/res/values/colors.xml
+++ b/android/app/src/main/res/values/colors.xml
@@ -18,10 +18,7 @@
<color name="red95">#F2E34039</color>
<color name="red80">#CCE34039</color>
<color name="red60">#99E34039</color>
- <color name="red45">#72E34039</color>
- <color name="red40">#66E34039</color>
<color name="yellow">#FFD323</color>
- <color name="textInputBorder">#234161</color>
<color name="icon_background">@color/darkBlue</color>
<!-- Switch Colors -->
<color name="switch_thumb_fill_checked">@color/green</color>
diff --git a/android/app/src/main/res/values/strings_non_translatable.xml b/android/app/src/main/res/values/strings_non_translatable.xml
index 7c8b868059..1e11bda6db 100644
--- a/android/app/src/main/res/values/strings_non_translatable.xml
+++ b/android/app/src/main/res/values/strings_non_translatable.xml
@@ -3,7 +3,6 @@
<string name="login_hint" translatable="false">0000 0000 0000 0000</string>
<string name="voucher_hint" translatable="false">XXXX-XXXX-XXXX-XXXX</string>
<string name="account_url" translatable="false">https://mullvad.net/account</string>
- <string name="wg_key_url" translatable="false">https://mullvad.net/account/ports</string>
<string name="download_url" translatable="false">https://mullvad.net/download</string>
<string name="faqs_and_guides_url" translatable="false">https://mullvad.net/help/tag/mullvad-app/</string>
<string name="privacy_policy_url" translatable="false">https://mullvad.net/help/privacy-policy/</string>