2.1.3 • Published 3 years ago

com.triflesgames.elephantads v2.1.3

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Elephant Ads

UPM Package for Elephant/Rollic Ads. This package contains both MoPub and Rollic SDKs.

Installation

Use the package manager UPM to install Elephant Ads.

com.triflesgames.elephantads

Setup

You can easily set up elephant ads by clicking "Configure Ads" from the "Elephant" menu on the top bar.

Usage

Add RollicAdsManager as a component to a persistant GameObject in the scene.

//You can call ad events from any one of the GameManager actors or from GameManager itself.
Push(RollicAdsEvents.ShowAd,RollicAdTypes.Rewarded);

/*
There are three types of ad you can call
RollicAdTypes.Banner,
RollicAdTypes.Interstitial,
RollicAdTypes.Rewarded
*/

/*
You can also listen ad status events from RollicAdsManager
There are three different of ad status events
RollicAdsEvents.OnRewardedVideoFinished
RollicAdsEvents.OnRewardedVideoSkipped
RollicAdsEvents.OnRewardedVideoFailed
*/

RollicAdsManager.Instance.Subscribe(RollicAdsEvents.OnRewardedVideoFinished,GiveReward);

Update The Package

Before updating the package you have to make some changes in the files.Please read down below for the necessary changes.

RollicGames/Editor/CodeControlUtils.cs

//change from
private const string AssetsPathPrefix ="Assets/"
//to
private const string AssetsPathPrefix = EnvVariables.PackagePath;

RollicGames/Editor/PostProcess.cs

//change from
 XElement[] elements = XDocument.Load(@"Assets/RollicGames/Resources/SkanIds.xml").Descendants("dict").ToArray();
//to
 XElement[] elements = XDocument.Load(EnvVariables.PackagePath+ @"/RollicGames/Resources/SkanIds.xml").Descendants("dict").ToArray();

TriflesGames/Rollic/EnvVariables.cs

//change from
public const string PackageVersion = "1.0.0"; (Old Version Number)
//to
public const string PackageVersion = "1.0.1"; (New Version Number - Please remember this version number 
must equal to the version number in the package.json file.)

In case of deletion of .asmdef files

For MoPub

Create one .asmdef file in the MoPub/Scripts folder with the name of MoPubSdk and leave it with default options.
Create one .asmdef file in the MoPub/Scripts/ThirdParty folder with the name of MoPubSdk.ThirdParty.Editor. Change its platform to Editor only.
Create one .asmdef file in the MoPub/Scripts/Editor folder with the name of MoPubSdk.Editor. Change its platform to Editor only. Also add references for the 1. MoPubSdk, 2. MoPubSdk.ThirdParty.Editor.

For TriflesGames

Create one .asmdef file in the TriflesGames/Rollic folder with the name of RollicAdsHelper and leave it with default options.
Create one .asmdef file in the TriflesGames/Scripts folder with the name of TGRollicAds and leave it with default options. Add references for 1. TriflesGames.ManagerFramework.Runtime, 2. RollicSdk, 3. MoPubSdk, 4. TriflesGames.Base.Runtime.

For RollicGames

Create one .asmdef file in the RollicGames folder with the name of RollicSdk and leave it with default options. Add references for 1. ElephantSDK, 2. MoPubSdk, 3. AdjustSDK, 4. RollicAdsHelper.

Create one .asmdef file in the RollicGames/Editor folder with the name of RollicSdk.Editor. Change its platform to Editor only. Add references for 1. RollicSdk, 2. ElephantSdk, 3. MoPubSdk, 4. RollicAdsHelper.

2.1.3

3 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.1.5

4 years ago

1.0.6

4 years ago

1.1.4

4 years ago

1.0.5

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

2.1.2

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

1.0.2

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago