我已经探索了很多,我发现在所有活动中,我们需要指定android:导出参数。我已经在清单中的所有活动中添加了参数,但我仍然收到此错误。
清单合并失败:android:需要为显式指定导出
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.soptle">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:roundIcon="@drawable/icon"
android:usesCleartextTraffic="true"
android:supportsRtl="true"
android:theme="@style/Theme.Soptle">
<activity
android:name=".ManufacturerDetailsActivity"
android:exported="true" />
<activity
android:name=".NotificationActivity"
android:exported="true" />
<activity
android:name=".SearchActivity"
android:exported="true" />
<activity
android:name=".UpdateUserInfoActivity"
android:exported="true" />
<activity
android:name=".OTPverificationActivity"
android:exported="true" />
<activity
android:name=".ViewAllActivity"
android:exported="true" />
<activity
android:name=".MyAddressesActivity"
android:exported="true" />
<activity
android:name=".AddAddressActivity"
android:exported="true" />
<activity
android:name=".DeliveryActivity"
android:exported="true" />
<activity
android:name=".OrderDetailsActivity"
android:exported="true" />
<activity
android:name=".ProductDetailsActivity"
android:exported="true" />
<activity
android:name=".CategoryActivity"
android:exported="true" />
<activity
android:name=".HomeActivity"
android:exported="true"
android:label="@string/title_activity_home"
android:screenOrientation="portrait"
android:theme="@style/Theme.Soptle.NoActionBar" />
<activity
android:name=".MainActivity"
android:exported="true"
android:screenOrientation="portrait"
android:theme="@style/Theme.SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".RegisterActivity"
android:exported="true"
android:screenOrientation="portrait" />
<meta-data
android:name="preloaded_fonts"
android:exported="true"
android:resource="@array/preloaded_fonts" />
</application>
</manifest>
在manifest.xml中使用意图过滤器将android: export="true"添加到活动中,为我解决了问题
我正在从SDK版本30移动到31,并在意向过滤器中添加了android:exported,但仍然出现以下错误: 合并错误:Error:android:exported需要为显式指定。当相应组件定义了意图过滤器时,针对Android 12及更高版本的应用程序需要为指定一个显式值。看见https://developer.android.com/guide/topics/manifest/activit
当我更改目标并将SDK版本从30编译为31时,我得到了一个错误。类似于这个问题,但它没有答案。 错误:android:exported需要为显式指定。当相应的组件定义了意图过滤器时,针对Android 12和更高版本的应用需要为< code>android:exported指定一个显式值。详见https://developer . Android . com/guide/topics/manife
我已经检查了清单中的所有活动。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 Studio在移动设备上运行。 清单合并失败:当相应的组件定义了意向过滤器时,面向 Android 12 及更高版本的应用需要为 指定一个显式值。有关详细信息,请参阅 https://developer.android.com/guide/topics/manifest/activity-element#exported。