🤖Android

The Make Money Offerwall is hosted on the web, but gives your application a native look-and-feel.

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

If GAID is Available

URL

https://wall.make-money.top/?p={publisher_id}&u={user_id}&a={gaid}

Example

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

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

myWebView.loadUrl("https://wall.make-money.top/?p={publisher_id}&u={user_id}&a={gaid}");

Please replace {publisher_id} with the Publisher ID that was provided to you by the Make Money Team. Please replace {user_id} with a unique id for your current app user. To boost your revenue through better conversion tracking quality, please replace {gaid} with the Google Advertising ID (GAID) of your user.

If you are unable to proceed to the Google Play Store when clicking on an app offer, please configure your web view to override the URL loading for intent URLs: https://stackoverflow.com/a/61402339

If GAID is Unavailable

URL

https://wall.make-money.top/?p={publisher_id}&u={user_id}

Example

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

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

myWebView.loadUrl("https://wall.make-money.top/?p={publisher_id}&u={user_id}");

Please replace {publisher_id} with the Publisher ID that was provided to you by the Make Money Team. Please replace {user_id} with a unique id for your current app user.

If you are unable to proceed to the Google Play Store when clicking on an app offer, please configure your web view to override the URL loading for intent URLs: https://stackoverflow.com/a/61402339

Optional: SubID

In case, you need to track a SubID, you can append it as follows:

&s={subid}

Last updated