React Native
3
4
Backfill 광고
Android
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven { url 'https://artifact.bytedance.com/repository/pangle' } // 추가
}
}dependencies {
implementation("io.adrop:adrop-ads-backfill:1.7.2")
}<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 필수 권한 -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application>
<!-- AdMob App ID (Backfill 사용 시 필수) -->
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-xxxxxxxxxxxxxxxx~xxxxxxxxxx"/>
</application>
</manifest>iOS
target 'YourApp' do
use_frameworks!
# Backfill 광고 사용 시 추가
pod 'adrop-ads-backfill', '>= 1.7.2', '< 1.8.0'
end<dict>
<!-- AdMob App ID (Backfill 사용 시 필수) -->
<key>GADApplicationIdentifier</key>
<string>ca-app-pub-xxxxxxxxxxxxxxxx~xxxxxxxxxx</string>
</dict>cd ios && pod install --repo-update && cd ..5
Troubleshooting
iOS Build Error
Last updated