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

react-native-tencent-ad

v0.1.8

Published

A react-native component for Tencent Social ads

Downloads

15

Readme

react-native-tencent-ad

A react-native component for Tencent Social ads

#TODO: Banner Ad Interstitial Ad

#Installation npm install react-native-tencent-ad -s rnpm link react-native-tencent-ad

###iOS: According tot the doc:

  1. add the sdk under $(react-project)/iOS/ then import it to your project
  2. add framework dependencies
  3. set other link flags -ObjC, -lstdc++
  4. add NSAllowsArbitraryLoads to YES (iOS >= 9)

###android: According tot the doc:

  1. add the sdk under $(react-project)/android/libs/ then import it to your project
  2. modify permission in AndroidManifest.xml
  3. in MainApplication.java
//...
import com.mogoal.TencentAd.RNTencentAdPackage; // <--- This!
//...
@Override
protected List<ReactPackage> getPackages() {
 return Arrays.<ReactPackage>asList(
   new MainReactPackage(),
   new RNTencentAdPackage() // <---- and This!
 );
}

#usage ###splash ad

TencentAdSplash.addEventListener('splashAdSuccessPresentScreen', ()=>{
  console.log("---splashAdSuccessPresentScreen");
});

TencentAdSplash.addEventListener('splashAdClosed', ()=>{
  console.log("---splashAdClosed");
});

TencentAdSplash.addEventListener('splashAdClicked', ()=>{
  console.log("---splashAdClicked");
});

TencentAdSplash.addEventListener('splashAdFailToPresent', (error)=>{
  console.log("---splashAdFailToPresent");
  console.log(error);
});

TencentAdSplash.setTimeOut(3);
TencentAdSplash.setBackgroundColor("#FFFF0000"); //rrggbb or AArrggbb
TencentAdSplash.showSplash(adInfo.appKey, adInfo.placementID, null);

TencentAdSplash.removeAllListeners();

//below events are iOS only
TencentAdSplash.addEventListener('splashAdApplicationWillEnterBackground', ()=>{
  console.log("---splashAdApplicationWillEnterBackground");
});

TencentAdSplash.addEventListener('splashAdWillPresentFullScreenModal', ()=>{
  console.log("---splashAdWillPresentFullScreenModal");
});
   
TencentAdSplash.addEventListener('splashAdDidDismissFullScreenModal', ()=>{
  console.log("---splashAdDidDismissFullScreenModal");
});

====== #中文介绍:

react-native-tencent-ad

广点通广告React-native封装

#未完成: Banner 广告 Interstitial 广告

#安装方法 npm install react-native-tencent-ad -s rnpm link react-native-tencent-ad

###iOS: 根据文档:

  1. 添加SDK到目录$(react-project)/iOS/
  2. 添加依赖Frameworks
  3. 设置 other link flags -ObjC, -lstdc++
  4. info.plist添加 NSAllowsArbitraryLoads to YES (iOS >= 9)

###android: 根据文档:

  1. 添加SDK到目录 $(react-project)/android/libs/
  2. 在文件AndroidManifest.xml修改所需权限
  3. 在 MainApplication.java
//...
import com.mogoal.TencentAd.RNTencentAdPackage; // <--- 这里!
//...
@Override
protected List<ReactPackage> getPackages() {
 return Arrays.<ReactPackage>asList(
   new MainReactPackage(),
   new RNTencentAdPackage() // <---- 这里!
 );
}

#使用 ###splash广告

TencentAdSplash.addEventListener('splashAdSuccessPresentScreen', ()=>{
  console.log("---splashAdSuccessPresentScreen");
});

TencentAdSplash.addEventListener('splashAdClosed', ()=>{
  console.log("---splashAdClosed");
});

TencentAdSplash.addEventListener('splashAdClicked', ()=>{
  console.log("---splashAdClicked");
});

TencentAdSplash.addEventListener('splashAdFailToPresent', (error)=>{
  console.log("---splashAdFailToPresent");
  console.log(error);
});

TencentAdSplash.setTimeOut(3);
TencentAdSplash.setBackgroundColor("#FFFF0000"); //rrggbb or AArrggbb
TencentAdSplash.showSplash(adInfo.appKey, adInfo.placementID, null);

TencentAdSplash.removeAllListeners();

//以下事件仅iOS可用
TencentAdSplash.addEventListener('splashAdApplicationWillEnterBackground', ()=>{
  console.log("---splashAdApplicationWillEnterBackground");
});

TencentAdSplash.addEventListener('splashAdWillPresentFullScreenModal', ()=>{
  console.log("---splashAdWillPresentFullScreenModal");
});
   
TencentAdSplash.addEventListener('splashAdDidDismissFullScreenModal', ()=>{
  console.log("---splashAdDidDismissFullScreenModal");
});