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

# Android

If you are looking to integrate MM Wall 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

```java
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 MM Wall 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**

```java
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 MM Wall 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}
```
