> For the complete documentation index, see [llms.txt](https://yungpoints.gitbook.io/yungpoints/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yungpoints.gitbook.io/yungpoints/platform/android.md).

# Android

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
