aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2017-07-29 06:09:55 -0500
committerSamuel Holland <samuel@sholland.org>2017-07-29 06:09:55 -0500
commit187c2d977735456d56a8db74413fac6ef50c9161 (patch)
tree5a74c80dd665f9854a16b4313c32bd913a1b8959 /app/src/main/AndroidManifest.xml
parentProfile: Add a blank line before each peer section (diff)
downloadwireguard-android-187c2d977735456d56a8db74413fac6ef50c9161.tar.xz
wireguard-android-187c2d977735456d56a8db74413fac6ef50c9161.zip
ProfileList: Add minimal activity
For now, it simply reads the files in the app's data directory with file names ending in ".conf" and displays them in a list. This includes the generic list data binding setup for future use.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 69b413fe..82186447 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -9,6 +9,13 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.Material.Light.DarkActionBar">
+ <activity android:name=".ProfileListActivity">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
</application>
</manifest>