-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexample_credentials.xml
More file actions
22 lines (22 loc) · 1.2 KB
/
example_credentials.xml
File metadata and controls
22 lines (22 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<!-- Copy this file to app/src/main/res/values/credentials.xml and make
modifications as appropriate. If the field backend_server is not
present then no server communication will be made.
If confirmation_email_sender is not present, then no session notification
emails will be sent. I believe confirmation_email_sender must be a
gmail account.
Please do not use an account or password that you care about in
this section, anyone with access to the apk will very easily
have access to the account name and password.
Under no circumstances should the file be committed to github or
posted anywhere else. -->
<resources>
<string name="backend_server">https://localhost:8050</string>
<string name="trustable_hosts">localhost,10.0.2.2</string>
<string name="confirmation_email_sender">example.account.of.little.importance@gmail.com</string>
<string name="confirmation_email_password">the_actual_password__yes_really</string>
<string-array name="confirmation_email_recipients">
<item>notify.this.email.address@gmail.com</item>
</string-array>
<fraction name="timeout_fraction">100%</fraction>
</resources>