> For the complete documentation index, see [llms.txt](https://docs.revtoo.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.revtoo.com/integrate-offerwall/android-integration.md).

# Android Integration

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

### **URL**

```url
https://revtoo.com/offerwall/[API_KEY]/[USER_ID]
```

### **WebView Example**

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

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

myWebView.loadUrl("https://revtoo.com/offerwall/[API_KEY]/[USER_ID]");
```

{% hint style="info" %}
Replace **\[API\_KEY]** with your website API key and **\[USER\_ID]** by the unique identifier code of the user of your site who is viewing the wall.
{% endhint %}
