Browse code

Fix compilation issues. Add additional developer information.

Dario Rodriguez authored on 08/04/2026 17:28:37
Showing 1 changed files
... ...
@@ -38,7 +38,7 @@
38 38
             app:title="@string/developer">
39 39
             <intent
40 40
                 android:action="android.intent.action.VIEW"
41
-                android:data="https://github.com/certified84" />
41
+                android:data="https://github.com/antartica" />
42 42
         </Preference>
43 43
 
44 44
         <Preference
... ...
@@ -47,7 +47,7 @@
47 47
             app:title="@string/contribute">
48 48
             <intent
49 49
                 android:action="android.intent.action.VIEW"
50
-                android:data="https://github.com/certified84/AudioNote" />
50
+                android:data="https://github.com/antartica/AudioNote" />
51 51
         </Preference>
52 52
 
53 53
         <Preference
... ...
@@ -56,7 +56,7 @@
56 56
             app:title="@string/contact_feedback">
57 57
             <intent
58 58
                 android:action="android.intent.action.SENDTO"
59
-                android:data="mailto:Sammie_kt@pm.me?subject=Feedback" />
59
+                android:data="mailto:antartica@whereismaybit.com?subject=Feedback+Audio+Note" />
60 60
         </Preference>
61 61
 
62 62
 <!--        <Preference-->
... ...
@@ -69,4 +69,4 @@
69 69
 <!--        </Preference>-->
70 70
     </PreferenceCategory>
71 71
 
72
-</PreferenceScreen>
73 72
\ No newline at end of file
73
+</PreferenceScreen>
Browse code

Initial commit (losing old history)

Dario Rodriguez authored on 08/04/2026 17:25:38
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,72 @@
1
+<!--
2
+  ~ Copyright (c) 2023 Samson Achiaga
3
+  ~
4
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
5
+  ~ you may not use this file except in compliance with the License.
6
+  ~ You may obtain a copy of the License at
7
+  ~
8
+  ~     http://www.apache.org/licenses/LICENSE-2.0
9
+  ~
10
+  ~ Unless required by applicable law or agreed to in writing, software
11
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
12
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+  ~ See the License for the specific language governing permissions and
14
+  ~ limitations under the License.
15
+  -->
16
+
17
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18
+    xmlns:app="http://schemas.android.com/apk/res-auto">
19
+
20
+    <PreferenceCategory app:title="@string/display">
21
+
22
+        <ListPreference
23
+            app:defaultValue="@string/default_theme"
24
+            app:dialogTitle="@string/choose_theme"
25
+            app:entries="@array/pref_theme"
26
+            app:entryValues="@array/pref_theme_values"
27
+            app:icon="@drawable/ic_brightness_medium_black_24dp"
28
+            app:key="@string/key_theme"
29
+            app:title="@string/theme"
30
+            app:useSimpleSummaryProvider="true" />
31
+
32
+    </PreferenceCategory>
33
+
34
+    <PreferenceCategory app:title="@string/about">
35
+        <Preference
36
+            android:icon="@drawable/ic_person_black_24"
37
+            app:summary="@string/developer_nick"
38
+            app:title="@string/developer">
39
+            <intent
40
+                android:action="android.intent.action.VIEW"
41
+                android:data="https://github.com/certified84" />
42
+        </Preference>
43
+
44
+        <Preference
45
+            android:icon="@drawable/ic_code_black_24dp"
46
+            app:summary="@string/contribute_summary"
47
+            app:title="@string/contribute">
48
+            <intent
49
+                android:action="android.intent.action.VIEW"
50
+                android:data="https://github.com/certified84/AudioNote" />
51
+        </Preference>
52
+
53
+        <Preference
54
+            android:icon="@drawable/ic_contact_support_black_24dp"
55
+            app:summary="@string/developer_mail"
56
+            app:title="@string/contact_feedback">
57
+            <intent
58
+                android:action="android.intent.action.SENDTO"
59
+                android:data="mailto:Sammie_kt@pm.me?subject=Feedback" />
60
+        </Preference>
61
+
62
+<!--        <Preference-->
63
+<!--            android:icon="@drawable/ic_info_black_24dp"-->
64
+<!--            app:summary="@string/app_version_licence_and_more"-->
65
+<!--            app:title="@string/about">-->
66
+<!--            <intent-->
67
+<!--                android:action="android.intent.action.VIEW"-->
68
+<!--                android:data="https://github.com/certified84/AudioNote" />-->
69
+<!--        </Preference>-->
70
+    </PreferenceCategory>
71
+
72
+</PreferenceScreen>
0 73
\ No newline at end of file