mojira.dev

Richard Martin

More than one avatar was detected! There might be multiple accounts sharing this same name.

Assigned

No issues.

Reported

Comments

To fix this, the following changes need to be done to the Manifest.xml file:

In the top by the other uses-features add:

<uses-feature android:name="android.hardware.gamepad" android:required="false"/>
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.gamepad" android:required="false"/>
<uses-feature android:name="android.software.leanback" android:required="false" />

Change the line that says

<application android:icon="@drawable/icon" android:label="@string/app_name">
<application android:icon="@drawable/icon" android:label="@string/app_name">

to

<application android:icon="@drawable/icon" android:banner="@drawable/banner" android:label="@string/app_name" android:isGame="true">
<application android:icon="@drawable/icon" android:banner="@drawable/banner" android:label="@string/app_name" android:isGame="true">

In the intent filter section add:

<category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
<category android:name="android.intent.category.LEANBACK_LAUNCHER"/>

Then all you need to do is add a 320x180 launcher image named banner.png in the drawable folder.

[media]