Facebook AudienceNetwork loaded failure: No fill, Error Message “No fill”, what is the reason about FaceBook android Advertise?

后端 未结 8 782
自闭症患者
自闭症患者 2021-01-01 23:53

Facebook AudienceNetwork loaded failure: No fill, Error Message \"No fill\", what is the reason about FaceBook android Advertise? And facebook ad offten shows me load freque

8条回答
  •  情深已故
    2021-01-02 00:52

    You need to add a test device. Go to logcat and type Facebook and you will see a message like this, which is also the solution:

    When testing your app with Facebook's ad units you must specify the device hashed ID to ensure the delivery of test ads, add the following code before loading an ad: AdSettings.addTestDevice("328404cebf50ec1fdb05795c0007a8a7");

    So add this to your onCreate method:

    AdSettings.addTestDevice("328404cebf50ec1fdb05795c0007a8a7");
    

    (Don't forget to use your own hash id.)

提交回复
热议问题