https://github.com/chartboost/chartboost-mediation-unity-sdk
Chartboost Mediation Unity SDK provides support for Unity based games to easily integrate Chartboost Mediation for Android & iOS platforms
https://github.com/chartboost/chartboost-mediation-unity-sdk
ads chartboost mediation unity
Last synced: 3 months ago
JSON representation
Chartboost Mediation Unity SDK provides support for Unity based games to easily integrate Chartboost Mediation for Android & iOS platforms
- Host: GitHub
- URL: https://github.com/chartboost/chartboost-mediation-unity-sdk
- Owner: ChartBoost
- License: mit
- Created: 2022-05-13T18:55:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-07T19:48:41.000Z (3 months ago)
- Last Synced: 2025-02-28T08:42:23.166Z (3 months ago)
- Topics: ads, chartboost, mediation, unity
- Language: C#
- Homepage: https://www.chartboost.com/mediate
- Size: 21.5 MB
- Stars: 9
- Watchers: 10
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Chartboost Mediation Unity SDK
[](https://github.com/ChartBoost/helium-unity-sdk/actions/workflows/status.yml)
## Summary
Chartboost Mediation Unity SDK provides support for Unity based games to easily integrate the Chartboost Mediation for Android & iOS platforms. This guide will contain step by step instructions on how to integrate the SDK, as well as recommended practices to make best use of all the features offered by the Chartboost Mediation SDK.
## Minimum Requirements
| Plugin | Version |
| ------ | ------ |
| Cocoapods | 1.11.3+ |
| iOS | 11.0+ |
| Xcode | 14.1+ |
| Android API | 21+ |
| Unity | 2022.3.+ |# Integration
## Using the public [npm registry](https://www.npmjs.com/search?q=com.chartboost.mediation)
In order to add the Chartboost Core Unity SDK to your project using the npm package, add the following to your Unity Project's ***manifest.json*** file. The scoped registry section is required in order to fetch packages from the NpmJS registry.
```json
"dependencies": {
"com.chartboost.mediation": "5.2.0",
...
},
"scopedRegistries": [
{
"name": "NpmJS",
"url": "https://registry.npmjs.org",
"scopes": [
"com.chartboost"
]
}
]
```
## Using the public [NuGet package](https://www.nuget.org/packages/Chartboost.CSharp.Mediation.Unity)To add the Chartboost Mediation Unity SDK to your project using the NuGet package, you will first need to add the [NugetForUnity](https://github.com/GlitchEnzo/NuGetForUnity) package into your Unity Project.
This can be done by adding the following to your Unity Project's ***manifest.json***
```json
"dependencies": {
"com.github-glitchenzo.nugetforunity": "https://github.com/GlitchEnzo/NuGetForUnity.git?path=/src/NuGetForUnity",
...
},
```Once
NugetForUnity
is installed, search for `Chartboost.CSharp.Mediation.Unity` in the search bar of Nuget Explorer window(Nuget -> Manage Nuget Packages).
You should be able to see the `Chartboost.CSharp.Mediation.Unity` package. Choose the appropriate version and install.# Setup
1. [Ad Network Adapters](Documentation/setup/ad-adapters.md)
2. [Android Manifest](Documentation/setup/androidmanifest.md)
3. [Google External Dependency Manager (EDM)](com.chartboost.mediation/Documentation/setup/edm.md)
4. [Multidex](Documentation/setup/multidex.md)# Integration
1. [Initialization](Documentation/integration/initialization.md)
2. [Configure](Documentation/integration/configure.md)
3. [Fullscreen Ad](Documentation/integration/fullscreen.md)
4. [Fullscreen Ad Queue](Documentation/integration/fullscreenadqueue.md)
5. [Banner Ad](Documentation/integration/bannerad.md)
6. [Unity Banner Ad](Documentation/integration/unitybannerad.md)
7. [Banner Visual Element](Documentation/integration/bannervisualelement.md)
8. [Error Codes](Documentation/integration/error-codes.md)
9. [Unit Testing](Documentation/integration/unit-testing.md)
10. [FAQ](Documentation/faq.md)# Migration Guides
1. [Migration from v4 to v5](Documentation/migration/v4tov5.md)
2. [Migration from v3 to v4](Documentation/migration/v3tov4.md)