Marketing type
Stay organized with collections
Save and categorize content based on your preferences.
An Object containing marketing information and assets.
Fields
horizontalBanners
: Array of Image — required
The horizontal banner of the game.
- Each image must have an aspect ratio of 16:9.
- Must include at least an image with size 1920x1080px.
- May also include images with sizes 480x270px and 240x135px.
verticalBanners
: Array of Image — required
The vertical banner of the game.
- Each image must have an aspect ratio of 9:16.
- Must include at least an image with size 1080x1920px.
- May also include images with sizes 270x480px and 135x240px.
screenshots
: Array of Image — required
Screenshots from the game.
- Must include at least 3 different screenshots.
- Each image must have an aspect ratio of 16:9 or 9:16.
- All images must have a size of at least 1920x1080px or 1080x1920px.
gameIcons
: Array of Image — required
The icon that's shown when the game is installed or added to the homescreen.
- Each image must be square with no transparency or shadows.
- Must include at least an image with size 512x512px.
- May also include images with sizes 256x256px and 128x128px.
trailers
: Array of Video — default: []
The trailers of the game.
- Each video must have an aspect ratio of 16:9.
- At least one video must have a size of 1920x1080px.
Examples
{
"horizontalBanners": [
{
"size": {
"height": 1080,
"width": 1920
},
"src": "images/testgame-horizontal-banner.png"
},
...
],
"verticalBanners": [
{
"size": {
"height": 1920,
"width": 1080
},
"src": "images/testgame-tall-banner.png"
},
...
],
"screenshots": [
{
"size": {
"width": 1080,
"height": 1920
},
"src": "images/testgame-screenshot1.png"
},
...
],
"gameIcons": [
{
"size": {
"height": 512,
"width": 512
},
"src": "images/testgame-icon.png"
},
...
]
}
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-04-09 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-09 UTC."],[[["\u003cp\u003eThe object contains marketing assets for a game, including horizontal and vertical banners, screenshots, game icons, and optionally, trailers.\u003c/p\u003e\n"],["\u003cp\u003eBanners and screenshots require specific aspect ratios and sizes, with minimum resolutions for optimal display.\u003c/p\u003e\n"],["\u003cp\u003eGame icons must be square and include a 512x512px version, while trailers, if included, should be in 16:9 aspect ratio.\u003c/p\u003e\n"],["\u003cp\u003eAll assets are provided as image or video objects with specified sizes and source URLs.\u003c/p\u003e\n"]]],[],null,["# Marketing type\n\nAn Object containing marketing information and assets.\n\nFields\n------\n\n`horizontalBanners`: Array of [Image](./image) --- **required** \n\nThe horizontal banner of the game.\n\n- Each image must have an aspect ratio of 16:9.\n- Must include at least an image with size 1920x1080px.\n- May also include images with sizes 480x270px and 240x135px.\n\n`verticalBanners`: Array of [Image](./image) --- **required** \n\nThe vertical banner of the game.\n\n- Each image must have an aspect ratio of 9:16.\n- Must include at least an image with size 1080x1920px.\n- May also include images with sizes 270x480px and 135x240px.\n\n`screenshots`: Array of [Image](./image) --- **required** \n\nScreenshots from the game.\n\n- Must include at least 3 different screenshots.\n- Each image must have an aspect ratio of 16:9 or 9:16.\n- All images must have a size of at least 1920x1080px or 1080x1920px.\n\n`gameIcons`: Array of [Image](./image) --- **required** \n\nThe icon that's shown when the game is installed or added to the homescreen.\n\n- Each image must be square with no transparency or shadows.\n- Must include at least an image with size 512x512px.\n- May also include images with sizes 256x256px and 128x128px.\n\n`trailers`: Array of [Video](./video) --- default: `[]` \n\nThe trailers of the game.\n\n- Each video must have an aspect ratio of 16:9.\n- At least one video must have a size of 1920x1080px.\n\nExamples\n--------\n\n {\n \"horizontalBanners\": [\n {\n \"size\": {\n \"height\": 1080,\n \"width\": 1920\n },\n \"src\": \"images/testgame-horizontal-banner.png\"\n },\n ...\n ],\n \"verticalBanners\": [\n {\n \"size\": {\n \"height\": 1920,\n \"width\": 1080\n },\n \"src\": \"images/testgame-tall-banner.png\"\n },\n ...\n ],\n \"screenshots\": [\n {\n \"size\": {\n \"width\": 1080,\n \"height\": 1920\n },\n \"src\": \"images/testgame-screenshot1.png\"\n },\n ...\n ],\n \"gameIcons\": [\n {\n \"size\": {\n \"height\": 512,\n \"width\": 512\n },\n \"src\": \"images/testgame-icon.png\"\n },\n ...\n ]\n }"]]