mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-25 11:22:20 +00:00
avoid exception on startup
java.lang.ClassNotFoundException: Didn't find class "androidx.core.app.CoreComponentFactory" see https://stackoverflow.com/a/65980047
This commit is contained in:
parent
999c900f7f
commit
912be23900
1 changed files with 5 additions and 2 deletions
|
@ -5,7 +5,8 @@ modified
|
|||
SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-only
|
||||
-->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
|
@ -20,7 +21,9 @@ SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-only
|
|||
android:supportsRtl="true"
|
||||
android:allowBackup="true"
|
||||
android:defaultToDeviceProtectedStorage="true"
|
||||
android:directBootAware="true">
|
||||
android:directBootAware="true"
|
||||
tools:remove="android:appComponentFactory"
|
||||
tools:targetApi="p">
|
||||
|
||||
<!-- Services -->
|
||||
<service android:name="LatinIME"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue