「Facebook/ビジネスマネージャ/アプリ広告/AndroidNative」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→サンプル) |
(→サンプル) |
||
行23: | 行23: | ||
} | } | ||
</pre> | </pre> | ||
+ | |||
+ | ==テストデバイス== | ||
+ | AudienceNetworkAds.initialize(this); | ||
+ | AdSettings.addTestDevice("0bd2axxxxxxxxxxxxxxxxxxxxxxxxx"); | ||
+ | initializeの下にaddTestDeviceを追加 | ||
+ | |||
+ | addTestDeviceは実機をつないで接続するとその端末のTestDeviceがlogcatに表示されるので、それを入力する。 |
2019年6月11日 (火) 17:41時点における版
native広告のandroid組込
https://developers.facebook.com/docs/audience-network/android-native
準備
app/build.gradle追加
dependencies { compile 'com.android.support:recyclerview-v7:25.3.1' // Required Dependency by Audience Network SDK compile 'com.facebook.android:audience-network-sdk:5.+' }
https://developers.facebook.com/docs/audience-network/android
サンプル
MyApplication.java
public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); // Initialize the Audience Network SDK AudienceNetworkAds.initialize(this); } }
テストデバイス
AudienceNetworkAds.initialize(this); AdSettings.addTestDevice("0bd2axxxxxxxxxxxxxxxxxxxxxxxxx");
initializeの下にaddTestDeviceを追加
addTestDeviceは実機をつないで接続するとその端末のTestDeviceがlogcatに表示されるので、それを入力する。