For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

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

WebView Example

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

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

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

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.

Last updated