Android 应用程序中不显示应用程序图标(在主屏幕上)

Android 应用程序中不显示应用程序图标(在主屏幕上),android,android-studio,google-play,Android,Android Studio,Google Play,我的应用程序过去工作得很好,在应用程序中安装时会显示图标,并上传到Play Store。现在,当我安装它时,它就像是隐形的,在Play Store中它只是说卸载,而不是打开。原因是什么 谢谢 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="redacted" > <uses-perm

我的应用程序过去工作得很好,在应用程序中安装时会显示图标,并上传到Play Store。现在,当我安装它时,它就像是隐形的,在Play Store中它只是说卸载,而不是打开。原因是什么

谢谢

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="redacted" >
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_GPS" />
<uses-permission android:name="android.permission.ACCESS_ASSISTED_GPS" />
<uses-permission android:name="android.permission.ACCESS_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
    android:screenOrientation="portrait"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:hardwareAccelerated="true"
    >
    <activity
        android:name=".aboutclass"
        android:configChanges="orientation|screenSize"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="redacted.aboutclass" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name=".MainActivity"
        android:configChanges="orientation|screenSize"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <action android:name="redacted.MainActivity" />
            <category android:name="android.intent.category.LAUNCHER" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="http"/>
            <data android:scheme="https"/>
            <action android:name="android.intent.action.VIEW" />
        </intent-filter>
    </activity>
    </application>
</manifest>

如果将
元素包含在与action.MAIN相同的意图过滤器中,则会出现此问题,该过滤器不需要任何数据。 您可以尝试如下方式拆分意图筛选器:

<activity
    android:name=".MainActivity"
    android:configChanges="orientation|screenSize"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter>
        <action android:name="redacted.MainActivity" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="http"/>
        <data android:scheme="https"/>
        <action android:name="android.intent.action.VIEW" />
    </intent-filter>
</activity>

如果将
元素包含在与action.MAIN相同的意图筛选器中,则会出现此问题,该筛选器不需要任何数据。 您可以尝试如下方式拆分意图筛选器:

<activity
    android:name=".MainActivity"
    android:configChanges="orientation|screenSize"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter>
        <action android:name="redacted.MainActivity" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="http"/>
        <data android:scheme="https"/>
        <action android:name="android.intent.action.VIEW" />
    </intent-filter>
</activity>

查看您在Google Play注册的电子邮件,他们可能会告诉您没有任何更新。还有其他建议吗?发布到google play页面的链接更新了带有清单的链接,你能在其中找到什么吗?你是否尝试过不同的市场(.co.uk/.com)相同的结果?检查你在google play注册的电子邮件,他们可能会更新你什么都没有。还有其他建议吗?发布到google play页面的链接用清单更新了链接,你能在这里找到什么吗?你有没有尝试过不同的市场(.co.uk/.com)相同的结果?