Codeless out of the box Appodeal integration into Unity project. Contains global config file which provide you ability to setup Appodeal without any line of code.
- ✅ iOS
- ✅ Android
Supported Appodeal Unity plugin version: 2.14.5
Any feature in the list is code free. It can be used without code. But if you need access from a C# code you have the option for that of course. Anyway all the package designed to be with or without code.
- enable / disable - auto cache
- activate / deactivate - any ads type
- show any ads type without any line of code
- receive callbacks for each dedicated ads per each show request
- GDPR and CCPA supported out of the box
- Install Appodeal Unity plugin
- Install ODIN Inspector
- Install Unity Appodeal Simplifier
- Follow Option 1 or Option 2
- Install OpenUPM-CLI
- Open command line in Unity project folder
openupm --registry https://registry.npmjs.org add extensions.unity.base
- Add this code to
/Packages/manifest.json
{
"dependencies": {
"extensions.unity.base": "1.9.2",
},
"scopedRegistries": [
{
"name": "Unity Extensions",
"url": "https://registry.npmjs.org",
"scopes": [
"extensions.unity"
]
},
{
"name": "NPM",
"url": "https://registry.npmjs.org",
"scopes": [
"com.cysharp",
"com.neuecc"
]
}
]
}
There are three options how to initialize Unity Appodeal Simplifier and Appodeal Unity plugin. If you choose to support GDPR and/or CCPA user will be automaticly asked for that at initialization moment.
For this you just need to activate checkbox Initialize On Awake
at needed Shower.
Add component AppodealSimplifierStarter
to any GameObject in your scene which loads first
Call the function AppodealSimplifier.Initialize();
For showing any ads type and receiving callback there are collection of shower components. Just add the component on any GameObject in your scene. And call the function Show()
through code or via UGUI Button
- AppodealShowerBanner
- AppodealShowerInterstitial
- AppodealShowerMREC
- AppodealShowerNonSkippableVideo
- AppodealShowerRewardedVideo
Any Shower has a bunch of important callback. You may subscribe on the events in code if you need. Or use Unity Actions system in the Inspector window.