summaryrefslogtreecommitdiffhomepage
path: root/android/app/src
diff options
context:
space:
mode:
authorKalle Lindström <karl.lindstrom@mullvad.net>2024-12-19 13:19:26 +0100
committerDavid Göransson <david.goransson@mullvad.net>2024-12-19 13:29:41 +0100
commit32e72469d5287af2e38231d69f078b98fb651bf4 (patch)
tree221c91dfa86c2aadcabbdc78e4059e2be4092476 /android/app/src
parent83b08bf485a753f63d8dbe6101740f42efda6bc4 (diff)
downloadmullvadvpn-32e72469d5287af2e38231d69f078b98fb651bf4.tar.xz
mullvadvpn-32e72469d5287af2e38231d69f078b98fb651bf4.zip
Add proto datastore dependency
Diffstat (limited to 'android/app/src')
-rw-r--r--android/app/src/main/proto/user_prefs.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/android/app/src/main/proto/user_prefs.proto b/android/app/src/main/proto/user_prefs.proto
new file mode 100644
index 0000000000..3a7e79285f
--- /dev/null
+++ b/android/app/src/main/proto/user_prefs.proto
@@ -0,0 +1,6 @@
+syntax = "proto3";
+
+option java_package = "net.mullvad.mullvadvpn.repository";
+option java_multiple_files = true;
+
+message UserPreferences { bool is_privacy_disclosure_accepted = 1; }