I have a problem with Google Play. I can't change the app logo which showed in the Play Market's page of my app.
What did I do:
1) I changed the icon in the Google Play console (high definition icon 512x512);
2) I removed old instances of an old icon from /res directory;
3) I created new instances of the new icon in the /res directory (the launcher icon had changed on the device);
4) I uploaded the app to the Play Market.
Result: Launcher icon has changed on the device (and there no question to icons on devices), however, the app's page of Play Market shows the old app's icon.
Maybe important notes:
AndroindManifest.xml:
<application android:name=".AnalyticsApplication"
android:icon="@mipmap/ic_launcher"
-----
<activity android:name=".Activities.SplashScreenActivity_"
android:screenOrientation="portrait"
android:theme="@style/SplashScreenTheme"
>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
------
(I use Splash Screen without "android:icon").
Question: How to change App icon on the Play Market's page?
UPD. WHAT HAPPENED WITH ME (SOLUTION): My app is localized for three languages and High-res icon should be uploaded for every language (because the description icon was localized for 3 languages). Thank you for your time)