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:
Helium314 2025-02-28 21:44:25 +01:00
parent 999c900f7f
commit 912be23900

View file

@ -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"