Skip to content

Commit 07b6388

Browse files
committed
Revert "Use FossifyApp class"
This reverts commit 39b680e.
1 parent 045985d commit 07b6388

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</queries>
2020

2121
<application
22-
android:name="org.fossify.commons.FossifyApp"
22+
android:name=".App"
2323
android:allowBackup="true"
2424
android:appCategory="productivity"
2525
android:icon="@mipmap/ic_launcher"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)