Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions res/values/strings_ext.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ No query or data is sent to the server. These files contain orbits and statuses
<string name="storage_scopes">Storage Scopes</string>

<string name="conn_checks_grapheneos_server">GrapheneOS server</string>
<string name="conn_checks_apple_server">Apple server</string>
<string name="conn_checks_google_server">Standard (Google) server</string>
<string name="conn_checks_disabled">Off</string>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public ConnectivityChecksPrefController(Context ctx, String key) {
@Override
protected void getEntries(Entries entries) {
entries.add(R.string.conn_checks_grapheneos_server, ConnChecksSetting.VAL_GRAPHENEOS);
entries.add(R.string.conn_checks_apple_server, ConnChecksSetting.VAL_APPLE);
entries.add(R.string.conn_checks_google_server, ConnChecksSetting.VAL_STANDARD);
entries.add(R.string.conn_checks_disabled, ConnChecksSetting.VAL_DISABLED);
}
Expand Down