summaryrefslogtreecommitdiff
path: root/vpndialogxposed/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'vpndialogxposed/src/main/res')
-rw-r--r--vpndialogxposed/src/main/res/drawable-hdpi/ic_launcher.pngbin0 -> 741 bytes
-rw-r--r--vpndialogxposed/src/main/res/drawable-mdpi/ic_launcher.pngbin0 -> 549 bytes
-rw-r--r--vpndialogxposed/src/main/res/drawable-xhdpi/ic_launcher.pngbin0 -> 1061 bytes
-rw-r--r--vpndialogxposed/src/main/res/drawable-xxhdpi/ic_launcher.pngbin0 -> 1647 bytes
-rw-r--r--vpndialogxposed/src/main/res/layout/vpnapplayout.xml34
-rw-r--r--vpndialogxposed/src/main/res/values/strings.xml8
6 files changed, 42 insertions, 0 deletions
diff --git a/vpndialogxposed/src/main/res/drawable-hdpi/ic_launcher.png b/vpndialogxposed/src/main/res/drawable-hdpi/ic_launcher.png
new file mode 100644
index 00000000..a134d5fa
--- /dev/null
+++ b/vpndialogxposed/src/main/res/drawable-hdpi/ic_launcher.png
Binary files differ
diff --git a/vpndialogxposed/src/main/res/drawable-mdpi/ic_launcher.png b/vpndialogxposed/src/main/res/drawable-mdpi/ic_launcher.png
new file mode 100644
index 00000000..ad6d2155
--- /dev/null
+++ b/vpndialogxposed/src/main/res/drawable-mdpi/ic_launcher.png
Binary files differ
diff --git a/vpndialogxposed/src/main/res/drawable-xhdpi/ic_launcher.png b/vpndialogxposed/src/main/res/drawable-xhdpi/ic_launcher.png
new file mode 100644
index 00000000..10d3c009
--- /dev/null
+++ b/vpndialogxposed/src/main/res/drawable-xhdpi/ic_launcher.png
Binary files differ
diff --git a/vpndialogxposed/src/main/res/drawable-xxhdpi/ic_launcher.png b/vpndialogxposed/src/main/res/drawable-xxhdpi/ic_launcher.png
new file mode 100644
index 00000000..22db1531
--- /dev/null
+++ b/vpndialogxposed/src/main/res/drawable-xxhdpi/ic_launcher.png
Binary files differ
diff --git a/vpndialogxposed/src/main/res/layout/vpnapplayout.xml b/vpndialogxposed/src/main/res/layout/vpnapplayout.xml
new file mode 100644
index 00000000..af2a824e
--- /dev/null
+++ b/vpndialogxposed/src/main/res/layout/vpnapplayout.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ >
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/select_apps"/>
+
+
+ <ListView
+ android:id="@android:id/list"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" />
+
+ <LinearLayout
+ android:id="@android:id/empty"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:gravity="center"
+ android:orientation="vertical" >
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/no_apps_found"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+ </LinearLayout>
+
+</LinearLayout> \ No newline at end of file
diff --git a/vpndialogxposed/src/main/res/values/strings.xml b/vpndialogxposed/src/main/res/values/strings.xml
new file mode 100644
index 00000000..6eace130
--- /dev/null
+++ b/vpndialogxposed/src/main/res/values/strings.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="app_name">VpnDialog Xposed Module</string>
+ <string name="select_apps">Select the apps that should be allowed to use the VpnService API without user confirmation</string>
+ <string name="no_apps_found">No Apps using the VPNService API found</string>
+
+</resources>