Code Monkey home page Code Monkey logo

react-native-csj-sdk's Introduction

react-native-csj-sdk

npm version

穿山甲广告SDK,目前只有开屏广告功能

Android SDK Version: 5.5.1.5

iOS SDK Version: 5.3.6.1

开始

$ npm install react-native-csj-sdk -E

在使用前,你需要先注册穿山甲账号并且创建一个应用。

插件安装与初始化

iOS

  1. 可能需要配置广告跟踪
<key>NSUserTrackingUsageDescription</key>
<string>请放心,开启权限不会获取您在其他站点的隐私信息,该权限仅用于标识设备、第三方广告、并保障服务安全与提示浏览体验</string>

Android

  1. 在 android 根目录 的 build.gradle 中添加:
buildscript {
  repositories {
    ...
    maven {url "https://artifact.bytedance.com/repository/pangle"}
  }
}

allprojects {
  repositories {
    ...
    maven {url "https://artifact.bytedance.com/repository/pangle"}
  }
}

插件接口文档

import CsjSdk from 'react-native-csj-sdk';

// 初始化
let init = await CsjSdk.init({
    appId: 'XXXXX', //穿山甲应用ID
});

// 加载闪屏广告
let ret = await CsjSdk.loadSplashAd({
    codeId: 'XXXX', //广告ID,GroMore
    width: width, //广告宽度,仅Android有效
    height: height, //广告高度,仅Android有效
    timeout: 1500, //获取广告超时
});

// 添加监听
// SplashAd-onAdClick 广告点击
// SplashAd-onAdClose 广告关闭
// SplashAd-onAdShow 广告显示
// SplashAd-onAdLoadFail 加载广告配置失败
// SplashAd-onAdLoadSuccess 加载广告配置成功
// SplashAd-onRenderFail 广告渲染失败
const listener = CsjSdk.addListener('SplashAd-onAdClose', e => {
    console.log('SplashAd-onAdClose');
});

// 移除监听
listener?.remove?.();

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.