So I've made an app that runs perfectly. The Icon is prepared. Only problem is changing the icon for the small app. Currently it is the standard green robot. I've tried searching Sonys developer pages and checked the docs. Nothing. My current Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp">
<uses-sdk android:minSdkVersion="17"/>
<uses-permission android:name="com.sony.smallapp.permission.SMALLAPP" />
<application android:label="@string/app_name" android:icon="@drawable/icon">
<uses-library android:name="com.sony.smallapp.framework" />
<service
android:name="SmallMyApp"
android:exported="true">
<intent-filter>
<action android:name="com.sony.smallapp.intent.action.MAIN"/>
<category android:name="com.sony.smallapp.intent.category.LAUNCHER"/>
</intent-filter>
</service>
</application>
Also tried running android:icon="@mipmap/mipicon"
Anyone have any ideas?
EDIT*
Leaving the app for a week solved the problem. Without and input from my side the icon changed magically.