我开发了一个应用程序,一切正常,但当我发送到Google Play商店,我试图从商店安装应用程序时,图标不显示在屏幕上。现在,当我从模拟器运行它时,图标不再显示。
这是清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.myAppName"
tools:targetApi="31">
<activity
android:theme="@style/Theme.AppCompat.NoActionBar"
android:name=".luces"
android:exported="true">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity
android:theme="@style/Theme.AppCompat.NoActionBar"
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
</application>
我尝试使用“文件”〉“新建图像资产”重新上传图标,但没有成功
1条答案
按热度按时间xu3bshqb1#
发生这种情况是因为你把所有的东西都传递到了一个Intent过滤器中。试着把它们按照用例分开,或者至少把Launcher和Main Filter分开。
This should be helpful gentleman.