We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 045985d commit 07b6388Copy full SHA for 07b6388
app/src/main/AndroidManifest.xml
@@ -19,7 +19,7 @@
19
</queries>
20
21
<application
22
- android:name="org.fossify.commons.FossifyApp"
+ android:name=".App"
23
android:allowBackup="true"
24
android:appCategory="productivity"
25
android:icon="@mipmap/ic_launcher"
app/src/main/kotlin/org/fossify/notes/App.kt
@@ -0,0 +1,11 @@
1
+package org.fossify.notes
2
+
3
+import android.app.Application
4
+import org.fossify.commons.extensions.checkUseEnglish
5
6
+class App : Application() {
7
+ override fun onCreate() {
8
+ super.onCreate()
9
+ checkUseEnglish()
10
+ }
11
+}
0 commit comments