0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

HMSのネイティブ広告の種類

HMSのネイティブ広告に以下の種類があります。

  • 1080 x 607 pxの静止画広告
  • 225 x 150 pxの静止画広告
  • 640 x 360 pxの動画広告

設定方法

二つの作業が必要です。

  1. ソースコードで要求する広告種類を指定する
  2. HUAWEI Ads Publisher Consoleで広告IDのMedia typeを指定する

1. ソースコード

ネイティブ広告を要求するときに、以下のパラメータを渡し、広告種類を指定します。

広告種類 パラメータ
1080 x 607 pxの静止画広告 DetailedCreativeType.BIG_IMG
225 x 150 pxの静止画広告 DetailedCreativeType.SMALL_IMG
225 x 150 pxの静止画広告(三枚) DetailedCreativeType.THREE_IMG
640 x 360 pxの動画広告 DetailedCreativeType.VIDEO
val nativeAdLoader = builder.setNativeAdOptions(adConfiguration).build()
val detailedCreativeTypeList: List<Int> = listOf({指定する広告の種類。たとえば、DetailedCreativeType.BIG_IMG})
val adRequestBuilder = AdParam.Builder().setDetailedCreativeTypeList(detailedCreativeTypeList)
nativeAdLoader.loadAd(adRequestBuilder.build())

2. HUAWEI Ads Publisher Console

HUAWEI Ads Publisher Consoleで広告IDのMedia typeを次のように指定します。

広告種類 Media type
1080 x 607 pxの静止画広告 Single image
225 x 150 pxの静止画広告 Single image
225 x 150 pxの静止画広告(三枚) Three images
640 x 360 pxの動画広告 Video

image.png

参考

HMS Ads Kit : https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/publisher-service-native-0000001050064968
HMS Ads Kit API : https://developer.huawei.com/consumer/en/doc/development/HMSCore-References-V5/detailedcreativetype-0000001124696411-V5
HUAWEI Ads Publisher Service : https://developer.huawei.com/consumer/en/doc/distribution/monetize/addunit-0000001051321846

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?