62

使用 Android Studio 4.2.1,在我的 build.gradle 文件中将 sdk 目标更改为 Android 12 后,出现Manifest merger failed with multiple errors, see logs错误。

选项卡中显示的错误Merged Manifest如下:

Merging Errors: 
Error: Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. My_App.app main manifest (this file) 
Error: Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. My_App.app main manifest (this file) 
Error: Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. My_App.app main manifest (this file) 

但是,该android:exported标记已应用于我的 AndroidManifest.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="com.mydomain.myapp">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.VIBRATE" />

    <application
        android:name="com.mydomain.myapp.MyApplication"
        android:allowBackup="false"
        tools:replace="allowBackup"
        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="com.mydomain.myapp.ui.MainActivity"
            android:exported="true">
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <meta-data
            android:name="preloaded_fonts"
            android:resource="@array/preloaded_fonts" />
    </application>

</manifest>

我的 build.gradle(:app) 文件:

android {
    compileSdkVersion("android-S")
    buildToolsVersion "30.0.3"

    defaultConfig {
        ...
        minSdkVersion 23
        targetSdkVersion("S")
        ...
}

知道如何解决这个问题吗?

4

8 回答 8

124

该问题是由 3 个活动在库版本中缺少该android:exported属性引起的。升级到版本解决了这个问题。androidx.test:core1.3.01.4.0-beta01

如果您在针对 Android 12 后遇到错误,最简单的调试方法是:

  • 降级到以前的 sdk 版本
  • 重建项目
  • 成功构建后,打开项目的AndroidManifest.xml.
  • 在窗口底部,单击Merged Manifest选项卡
  • 查找<activity>包含<intent-filter>标签且缺少该android:exported属性的任何内容

如果您想确保这些活动是问题所在,请将它们直接添加到项目AndroidManifest.xml文件中并添加缺少的android:exported属性,然后尝试重新构建项目。

因此,如果<activity android:name="com.domain.ProblemActivity">缺少该android:exported属性,请将其添加到您的AndroidManifest.xml文件中,如下所示:

<activity 
 android:name="com.domain.ProblemActivity"
 android:exported="true" >

针对 Android 12 重新构建,如果它有效,那么你发现了这个错误!

感谢@MikePenz为我指明了正确的方向。

于 2021-05-24T07:24:57.770 回答
6

如果您的应用面向 Android 12 或更高版本并包含使用 Intent 过滤器的活动、服务或广播接收器,则您必须为这些应用组件显式声明 android:exported 属性。为了解决这个问题,我们需要遵循以下步骤:

  1. 我们需要在主文件夹中找到 AndroidManifest.xml。

android>app>src>main>AndroidManifest.xml

在此处输入图像描述

  1. 我们必须android:exported=""在这些引号内添加并设置一个布尔值。现在您可能会问我什么时候需要添加android:exported="true"或添加android:exported="false"到使用意图过滤器的活动、服务或广播接收器。如果应用组件包含 LAUNCHER 类别,请将 android:exported 设置为 true。在大多数其他情况下,将 android:exported 设置为 false。

  2. 这是一个示例,说明它在您的 AndroidManifest.xml 中的外观

<service android:name="com.example.app.backgroundService"
         android:exported="false">
    <intent-filter>
        <action android:name="com.example.app.START_BACKGROUND" />
    </intent-filter>
</service>

您可以通过以下链接查看有关此主题的更多信息:

为 Android 12 导出更安全的组件

于 2021-11-18T14:25:50.320 回答
2

我遇到了这个问题,通过以下方式找到它:

  • 如果您的AndroidManifest文件中有任何活动、服务、接收者或提供者没有 导出 属性,则在该活动、服务、接收者或提供者中添加以下属性

android:exported="false or true"

于 2021-10-01T07:05:00.930 回答
0

不要忘记将它也放入服务标签中

    <service
        android:name=".service.MyIME"
        android:exported="true"
        android:permission="android.permission.BIND_INPUT_METHOD">
        <meta-data
            android:name="android.view.im"
            android:resource="@xml/method" />

        <intent-filter>
            <action android:name="android.view.InputMethod" />
        </intent-filter>
    </service>
于 2021-11-06T02:26:51.007 回答
0

清理和重建项目对我有用

于 2022-01-07T12:22:31.503 回答
0

我使用“exported=true”正确设置了我的活动,但仍然存在以下问题:

Installation failed due to [...] androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are present

所以我遇到了这个 Github 帖子,它可以解释为什么会发生这种情况,并应用了yogurtearl建议的解决方法,它对我有用。

https://github.com/android/android-test/issues/832

它基本上是这样的:

作为一种解决方法,将其放在 app/src/debug/AndroidManifest.xml 中,它将强制这些在相同的测试过程中启动。

    <activity
        android:name="androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity"
        android:exported="true"
        android:theme="@android:style/Theme" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>
    <activity
        android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity"
        android:exported="true"
        android:theme="@android:style/Theme" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>
    <activity
        android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity"
        android:exported="true"
        android:theme="@android:style/Theme.Dialog" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
        </intent-filter>
    </activity>

并向他们添加了“exported=true”。

于 2022-01-20T15:11:42.143 回答
0

如果您正在使用DexGuard,您现在应该更新到最新版本9.2.11 (19-01-2022)。

引用发行说明:

添加默认配置,以根据面向 Android 12 的应用程序的要求保留exported属性。

于 2022-01-21T15:23:17.987 回答
0

如果您将 android studio 升级到 Bumblebee 2021.1.1。需要进行以下更改: 第 1 步:您targetSdkVersion必须年满 30 岁或更高 第 2 步:将您的appcompat库更新为implementation 'androidx.appcompat:appcompat:1.4.1'

第 3 步:在 AndroidManifest 文件中添加android:exported = true到您的活动启动器。

于 2022-03-02T12:10:14.323 回答