AdTiming configuration
1. Add an APP in AdTiming
1.1. Go to the AdTiming homepage.
1.2. Click on AdTiming and log in to your AdTiming account.
1.3. Click Get Started to create the first application.
If your app has been published in Google Play or App Store, you need to add the APP ID/APP URL of the app; if your app is not published in Google Play or App Store, please use a temporary name. After publishing in Play or App Store, add the APP ID/APP URL of the application.
Please follow the steps below to add your app:
1.4. Published application creation
Published application: If your application has been published on Google Play or App Store, you need to select Yes, enter the App ID/APP URL of the application, click Search to import application information, check COPPA Compliance, click Add to complete the addition .
COPPA Compliance:COPPA (Children's Online Privacy Protection Act) requires commercial websites to obtain the consent of their guardians before collecting personal information from children under 13 years of age. Only under the premise of agreeing to COPPA can APP be created.
1.5. Unpublished application creation
If your application is not published on Google Play or AppStore, you need to select No, then select the operating system iOS or Android of the application, enter the App Name of the application, check COPPA Compliance, and click Add to complete the addition. After the app is released to the store, you can manually associate it to the app store.
Tips: Usually Ad Network will be filled or more filled after the application is released.
When an unpublished app is online, you need to associate this app to the app store. Click Apps, select the relevant application in the APP navigation column, and click App Settings. In the App Info module, click LINK YOUR APP WITH APP STORE, enter the App ID/APP URL, click Search to import application information, and click Save to complete the association.
1.6. Get App Key
1. Navigate to Apps, you will see Add App below the application list, click View All App.
2. On the corresponding APP page, click Copy to obtain the App Key.
If duplicate apps are configured by mistake during the APP configuration process, please be sure to confirm the APP Key corresponding to the current APP, because the APP Key is the unique identification code of the later integrated SDK. If it cannot be matched, it will affect the advertising and monetization income.
2. Create Placement in AdTiming
2.1. Select the corresponding APP
The Placement needs to match the added application, and you need to select the corresponding APP in the navigation bar. Please click Apps in the AdTiming navigation bar, select the corresponding application, click Placement in the APP navigation bar, and click Add Placement to add a Placement.
2.2. Select Ad Type
AdTiming supports four types of advertising:Banner、Native、Interstitial and Rewarded Video.
2.3. Control Placement status
In the Operations column, you can control the status of each Placement, Enable or Disable.
3. Get Reporting API Key
3.1. Navigate to Reporting API Key
Navigate to the Return interface and click Get Reporting API Key at the top right.
3.2. Get API Key
Click on Copy,get Reporting API Key.
OpenMediation configuration
1. Ad Network configuration
1.1. Enter the OpenMediation
Click on the left navigation bar Ad Network→AdTiming and then click Edit.
1.2. Filling in the information
After filling in the relevant information, click Save.
- App Key: Fill in the App Key obtained from AdTiming before.
- Currency: Choose to fill in the USD currency format.
- Reporting API Key: Fill in the Reporting API Key previously in AdTiming.
2. Instance configuration
The Instance needs to match the added application and placement, and you need to select the corresponding APP in the navigation bar.
2.1. Select Mediation
Please click to select the corresponding application in the application list of OpenMediation, click Setup in the left navigation bar, and select Mediation.
2.2. Placement configuration
Select the Placement to be configured, and click Add Instance on the Instance interface to configure the Instance.
2.3. Save information
Save the settings after filling in the corresponding information.
- Ad Network:Select AdTiming。
- Instance Name:You can define your Instance name yourself.
- Unti ID:You can go to the Placements page of the AdTiming platform to get the Placement id.(As Below)
AdTiming Test mode
It's important to turn on test mode for testing, and we strongly recommend that you test your app in the following ways before it's released to make sure your app calls are working after it's released.
1. Add a test device
1.1. Add Device
In the left navigation bar of the AdTiming platform, select the corresponding application, click SDK Testing to enter the test interface, select Device, and click Add Device to add a test device.
1.2. Gets the device ID of the test
It is recommended that you search the Store for downloads to the Deviceid app for queries.
- App Store link:[https://apps.apple.com/cn/app/my-device-id-by-appsflyer/id1192323960]
- Google Play link:[https://play.google.com/store/apps/details?id=com.appsflyer.android.deviceid]
1.3. Configure the device ID
Customize the device name in the Device Name module, add the acquired device ID in the ID (IDFA/GAID) module, and click Add to complete the addition.
Add the SDK&Adapter to Your Build
Android
1. Add the AdTiming SDK
- Add to your project-level build.gradle file.
allprojects {
repositories {
google()
jcenter()
maven {
url "https://dl.adtiming.com/android-sdk"
}
}
}
- Add to your application-level build.gradle file.
dependencies {
implementation 'com.adtiming:adnetwork:+'
}
2. Add AdTiming Adapter
OpenMediation supports both Gradle dependencies and Manual download mechanisms.
Gradle dependencies
- Add the following in your application-level build.gradle file.
implementation 'com.openmediation.adapters:adtiming:+'
Manual download
- Download the AdTiming Adapter from here.
- Add the AdTiming Adapter to Your Project.
3. For Proguard Users Only
If you are using ProGuard with the AdTiming adapter, you must add the following code to your ProGuard configuration (Android Studio: proguard-rules.pro or Eclipse: proguard-project.txt):
-keep class com.adtbid.sdk.** { *;}
-dontwarn com.adtbid.sdk.**
Comments
Article is closed for comments.