com.azerion.ads
Advanced tools
Comparing version 2.1.0-preview.1 to 2.1.0-preview.2
{ | ||
"name": "com.azerion.ads", | ||
"version": "2.1.0-preview.1", | ||
"version": "2.1.0-preview.2", | ||
"displayName": "AzerionAds", | ||
"description": "AzerionAds SDK has been designed to give developers options for showing Ads from ImproveDigital and AdMob.", | ||
"description": "AzerionAds SDK has been designed to give developers options for showing Ads from ImproveDigital, AdMob and AppLovin.", | ||
"unity": "2020.3", | ||
@@ -7,0 +7,0 @@ "dependencies": { |
@@ -28,8 +28,32 @@ | ||
## Configure AdMob App ID | ||
### Android | ||
- Add `Custom Main Manifest` for android via `Project Settings->Player->Publish Settings` | ||
- Open Azerion Ads configuration dialog via `AzerionAds -> Configuration` menu | ||
- Enter AdMob App Id for `Android` and `iOS` | ||
- Add AppLovin App ID in `Assets/Plugins/Android/AndroidManifest.xml` | ||
```xml | ||
<application> | ||
<activity android:name=".MainActivity"/> | ||
... | ||
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" | ||
android:value="YOUR_AdMob_APP_ID"/> | ||
... | ||
</application> | ||
``` | ||
## Config AppLovin App ID | ||
### iOS | ||
- Create a `NAME_Dependencies.xml` file with required `AzerionAdsAbmobAdapter` adapter dependency in editor folder. | ||
```xml | ||
<dependencies> | ||
<iosPods> | ||
<iosPod name="AzerionAdsAbmobAdapter" version="~> 1.0.0" bitcodeEnabled="true" addToAllTargets="false" /> | ||
</iosPods> | ||
</dependencies> | ||
``` | ||
- After exporting the xcode project add `GADApplicationIdentifier` in your info.plist file. | ||
```html | ||
<key>GADApplicationIdentifier</key> | ||
<string>YOUR-ADMOB-APPID-HERE</string> | ||
``` | ||
## Configure AppLovin App ID | ||
### Android | ||
@@ -40,3 +64,3 @@ - Add `Custom Main Manifest` for android via `Project Settings->Player->Publish Settings` | ||
<application> | ||
<activity android:name=".MainActivity" | ||
<activity android:name=".MainActivity"/> | ||
... | ||
@@ -55,2 +79,19 @@ <meta-data android:name="applovin.sdk.key" | ||
### iOS | ||
- Create a `NAME_Dependencies.xml` file with required `AzerionAdsAppLovinAdapter` adapter dependency in editor folder. | ||
```xml | ||
<dependencies> | ||
<iosPods> | ||
<iosPod name="AzerionAdsAppLovinAdapter" version="~> 1.0.0" bitcodeEnabled="true" addToAllTargets="false" /> | ||
</iosPods> | ||
</dependencies> | ||
``` | ||
- After exporting the xcode project add `AppLovinSdkKey` in your info.plist file. | ||
```html | ||
<key>AppLovinSdkKey</key> | ||
<string>YOUR-APPLOVIN-APPID-HERE</string> | ||
``` | ||
## Configure iOS Project | ||
@@ -106,5 +147,6 @@ | ||
implementation 'com.azerion:azerion-sdk-ads-core:2.1.0' | ||
implementation 'com.azerion:azerion-sdk-ads-unity-android-adapter:1.0.0' | ||
// If we want to mediate ad from AdMob | ||
implementation 'com.azerion:azerion-sdk-ads-mediation-admob:2.1.0' | ||
implementation 'com.azerion:azerion-sdk-ads-unity-android-adapter:1.0.0' | ||
// If we want to mediate ad from AppLovin | ||
//If we want to mediate ad from AppLovin | ||
implementation 'com.azerion:azerion-sdk-ads-mediation-applovin:1.0.0' | ||
@@ -125,3 +167,3 @@ ... | ||
Update the `AzerionAdsDependencies.xml` file with required third party dependencies if needed. | ||
Create a `NAME_Dependencies.xml` file with required adapter dependencies if needed. | ||
@@ -128,0 +170,0 @@ ## Create the SDK default ad config |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
446
1129099
183