YungPoints
  • Why YungPoints?
  • Overview
    • 💡Getting Started
    • ✨Postbacks
  • Platform
    • 🤖Android
    • 📱iOS
    • ⚛️React Native
    • 🖥️Website
Powered by GitBook
On this page
  1. Platform

Android

The YungPoints Offerwall is hosted on the web giving your application a native look-and-feel.

To integrate into your Android app, either open the offerwall in Google Chrome or use a web view to show the offerwall inside your app.

URL

https://jdcurrent.com/offers/31/YourTrackingID

Example

WebView myWebView = new WebView(activityContext);
setContentView(myWebView);

WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);

myWebView.loadUrl("https://jdcurrent.com/offers/31/YourTrackingID");

Please replace YourTrackingID with a Unique User ID

PreviousPostbacksNextiOS

Last updated 1 year ago

🤖