我创建了一个android应用程序并将其上传到Play商店。链接在这里 Unicorn Calendar
现在我遇到的问题是,当我从android studio运行此应用程序时,它运行正常且符合预期。但是,从Playstore下载应用程序时,在任何设备上的启动器中都没有任何显示图标,因此可以执行该应用程序。该应用程序已列在应用程序管理器中,我可以看到它正在运行。但是由于没有启动应用程序的图标,因此无法打开该应用程序。这是我的清单文件。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="technology.kings.unicorncalendar">
<uses-permission android:name="android.permission.REORDER_TASKS" />
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<application
android:allowBackup="true"
android:icon="@drawable/logo"
android:label="@string/app_name"
android:roundIcon="@drawable/logo"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".calendar.EventDayView"/>
<activity
android:name=".alarm.AlarmReceiverActivity"
android:excludeFromRecents="true"
android:theme="@style/Theme.AppCompat.Dialog" />
<activity android:name=".events.EventFormActivity" />
<activity android:name=".reminders.ReminderFormActivity" />
<activity android:name=".MonthImageSelectionActivity" />
<activity android:name=".images.ImageGalleryActivity" />
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/google_admob_key" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<data android:scheme="kings.technology" android:host="open" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
<!-- <data android:scheme="http" android:host="www.kings.technology" android:pathPrefix="/unicorn_calendar" />-->
<!-- note that the leading "/" is required for pathPrefix-->
<!-- Accepts URIs that begin with "example://gizmos” -->
<!-- <data android:scheme="kings" android:host="unicorn" />-->
</intent-filter>
</activity>
<service android:name=".alarm.RingtonePlayingService" />
<receiver android:name=".alarm.AlarmReceiver" />
</application>
</manifest>
我已经用谷歌搜索并检查了类似的答案,但没有任何解决问题的方法。