aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorpacien2018-08-06 02:30:00 +0200
committerpacien2018-08-06 02:30:00 +0200
commit87213ac5eb7a6b557cf58609fce03c2e0ef1e36a (patch)
tree6c6073e04a265ac3740ea74932b531628e265e30 /app/src/main/res
parent9012ef92ed810f4a08b5f01cd2c18430a277eacf (diff)
downloadtincapp-87213ac5eb7a6b557cf58609fce03c2e0ef1e36a.tar.gz
Use notifications for error reporting
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/drawable/ic_warning_primary_24dp.xml28
-rw-r--r--app/src/main/res/values/strings.xml2
2 files changed, 30 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/ic_warning_primary_24dp.xml b/app/src/main/res/drawable/ic_warning_primary_24dp.xml
new file mode 100644
index 0000000..d8fa0fe
--- /dev/null
+++ b/app/src/main/res/drawable/ic_warning_primary_24dp.xml
@@ -0,0 +1,28 @@
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4 * Material design icon
5 * Copyright 2017 Google Inc.
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18-->
19
20<vector xmlns:android="http://schemas.android.com/apk/res/android"
21 android:width="24dp"
22 android:height="24dp"
23 android:viewportHeight="24.0"
24 android:viewportWidth="24.0">
25 <path
26 android:fillColor="@color/textPrimary"
27 android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
28</vector>
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index e8ba80d..e4adcae 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -32,6 +32,8 @@
32 <string name="info_running_on_format">Running on Android %1$s %2$s</string> 32 <string name="info_running_on_format">Running on Android %1$s %2$s</string>
33 <string name="info_supported_abis_format">Device ABIs: %1$s</string> 33 <string name="info_supported_abis_format">Device ABIs: %1$s</string>
34 34
35 <string name="notification_channel_error_name">Errors</string>
36
35 <string name="menu_about">About this app</string> 37 <string name="menu_about">About this app</string>
36 <string name="menu_configure">Configure</string> 38 <string name="menu_configure">Configure</string>
37 <string name="menu_disconnect">Disconnect</string> 39 <string name="menu_disconnect">Disconnect</string>