当前位置: 首页 > 知识库问答 >
问题:

Android在实现条带库后出现“清单合并失败”错误

毕和志
2023-03-14

我实现了'com.stripe: stripe-android: 8.5.0'到我的应用gradle,然后我得到了以下错误试图建立我的项目:

清单合并失败:属性application@appComponentFactory值=(android.support.v4.app.CoreComponentFactory)来自[com.android.support:support compat:28.0.0]AndroidManifest。xml:22:18-91也出现在[androidx.core:core:1.0.1]AndroidManifest上。xml:22:18-86 value=(androidx.core.app.CoreComponentFactory)。建议:在AndroidManifest的元素中添加“tools:replace=“android:appComponentFactory”。xml:14:5-68:19来覆盖。

我的应用程序gradle:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'com.google.gms.google-services'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.khoi.myApp"
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
        multiDexEnabled true


    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:animated-vector-drawable:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.android.support:support-vector-drawable:28.0.0'
    implementation 'com.android.support:support-media-compat:28.0.0'
    implementation 'com.google.android.gms:play-services-maps:16.0.0'
    implementation 'com.google.android.gms:play-services-places:16.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.firebase:firebase-auth:16.1.0'
    implementation 'com.google.firebase:firebase-database:16.0.5'
    implementation 'com.google.firebase:firebase-core:16.0.6'
    implementation 'com.google.android.gms:play-services-location:16.0.0'
    implementation 'com.ncapdevi:frag-nav:3.0.0'
    implementation "android.arch.lifecycle:extensions:1.1.1"
    implementation "android.arch.lifecycle:viewmodel:1.1.1"
    implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.20"
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.crystal:crystalrangeseekbar:1.1.3'
    implementation 'com.stripe:stripe-android:8.5.0'
}
apply plugin: 'com.google.gms.google-services'

显示

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.khoi.myApp">
    <!--
         The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
         Google Maps Android API v2, but you must specify either coarse or fine
         location permissions for the 'MyLocation' functionality. 
    -->
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <!-- To auto-complete the email text field in the login form with the user's emails -->
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.READ_PROFILE" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".activities.RentActivity"
            android:label="Rent">
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value=".activities.MainActivity"/>
        </activity>

        <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />

        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="@string/google_maps_key" />

        <activity
            android:name=".activities.SplashActivity"
            android:theme="@style/SplashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".activities.MainActivity"
            android:theme="@style/AppTheme"></activity>
        <activity
            android:name=".activities.LoginActivity"
            android:theme="@style/HiddenTitleTheme"></activity>
        <activity
            android:name=".activities.RegisterActivity"
            android:theme="@style/HiddenTitleTheme">
            <intent-filter>

                <!-- <action android:name="android.intent.action.MAIN"/> -->
                <action android:name="android.intent.action.VIEW" />
                <!-- <category android:name="android.intent.category.LAUNCHER"/> -->
            </intent-filter>
        </activity>
    </application>

</manifest>

共有2个答案

焦信鸥
2023-03-14

这不是关于AndroidManifest的。应用程序的xml。

错误消息表明support compat library 28.0.0与使用androidx的其他库之间存在冲突。我怀疑这个stripe库是用androidx构建的。”通用域名格式。stripe:stripe android:8.5.0'

您可以通过将应用程序迁移到使用androidx而不是旧的支持库来解决这个问题。

司马念
2023-03-14

stripe android正在使用AndroidX,并包含CoreComponentFactory类。实际上,您的项目已经有了这个类,所以请尝试从gradle中排除已经存在的模块,或者按照IDE的建议覆盖清单文件中的值,或者从Refactor将您的项目迁移到AndroidX-

另一个解决方案是使用旧版本的stripe android库,该库内部不使用AndroidX。

 类似资料:
  • 明显合并失败,存在多个错误。查看日志: 错误:任务“:app:processDebugManifest”的执行失败。

  • 调试项目时,出现错误“清单合并失败,出现多个错误,请参阅日志” 任务“:app:processDebugMainManifest”的执行失败。错误:属性application@appComponentFactory值=(androidx.core.app.CoreComponentFactory)来自[androidx.core:core:1.5.0]AndroidManifest。xml:24:

  • 当我尝试重建project时,android studio给出了错误:

  • 所以,我是Android和Java的初学者。我才刚开始学习。当我今天在进行意图实验时,我发生了一个错误。 我在这里找到了一些解决方案,并试图实施,但并不奏效。 这是我的建筑。格雷德尔: 这是我的AndroidManifest: null 这是我编写代码的第一个星期,如果这是一件非常愚蠢的事情,我很抱歉。我对此真的是初来乍到,也没找到别的地方问。如果我违反了任何规则,我很抱歉

  • 当我构建应用程序时,出现错误 RuntimeException:清单合并失败,出现多个错误 下面是我的构建。gradle(project:appname): 我的舱单:

  • 我似乎得到了这样的错误: