diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
index 4cf20097965b..61ef2c7e5095 100644
--- a/android/app/src/debug/AndroidManifest.xml
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -13,13 +13,5 @@
android:allowBackup="false"
android:banner="@drawable/banner"
android:name=".MullvadApplication"
- tools:ignore="GoogleAppIndexingWarning">
-
-
+ tools:ignore="DataExtractionRules,GoogleAppIndexingWarning">
diff --git a/android/app/src/debug/kotlin/net/mullvad/mullvadvpn/TestActivity.kt b/android/app/src/debug/kotlin/net/mullvad/mullvadvpn/TestActivity.kt
deleted file mode 100644
index df36947eabde..000000000000
--- a/android/app/src/debug/kotlin/net/mullvad/mullvadvpn/TestActivity.kt
+++ /dev/null
@@ -1,23 +0,0 @@
-package net.mullvad.mullvadvpn
-
-import android.annotation.SuppressLint
-import android.app.Activity
-import android.os.Bundle
-import android.webkit.WebView
-import android.widget.Toast
-
-class TestActivity : Activity() {
- @SuppressLint("SetJavaScriptEnabled")
- override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- setContentView(R.layout.activity_test)
- val testWebView: WebView = findViewById(R.id.webview)
- testWebView.settings.javaScriptEnabled = true
- val url = intent.getStringExtra("url")
- if (url != null) {
- testWebView.loadUrl(url)
- } else {
- Toast.makeText(applicationContext, "No url specified!", Toast.LENGTH_SHORT).show()
- }
- }
-}
diff --git a/android/app/src/debug/res/layout/activity_test.xml b/android/app/src/debug/res/layout/activity_test.xml
deleted file mode 100644
index 18f7eafef620..000000000000
--- a/android/app/src/debug/res/layout/activity_test.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-