web-dev-qa-db-ja.com

AndroidXをAndroid AppCompatに移行してみてください

AndroidXからAppcompatに移行するとエラーが発生します。これがログビルドです:

Manifest merger failed : Attribute application@appComponentFactory value=(Android.support.v4.app.CoreComponentFactory) from [com.Android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91
is also present at [androidx.core:core:1.0.1] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
Suggestion: add 'tools:replace="Android:appComponentFactory"' to <application> element at AndroidManifest.xml:18:5-138:19 to override.

そのため、androidXからのサポートに移行する必要があります。その場合は、build.gradleから以下のlibsを削除し、代わりに古いサポートライブラリを追加してください。

androidx.core:core:1.0.1

また、gradle.propertiesファイルの以下の2つのプロパティを削除します。

Android.useAndroidX=true

Android.enableJetifier=true

Or Androidxに移行する場合は、これら2つのプロパティをgradle.propertiesファイルに追加します。

Android.useAndroidX=true

Android.enableJetifier=true
4
Hussnain Haidar