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 fa4e38e commit b14ad58Copy full SHA for b14ad58
app/src/main/kotlin/com/simplemobiletools/keyboard/App.kt
@@ -4,11 +4,14 @@ import android.app.Application
4
import androidx.emoji2.bundled.BundledEmojiCompatConfig
5
import androidx.emoji2.text.EmojiCompat
6
import com.simplemobiletools.commons.extensions.checkUseEnglish
7
+import com.simplemobiletools.keyboard.extensions.isDeviceLocked
8
9
class App : Application() {
10
override fun onCreate() {
11
super.onCreate()
- checkUseEnglish()
12
+ if (!isDeviceLocked) {
13
+ checkUseEnglish()
14
+ }
15
setupEmojiCompat()
16
}
17
0 commit comments