diff options
| author | Albin <albin@mullvad.net> | 2022-04-20 18:55:43 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2022-04-20 18:55:43 +0200 |
| commit | 12c4cd44fe008371c4cd449ade7154b9cdba17e8 (patch) | |
| tree | 0b5238042a68f32a35a52d5832c9a08d9f96f436 /android/app/src/debug/res | |
| parent | a9f906b082f76410855f0b97e71f45ca60bfa727 (diff) | |
| parent | 699fc7e860588bf3abc114df925b18ba9ae2699a (diff) | |
| download | mullvadvpn-12c4cd44fe008371c4cd449ade7154b9cdba17e8.tar.xz mullvadvpn-12c4cd44fe008371c4cd449ade7154b9cdba17e8.zip | |
Merge branch 'add-initial-android-e2e-tests'
Diffstat (limited to 'android/app/src/debug/res')
| -rw-r--r-- | android/app/src/debug/res/layout/activity_test.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/android/app/src/debug/res/layout/activity_test.xml b/android/app/src/debug/res/layout/activity_test.xml new file mode 100644 index 0000000000..18f7eafef6 --- /dev/null +++ b/android/app/src/debug/res/layout/activity_test.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".TestActivity"> + <WebView + android:id="@+id/webview" + android:layout_width="match_parent" + android:layout_height="match_parent" /> +</androidx.constraintlayout.widget.ConstraintLayout> |
