パブリッシャーの種類
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ゲーム パブリッシャーに関するメタデータを含むオブジェクト。
フィールド
name
: 文字列 - 必須
パブリッシャーの名前。
- 半角 2~25 文字(全角 1~12 文字)で指定します。
logo
: 画像の配列 - 必須
パブリッシャーのアイコン。
- 画像はスクエアで、透明度やシャドウが適用されていないものを指定します。
- 少なくとも 512×512 ピクセル、256×256 ピクセル、128×128 ピクセルのサイズを含める必要があります。これらに加えて、他のサイズもオプションで含めることができます。
例
{
"name": "GameSnacks publisher name",
"logo": [
{
"size": {
"height": 512,
"width": 512
},
"src": "images/publisher-logo-512.png"
},
{
"size": {
"height": 256,
"width": 256
},
"src": "images/publisher-logo-256.png"
},
{
"size": {
"height": 128,
"width": 128
},
"src": "images/publisher-logo-128.png"
}
]
}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-01-25 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-01-25 UTC。"],[[["The object describes a game publisher and requires a name and logo."],["The publisher name must be a string between 2 and 25 characters long."],["The publisher logo consists of an array of square images (at least 512x512px, 256x256px, and 128x128px) without transparency or shadows."]]],[]]