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

android:导出需要显式指定

林弘文
2023-03-14

当我将目标和编译SDK版本从30更改为31时,我得到一个错误。类似于这个问题,但没有答案。

错误:android:导出需要显式指定。针对Android 12及更高版本的应用程序需要指定一个显式值为android:导出时,相应的组件定义了一个意图过滤器。详见https://developer.android.com/guide/topics/manifest/activity-element#exported。

但是,所有带有意图过滤器的活动都已经具有andoaird:导出属性。我的android清单:


<?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.bsuir.testapp.presentation">

    <uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
    <uses-permission android:name="android.permission.BLUETOOTH_SCAN" tools:node="remove" />
    <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />

    <application
        android:name="com.bsuir.testapp.presentation.App"
        android:allowBackup="true"
        android:label="@string/app_name"
        android:theme="@style/Theme.ComposePagination"
        android:supportsRtl="true">

        <activity
            android:name=".screens.launchscreen.SplashScreen"
            android:theme="@style/SplashTheme"
            android:screenOrientation="portrait"
            android:exported="false">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".screens.history.view.HistoryActivity"
            android:label="@string/history_name"
            android:theme="@style/Theme.ComposePagination.NoActionBar"
            android:screenOrientation="portrait"/>
        <activity
            android:name=".screens.availabledevices.view.AvailableDevicesActivity"
            android:label="@string/devices_name"
            android:theme="@style/Theme.ComposePagination.NoActionBar"
            android:screenOrientation="portrait"/>
        <activity
            android:name=".screens.settings.view.SettingsActivity"
            android:label="@string/settings_name"
            android:theme="@style/Theme.ComposePagination.NoActionBar"
            android:screenOrientation="portrait"/>
        <activity
            android:name=".screens.dashboard.view.DashboardActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"/>

        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="${applicationId}.provider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_provider_paths" />
        </provider>
    </application>

</manifest>

是什么导致了错误?

共有3个答案

相温文
2023-03-14
   <?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.bsuir.testapp.presentation">

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" tools:node="remove" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />

<application
    android:name="com.bsuir.testapp.presentation.App"
    android:allowBackup="true"
    android:label="@string/app_name"
    android:theme="@style/Theme.ComposePagination"
    android:supportsRtl="true">

    <activity
        android:name=".screens.launchscreen.SplashScreen"
        android:theme="@style/SplashTheme"
        android:screenOrientation="portrait"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:exported="false"
        android:name=".screens.history.view.HistoryActivity"
        android:label="@string/history_name"android:exported="true"
        android:theme="@style/Theme.ComposePagination.NoActionBar"
        android:screenOrientation="portrait"/>
    <activity
        android:exported="false"
        android:name=".screens.availabledevices.view.AvailableDevicesActivity"
        android:label="@string/devices_name"
        android:theme="@style/Theme.ComposePagination.NoActionBar"
        android:screenOrientation="portrait"/>
    <activity
        android:exported="false"
        android:name=".screens.settings.view.SettingsActivity"
        android:label="@string/settings_name"
        android:theme="@style/Theme.ComposePagination.NoActionBar"
        android:screenOrientation="portrait"/>
    <activity
        android:exported="false"
        android:name=".screens.dashboard.view.DashboardActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"/>

    <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="${applicationId}.provider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_provider_paths" />
    </provider>
</application>

更新android:exported=“true”仅适用于启动器活动和剩余活动android:exported=“false”

百里光熙
2023-03-14

为启动器活动设置android:exported=“true”,为所有其他活动设置android:exported=“false”

就像下面

<activity
            android:name=".SecondActivity"
            android:exported="false" />
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
王刚毅
2023-03-14

更改导出为真正的SplashScreet活动,如下所示

 <activity
        android:name=".screens.launchscreen.SplashScreen"
        android:theme="@style/SplashTheme"
        android:screenOrientation="portrait"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
 类似资料:
  • 我已经检查了清单中的所有活动。xml文件中,所有活动都存在android:exported=“true”,但它始终显示此错误**清单合并失败:需要为元素显式指定android:exported 我的清单文件是 Gradle构建 等待早期响应

  • 当我从升级到时,我收到了这个错误。 错误 清单合并失败:android:导出需要显式指定。当相应组件定义了意图过滤器时,面向Android 12及更高版本的应用需要为指定显式值。有关详细信息,请参阅https://developer.android.com/guide/topics/manifest/activity-element#exported。

  • 我试图在Android(Java)集成使用剃刀支付支付网关的支付方法,但每次错误持续存在。应用程序本身,没有什么在它,我只是运行应用程序后添加剃刀支付依赖。我已经尝试了几个类似的问题,但他们都说,明确地添加'android:导出="true",但然后我的应用程序运行正常,当我从build.gradle(应用程序)文件中删除实现com.razorpay:签出:1.6.12'。' 我完全按照razor

  • 我已经探索了很多,我发现在所有活动中,我们需要指定android:导出参数。我已经在清单中的所有活动中添加了参数,但我仍然收到此错误。 清单合并失败:android:需要为显式指定导出

  • 我在一个Jetpack Compose项目中遇到了这个错误。清单合并失败:需要为显式指定android:exported。当相应组件定义了意图过滤器时,针对Android 12及更高版本的应用程序需要为指定一个显式值。看见https://developer.android.com/guide/topics/manifest/activity-element#exported详情 这一切都始于我添加

  • 当我更改目标并将SDK版本从30编译为31时,我得到了一个错误。类似于这个问题,但它没有答案。 错误:android:exported需要为显式指定。当相应的组件定义了意图过滤器时,针对Android 12和更高版本的应用需要为< code>android:exported指定一个显式值。详见https://developer . Android . com/guide/topics/manife