gpt4 book ai didi

android - list 合并失败 : android:exported needs to be explicitly specified for even if there were no services in my AndroidManifest. xml 文件

转载 作者:行者123 更新时间:2023-12-04 23:38:26 25 4
gpt4 key购买 nike

Manifest merger failed : android:exported needs to be explicitly specified for . 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.


没有 <services在我的应用程序的 AndroidManifest.xml文件,我还查找了每个 AndroidManifest.xml文件,他们也没有任何 <service元素,那么为什么我会收到此错误?
我的合并 list 选项卡中没有错误,但是,第一个 list 有两个 <receiver我已经添加了 android:exported手动在其中的属性。
enter image description here

最佳答案

app -> src -> main -> AndroidManifest.xml您需要显式添加 android:exported="true" 的标签在每个 <Activity><Application>

<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/Theme.Eynetic">
<activity android:name=".Splash_Screen"
android:theme="@style/SplashTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity"
android:theme="@style/MainTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
查看代码中的 Activity 标签...
<activity android:name=".Splash_Screen"
android:theme="@style/SplashTheme"
android:exported="true">
目前我正在对每个 Activity 进行此操作,因为这是 Android Studio 给出的错误,但也许有更好的方法可以在代码中的某个位置只添加一次。

关于android - list 合并失败 : android:exported needs to be explicitly specified for <service> even if there were no services in my AndroidManifest. xml 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69067559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com