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-artemisoftnian-plugins-unityads3

v4.8.1

Published

Monetize your cordova application using the UnityAds 4 API

Downloads

65

Readme

I NEED YOUR HELP During the first weekend of september (Saturday, September 3rd 2022, just to document it), a thunderstorm burn my development PC. Every File on it its safe, but the mainboard god fried and Unusable. Please help me with a donation to get a new development PC, so I can continue updating this project and other's, as soon as posible. I will be very greatfull. Thanks in Advance

UnityAds 4 Plugin

Cordova Plugin for UnityAds ver 4.x

The Documentation here its out of date, please refere to the new work in progress page.

Contents

  1. Description

  2. Plugin Background

  3. Features

  4. Quick Start

  5. Installation

  6. Usage

  7. Methods

  8. Android ARCore Setup

  9. Credits

  10. Donations

  11. Legal

WHAT'S NEW IN THIS VERSION (4.8.0)

  • Updated to UnityAds SDK 4.8.0
  • Android -Added the onBannerShown callback method so publishers using third-party mediation to get more accurate banner impression reporting.
  • iOS -Added the bannerViewDidShow delegate method so publishers using third-party mediation to get more accurate banner impression reporting. -Added a safeguard before setting orientations to prevent crashes.

DESCRIPTION

This Cordova / PhoneGap plugin enables the integration of Unity Ads video ads into your cordova mobile games or apps in a way that both increases player engagement and puts more money in your pocket over the gamer’s lifetime. Unity Ads offers the highest Average Revenue Per User (ARPU) of any global rewarded video ad network.

PLUGIN BACKGROUND

A couple of years ago, and after a great mistake, I got banned from Google AdsMob network. After appels to the mercy of Google, explaining what happens... I remain banned for life. This put me on a very bad situation those days, with a very short list of good monetizing alternatives. This ends the day I learn about UnityAds

After the end of the UnityAds 1.x and 2.x Api era, I have to move forward and Implement UnityAds 3.x on my projects. Implement it on the Unity Game Engine was a breeze, But then I didn't found any solutions to implement version 3.x on my html5, cordova, construct 2 or 3 projects. That my friends, makes this cordova plugin a reality. Oh well, it was basically, necessity!

FEUTURES

Platforms supported:

Ad Types:

  • [x] Non Rewarded Video
  • [x] Rewarded Video
  • [x] Banner Ads
  • [x] AR Ads (If you have try this, let me know if works, because my MetaQuest hasn't arrived yet!)

QUICK START


# create a demo project 

cordova create test1 com.yournamehere.test1 Test1  

cd test1  

cordova platform add android  

cordova platform add ios

# now add the plugin, cordova CLI will handle dependency automatically

cordova plugin add com-artemisoftnian-plugins-unityads3

# now remove the default www content, copy the demo html file to www
rm -r www/*;

cp plugins/com-artemisoftnian-plugins-unityads3/example/basic/* www/;

  
# now build and run the demo in your device or emulator  

cordova prepare; 
cordova run android;
cordova run ios;  

# or import into Xcode / eclipse

INSTALLATION

  • If use with Cordova CLI:

cordova plugin add com-artemisoftnian-plugins-unityads3
  • Using NPM

npm install com-artemisoftnian-plugins-unityads3

USAGE

Step 1: Go and create a new project for the desire platform in UnityAds portal,

Step 2: Write the specified id's in your javascript code.


  

// select the right Ad Id according to platform

  

var  gameId = "Android or iOS Game ID";

var  videoAdPlacementId = "Video Placement ID";  

var  rewardedVideoAdPlacementId = "Rewarded Placement ID";  

var  arAdPlacementId = "AR AD Placement ID";  
  • Important (9-15-2021) - app-ads.txt
  • If you are using Banner Ads, be sure to implement app-ads.txt as described in the app-ads.txt support page.

Otherwise, banner demand may be significantly decreased.

  • Important: Enabling AR content through Unity:

Contact Unity Ads to enable AR content, providing the following information:

  • Your Project ID

  • The ID for the dedicated Placement to display AR content

After playing around and complete your tests, remember to put isTest = false when building for production.

METHODS

// Initialize UnityAds
UnityAdsInit(gameId, isTest, isDebug, fn);

// Video Ads Related (Regular Placement ID|Rewarded Placement ID)

ShowVideoAd(videoPlacementId, fn);

//Long Live GetPlacementStatus, Deprecated Method ... RIP... FINITO... REMOVED FROM UNITYADS SDK 4.0 and later
GetPlacementState(videoAdPlacementId, fn); 
//Banner Related

ShowBannerAd(bannerAdPlacementId, bannerPosition, fn);
  
//Manually Set UnityAds Privacy and GDPR consent (true|false)
ManualGdprOpts( consent, fn);
anualCcpaOpts( consent, fn);
ManualCustomAgeGates( useroveragelimit, fn);

//Gets The UnitySDK Version Using at the moment.
GetUnityAdsSdkVersion(fn);

Android ARCore Setup

UnityAds SDK Allows AR Ads on Android, but for this to work You will need to manually add the following entries on the AndroidManifest.xml on your project.

Permissions:


<uses-permission  android:name="android.permission.CAMERA"  />

ARCore Entries inside the section


  

<application>
  

<meta-data  android:name="com.google.ar.core.min_apk_version"  android:value="24"  />
<meta-data  android:name="com.google.ar.core"  android:value="optional"  />

  

</application>

  

Note: Before You can use any Related AR Ads you need to ask to permissions to the Unity Teams. Use the following guide as reference:

UnityAds AR Ads Documentation

Credits

This project is created and maintained by Waldemar Medina.

Available for project outsourcing and or consulting services. Let me hear about it. I can help in your project.

Check Out my UnityAdsX addon for Construct 3

Legal

Unity, GDPR and Data Privacy – FAQ

Donations

Now that You end your reading, (I know You where curious) please consider supporting Artemisoftnian with a donation, a cup of coffee or maybe a slice of pizza :)

paypal

or You can become a Patreon and support even more deeply, mysterious and secret stuff:

patreon

  • Get acess to the Cordova Plugin Source Code

  • Get acess to the Construct 3 UnityAds3 Plugin Source Code

Social

If you have isssues, want to check what's new, have constructive comments, please visit my Discord Server below:

I'm not always there, but I will see your message eventually.

  • Discord Server