1.導(dǎo)入arr
2.將以下內(nèi)容添加到應(yīng)用程序的“存儲庫”部分中的build.gradle文件中:???
repositories{maven{url"https://dl.bintray.com/ironsource-mobile/android-sdk"}}
3.然后將以下內(nèi)容添加到“依賴項”部分:
請注意,從ironSource SDK版本6.16.0開始,ironSource SDK將作為AAR發(fā)布。
dependencies{implementation'com.ironsource.sdk:mediationsdk:7.0.3.1'}
4.?清單活動
在?AndroidManifest的?<application>?標(biāo)記內(nèi)添加以下活動:
<activity
? ? ? ? ? ? android:name="com.ironsource.sdk.controller.ControllerActivity"
? ? ? ? ? ? android:configChanges="orientation|screenSize"
? ? ? ? ? ? android:hardwareAccelerated="true" />
<activity
? ? ? ? ? ? android:name="com.ironsource.sdk.controller.InterstitialActivity"
? ? ? ? ? ? android:configChanges="orientation|screenSize"
? ? ? ? ? ? android:hardwareAccelerated="true"
? ? ? ? ? ? android:theme="@android:style/Theme.Translucent" />
<activity
? ? ? ? ? ? android:name="com.ironsource.sdk.controller.OpenUrlActivity"
? ? ? ? ? ? android:configChanges="orientation|screenSize"
? ? ? ? ? ? android:hardwareAccelerated="true"
? ? ? ? ? ? android:theme="@android:style/Theme.Translucent" />
5.Google Advertising ID
將Play Services依賴項添加到依賴項塊中:
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0' implementation 'com.google.android.gms:play-services-basement:17.1.1'
6.在加載廣告的activity初始化
IronSource.init(this,appkey)