Browse code

Fix compilation issues. Add additional developer information.

Dario Rodriguez authored on 08/04/2026 17:28:37
Showing 5 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 # AudioNotes 📙
2
-A simple open source audio note-taking 📝 Android application built to describe the use of Modern Android development tools. 🏗. *Made with love ❤️ by [Sammie_kt](https://github.com/certified84)*
2
+A simple open source audio note-taking 📝 Android application built to describe the use of Modern Android development tools. 🏗. *Made with love ❤️ by [Sammie_kt](https://github.com/certified84), modified by Antartica*
3 3
 
4 4
 <br />
5 5
 
... ...
@@ -66,6 +66,9 @@ android {
66 66
         viewBinding = true
67 67
         compose = true
68 68
     }
69
+    lint {
70
+        abortOnError = false
71
+    }
69 72
 }
70 73
 
71 74
 dependencies {
... ...
@@ -138,4 +141,4 @@ dependencies {
138 141
     testImplementation("junit:junit:4.13.2")
139 142
     testImplementation("com.google.truth:truth:1.1.3")
140 143
     testImplementation("androidx.room:room-testing:2.6.1")
141
-}
142 144
\ No newline at end of file
145
+}
... ...
@@ -55,10 +55,10 @@
55 55
     <string name="view_pager_description_dark_mode">Taking notes shouldn\'t be rocket science. The application was designed with you in mind to ease how you take notes and to also improve your productivity</string>
56 56
     <string name="record_player">Record Player</string>
57 57
     <string name="developer">Developer</string>
58
-    <string name="developer_nick" translatable="false">Sammie_kt</string>
58
+    <string name="developer_nick" translatable="false">Sammie_kt and Antartica</string>
59 59
     <string name="contribute">Contribute</string>
60 60
     <string name="contribute_summary">View project on Github</string>
61
-    <string name="developer_mail" translatable="false">Sammie_kt@pm.me</string>
61
+    <string name="developer_mail" translatable="false">antartica@whereismybit.com</string>
62 62
     <string name="contact_feedback"><![CDATA[Contact & Feedback]]></string>
63 63
     <string name="get_started">Get Started</string>
64 64
     <string name="just_now">Just now</string>
... ...
@@ -95,4 +95,4 @@
95 95
     <string name="ok" translatable="false">OK</string>
96 96
     <string name="file_not_found" translatable="false">File not found</string>
97 97
     <string name="info_icon">Info Icon</string>
98
-</resources>
99 98
\ No newline at end of file
99
+</resources>
... ...
@@ -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>
74 74
new file mode 100644
... ...
@@ -0,0 +1,14 @@
1
+pluginManagement {
2
+    repositories {
3
+        google()
4
+        mavenCentral()
5
+        gradlePluginPortal()
6
+    }
7
+}
8
+
9
+dependencyResolutionManagement {
10
+    repositories {
11
+        google()
12
+        mavenCentral()
13
+    }
14
+}