Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

You need to check the icon inside your APK because it is not valid

While trying to upload my apk im getting this error..."You need to check the icon inside your APK because it is not valid."

Manifest Code

<application
    android:allowBackup="true"
    android:icon="@drawable/wallet_logo"
    android:label="Wallet"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

My logo is a vector asset

like image 220
Kamalnrf Avatar asked May 24 '16 14:05

Kamalnrf


1 Answers

The app icon specifically (ic_launcher or whatever) must be in mipmap now, since Google play rejects any builds with the app icon in drawable folders.

like image 122
box Avatar answered Sep 29 '22 08:09

box