Reputation: 361
I have an app directed to android tv, using flutter to develop this app, and I want to change app banner.
The problem:
The banner doesn't fill the rectangle
What I tried:
I add banner
to application
tag in AndroidManifest
like this:
<application
android:label="test"
android:icon="@drawable/banner"
android:banner="@drawable/banner"
>
How to solve this problem?
Upvotes: 1
Views: 1566
Reputation: 4446
Please check your banner size. The banner should be an xhdpi resource with a size of 320 x 180 px.
Upvotes: 4