Android And Appcompact Manifest Merger Failed

Asked By 0 points N/A Posted on -
qa-featured

I updated ‘android.support:appcompat-v7’ to 28.0.0. However, this resulted in a design error. In my Logcat: Fusion manifest, this error failed. How can I solve this problem?

SHARE
Answered By 0 points N/A #318469

Android And Appcompact Manifest Merger Failed

qa-featured

Paste the tools: replace = “android: appComponentFactory” in your AndroidManifest.xml file in the <application> tag

Your AmdroidManifest.xml

<? xml version = “1.0” encoding = “utf-8”?>

<manifest xmlns: android = “http://schemas.android.com/apk/res/android”

xmlns: tools = “http://schemas.android.com/tools”

package = “ru.chopcode.myapp”>

<application

tools: replace = “android: appComponentFactory”

android: allowBackup = “true”

android: icon = “@ mipmap / ic_launcher”

android: label = “@ string / app_name”

android: roundIcon = “@ mipmap / ic_launcher_round”

android: supportedRtl = “true”

android: theme = “@ style / AppTheme”>

</ application>

Related Questions