> For the complete documentation index, see [llms.txt](https://jk-bazar-mart.gitbook.io/funto-spin-doc-v1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jk-bazar-mart.gitbook.io/funto-spin-doc-v1/mediation.md).

# Mediation

### **Facebook**

Integrate Meta Audience Network with bidding [click here](https://developers.google.com/admob/android/mediation/meta)

if you no need facebook mediation please remove the dependency from build.gradle file

<mark style="color:blue;">implementation 'com.google.ads.mediation:facebook:6.11.0.1'</mark>

### **Applovin**

Integrate Meta Audience Network with bidding [click here](https://developers.google.com/admob/android/mediation/applovin)

if you no need applovin mediation please remove the dependency from build.gradle file

<mark style="color:blue;">implementation 'com.google.ads.mediation:applovin:11.4.2.0'</mark>

And

Goto AppController.java remove the below code

```
 Bundle extras = new AppLovinExtras.Builder()
                .setMuteAudio(true)
                .build();
        AdRequest request = new AdRequest.Builder()
                .addNetworkExtrasBundle(ApplovinAdapter.class, extras)
                .build();
        AppLovinSdkSettings appLovinSdkSettings = new AppLovinSdkSettings(this);
        AppLovinSdk.getInstance(applovinSDK, appLovinSdkSettings, this).initializeSdk();
```

### Unity ADS

Integrating Unity Ads with Mediation [Click Here](https://developers.google.com/admob/android/mediation/unity)

if you no need Unity Ads mediation please remove the dependency from build.gradle file

<mark style="color:blue;">implementation 'com.unity3d.ads:unity-ads:4.2.1' implementation 'com.google.ads.mediation:unity:4.2.1.1'</mark>

### ChartBoost Ads

Integrating Chartboost with Mediation [Click Here](https://developers.google.com/admob/android/mediation/chartboost)

if you no need Chartboot Ads mediation please remove the dependency from build.gradle file

<mark style="color:blue;">implementation 'com.google.ads.mediation:chartboost:8.4.3.1'</mark>

Note : If you planning to release Apk Please Remove the Testing SDK Suite from Build Gradle&#x20;

<mark style="color:blue;">implementation 'com.google.android.ads:mediation-test-suite:2.0.0'</mark>

And Open HomeActivity.java find the Code&#x20;

```
binding.test.setOnClickListener(view1 -> {
            MediationTestSuite.launch(HomeActivity.this);
        });
        
```

Replace with&#x20;

```
binding.test.setVisibility(View.GONE);
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://jk-bazar-mart.gitbook.io/funto-spin-doc-v1/mediation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
