当我更改目标并将SDK版本从30编译为31时,我得到了一个错误。类似于这个问题,但它没有答案。
错误:android:exported需要为显式指定。当相应的组件定义了意图过滤器时,针对Android 12和更高版本的应用需要为< code>android:exported指定一个显式值。详见https://developer . Android . com/guide/topics/manifest/activity-element # exported。
但是所有带有intent-filter的活动都已经有了< code>andoird:exported属性。我的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>
导致错误的原因可能是什么?
<?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:导出="true"仅适用于Launcher活动和其余活动android:导出="false"
设置Android:导出=“真”
为启动器活动,Android:导出=“假”
为所有其他活动
像下面
<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>
将导出的更改为真正的Splash屏幕活动,如下所示
<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>
我已经探索了很多,我发现在所有活动中,我们需要指定android:导出参数。我已经在清单中的所有活动中添加了参数,但我仍然收到此错误。 清单合并失败:android:需要为显式指定导出
我已经检查了清单中的所有活动。xml文件中,所有活动都存在android:exported=“true”,但它始终显示此错误**清单合并失败:需要为元素显式指定android:exported 我的清单文件是 Gradle构建 等待早期响应
当我从升级到时,我收到了这个错误。 错误 清单合并失败:android:导出需要显式指定。当相应组件定义了意图过滤器时,面向Android 12及更高版本的应用需要为指定显式值。有关详细信息,请参阅https://developer.android.com/guide/topics/manifest/activity-element#exported。
当我将目标和编译SDK版本从30更改为31时,我得到一个错误。类似于这个问题,但没有答案。 错误: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
我正在从SDK版本30移动到31,并在意向过滤器中添加了android:exported,但仍然出现以下错误: 合并错误:Error:android:exported需要为显式指定。当相应组件定义了意图过滤器时,针对Android 12及更高版本的应用程序需要为指定一个显式值。看见https://developer.android.com/guide/topics/manifest/activit