npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

com.chartboost.mediation

v4.9.0

Published

The Chartboost Mediation Unity SDK. Better monetization powered by bidding

Downloads

1,554

Readme

Chartboost Mediation Unity SDK

Chartboost Mediation Unity SDK

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 Supporter Development Tools

| Software | Version | | :--- |:---------------------| | XCode | 14.1 | | Android Studio | 2020.3.1+ | | iOS | 11.0+ | | Minimum Android API Level | 5.1+ (API level 22) | | Target Android API Level | 13.0+ (API level 33) | | Minimum Unity Version | 2020.3.37f1 |

CHANGELOG

Visit the CHANGELOG to reference changes to each version of the Chartboost Mediation Unity SDK.

Integrating the Chartboost Mediation Unity SDK

Chartboost Mediation Unity SDK is distributed using both NPM and NuGet distribution.

To install this sdk using either of these distribution channels follow the steps below :

Using the public npm registry

In order to add the Chartboost Mediation 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.

  "dependencies": {
    "com.chartboost.mediation": "4.8.0",
    ...
  },
  "scopedRegistries": [
    {
      "name": "NpmJS",
      "url": "https://registry.npmjs.org",
      "scopes": [
        "com.chartboost"
      ]
    }
  ]

Using the public nuget package

To add the Chartboost Mediation Unity to your project using the nuget package, you will first need to add the NugetForUnity package into your Unity Project.

This can be done by adding the following to your Unity Project's manifest.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.

In order to better understand the Chartboost Mediation Unity SDK, documentation has been split between Setup and Integration Steps:

Setup

  1. Ad Network Adapters
  2. Android Manifest
  3. Google External Dependency Manager (EDM)
  4. Multidex
  5. Chartboost Mediation Settings

Integration

  1. Initialization
  2. Configure Chartboost Mediation
  3. Loading Ads
  4. Showing Ads
  5. Delegate Usage
  6. Error Codes
  7. Unit Testing

FAQ

Migrating Helium 3.X to Chartboost Mediation 4.0.0