diff --git a/src/code-snippets/android/examples/ADJAdRevenue/addCallbackParameter.mdx b/src/code-snippets/android/examples/ADJAdRevenue/addCallbackParameter.mdx
deleted file mode 100644
index 07ba931d79..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/addCallbackParameter.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-adjustAdRevenue.addCallbackParameter("key", "value")
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-adjustAdRevenue.addCallbackParameter("key", "value");
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-adjustAdRevenue.addCallbackParameter('key', 'value');
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJAdRevenue/addPartnerParameter.mdx b/src/code-snippets/android/examples/ADJAdRevenue/addPartnerParameter.mdx
deleted file mode 100644
index b1342ae425..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/addPartnerParameter.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-adjustAdRevenue.addPartnerParameter("key", "value")
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-adjustAdRevenue.addPartnerParameter("key", "value");
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-adjustAdRevenue.addPartnerParameter('key', 'value');
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJAdRevenue/constructor.mdx b/src/code-snippets/android/examples/ADJAdRevenue/constructor.mdx
deleted file mode 100644
index 03de7d7ad8..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/constructor.mdx
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJAdRevenue/setAdImpressionsCount.mdx b/src/code-snippets/android/examples/ADJAdRevenue/setAdImpressionsCount.mdx
deleted file mode 100644
index 3bc5b98c78..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/setAdImpressionsCount.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-adjustAdRevenue.setAdImpressionsCount(10)
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-adjustAdRevenue.setAdImpressionsCount(10);
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-adjustAdRevenue.setAdImpressionsCount(10);
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenueNetwork.mdx b/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenueNetwork.mdx
deleted file mode 100644
index 24d52cf334..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenueNetwork.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-adjustAdRevenue.setAdRevenueNetwork("network1")
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-adjustAdRevenue.setAdRevenueNetwork("network1");
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-adjustAdRevenue.setAdRevenueNetwork('network1');
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenuePlacement.mdx b/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenuePlacement.mdx
deleted file mode 100644
index 55a337938a..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenuePlacement.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-adjustAdRevenue.setAdRevenuePlacement("banner")
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-adjustAdRevenue.setAdRevenuePlacement("banner");
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-adjustAdRevenue.setAdRevenuePlacement('banner');
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenueUnit.mdx b/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenueUnit.mdx
deleted file mode 100644
index 5598ba0c39..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/setAdRevenueUnit.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-adjustAdRevenue.setAdRevenueUnit("unit1")
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-adjustAdRevenue.setAdRevenueUnit("unit1");
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-adjustAdRevenue.setAdRevenueUnit('unit1');
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJAdRevenue/setRevenue.mdx b/src/code-snippets/android/examples/ADJAdRevenue/setRevenue.mdx
deleted file mode 100644
index 8fc5416041..0000000000
--- a/src/code-snippets/android/examples/ADJAdRevenue/setRevenue.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue("source")
-adjustAdRevenue.setRevenue(1.00, "EUR")
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("source");
-adjustAdRevenue.setRevenue(1.00, "EUR");
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue('source')
-adjustAdRevenue.setRevenue(1.00, 'EUR');
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/constructor.mdx b/src/code-snippets/android/examples/ADJConfig/constructor.mdx
deleted file mode 100644
index de87df99f0..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/constructor.mdx
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-```java {3}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setCoppaCompliantEnabled.mdx b/src/code-snippets/android/examples/ADJConfig/setCoppaCompliantEnabled.mdx
deleted file mode 100644
index a4b9fd8b50..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setCoppaCompliantEnabled.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setCoppaCompliantEnabled(true)
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setCoppaCompliantEnabled(true);
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setCoppaCompliantEnabled(true);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setDefaultTracker.mdx b/src/code-snippets/android/examples/ADJConfig/setDefaultTracker.mdx
deleted file mode 100644
index 0a52baf0df..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setDefaultTracker.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setDefaultTracker("{Token}")
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setDefaultTracker("{Token}");
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setDefaultTracker("{Token}");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setDelayStart.mdx b/src/code-snippets/android/examples/ADJConfig/setDelayStart.mdx
deleted file mode 100644
index b4870b7525..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setDelayStart.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-```kotlin {2}
-val config = AdjustConfig(this, appToken, environment)
-config.setDelayStart(5.5)
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {2}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setDelayStart(5.5);
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {2}
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setDelayStart(5.5);
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setEventBufferingEnabled.mdx b/src/code-snippets/android/examples/ADJConfig/setEventBufferingEnabled.mdx
deleted file mode 100644
index fef0d34189..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setEventBufferingEnabled.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setEventBufferingEnabled(true)
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setEventBufferingEnabled(true);
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setEventBufferingEnabled(true);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setExternalDeviceId.mdx b/src/code-snippets/android/examples/ADJConfig/setExternalDeviceId.mdx
deleted file mode 100644
index 7d04fc5855..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setExternalDeviceId.mdx
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.externalDeviceId("{YourExternalDeviceId}")
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.externalDeviceId("{YourExternalDeviceId}");
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
- var yourAppToken = yourAppToken;
- var environment = AdjustConfig.EnvironmentSandbox;
- var adjustConfig = new AdjustConfig(yourAppToken, environment);
- adjustConfig.setExternalDeviceId("yourExternalDeviceId");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setLogLevel.mdx b/src/code-snippets/android/examples/ADJConfig/setLogLevel.mdx
deleted file mode 100644
index 27904d4c9a..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setLogLevel.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setLogLevel(LogLevel.VERBOSE)
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setLogLevel(LogLevel.VERBOSE);
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setLogLevel(AdjustConfig.LogLevelVerbose);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setNeedsCost.mdx b/src/code-snippets/android/examples/ADJConfig/setNeedsCost.mdx
deleted file mode 100644
index 533614a3b6..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setNeedsCost.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-```kotlin {2}
-val config = AdjustConfig(this, appToken, environment)
-config.setNeedsCost(true)
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {2}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setNeedsCost(true);
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {2}
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setNeedsCost(true);
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnAttributionChangedListener.mdx b/src/code-snippets/android/examples/ADJConfig/setOnAttributionChangedListener.mdx
deleted file mode 100644
index 604f6549b3..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnAttributionChangedListener.mdx
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-```kotlin {3-5}
-val config = AdjustConfig(this, appToken, environment)
-//...
-config.setOnAttributionChangedListener {
- override fun onAttributionChanged(attribution: AdjustAttribution) {}
- }
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {3-6}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-//...
-config.setOnAttributionChangedListener(new OnAttributionChangedListener() {
- @Override
- public void onAttributionChanged(AdjustAttribution attribution) {}
-});
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js
-function attributionCallback(attribution) {}
-//...
-let adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setAttributionCallback(attributionCallback);
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnAttributionChangedListenerFacebook.mdx b/src/code-snippets/android/examples/ADJConfig/setOnAttributionChangedListenerFacebook.mdx
deleted file mode 100644
index 1b40911084..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnAttributionChangedListenerFacebook.mdx
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-```kotlin {3-14}
-val config = AdjustConfig(this, appToken, environment)
-//...
-config.setOnAttributionChangedListener {
- val fbInstallReferrerJSONObject = extractFBInstallReferrerJSON(it)
-}
-
-fun extractFBInstallReferrerJSON(adjustAttribution: AdjustAttribution): JSONObject? {
- try {
- return JSONObject(adjustAttribution.fbInstallReferrer)
- } catch (e: JSONException) {
- Log.d("example", e.message!!)
- }
- return null
-}
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {3-18}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-//...
-config.setOnAttributionChangedListener(new OnAttributionChangedListener() {
- @Override
- public void onAttributionChanged(AdjustAttribution adjustAttribution) {
- JSONObject fbInstallReferrerJSONObject = extractFBInstallReferrerJSON(adjustAttribution);
- }
-});
-
-@Nullable
-JSONObject extractFBInstallReferrerJSON(AdjustAttribution adjustAttribution) {
- try {
- return new JSONObject(adjustAttribution.fbInstallReferrer);
- } catch (JSONException e) {
- Log.d("example", e.getMessage());
- }
- return null;
-}
-//...
-Adjust.onCreate(config);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnDeeplinkResponseListener.mdx b/src/code-snippets/android/examples/ADJConfig/setOnDeeplinkResponseListener.mdx
deleted file mode 100644
index 9053eb1ff6..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnDeeplinkResponseListener.mdx
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-```kotlin {3-7}
-val config = AdjustConfig(this, appToken, environment)
-//...
-config.setOnDeeplinkResponseListener { deeplink ->
- Log.d("example", "Deferred deep link callback called!")
- Log.d("example", "Deep link URL: $deeplink")
- true
-}
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {3-12}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-//...
-// Evaluate the deeplink to be launched.
-config.setOnDeeplinkResponseListener(new OnDeeplinkResponseListener() {
- @Override
- public boolean launchReceivedDeeplink(Uri deeplink) {
- Log.d("example", "Deferred deep link callback called!");
- Log.d("example", "Deep link URL: " + deeplink);
-
- return true;
- }
-});
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {1-4}
-function deferredDeeplinkCallback(deeplink) {
- console.log("Deferred deep link callback called!");
- console.log(`Deep link URL: ${deeplink}`);
-}
-//...
-let adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setOpenDeferredDeeplink(true);
-adjustConfig.setDeferredDeeplinkCallback(deferredDeeplinkCallback);
-//...
-Adjust.start(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingFailedListener.mdx b/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingFailedListener.mdx
deleted file mode 100644
index c2bc88bfff..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingFailedListener.mdx
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-```kotlin {3-7}
-val config = AdjustConfig(this, appToken, environment)
-//...
-config.setOnEventTrackingFailedListener (OnEventTrackingFailedListener() {
- override fun onFinishedEventTrackingFailed(eventFailureResponseData: AdjustEventFailure) {
- //...
- }
-})
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {3-8}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-//...
-config.setOnEventTrackingFailedListener(new OnEventTrackingFailedListener() {
- @Override
- public void onFinishedEventTrackingFailed(AdjustEventFailure eventFailureResponseData) {
- //...
- }
-});
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function eventFailureCallback(eventFailureResponseData) {}
-//...
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setEventFailureCallback(eventFailureCallback);
-//...
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingFailedListenerExample.mdx b/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingFailedListenerExample.mdx
deleted file mode 100644
index 2488a7b233..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingFailedListenerExample.mdx
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-```kotlin
-val config = AdjustConfig(this, appToken, environment)
-
-config.setOnEventTrackingFailedListener(new OnEventTrackingFailedListener() {
- override fun eventFailure(eventFailureResponseData: AdjustEventFailure) {
- Log.v("Event recording failed. Response: " + eventFailureResponseData.Message)
- }
-})
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```java
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-
-config.setOnEventTrackingFailedListener(new OnEventTrackingFailedListener() {
- @Override
- public void eventFailure(AdjustEventFailure eventFailureResponseData) {
- Log.v("Event recording failed. Response: " + eventFailureResponseData.Message)
- }
-});
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function eventFailure(eventFailureResponseData) {
- console.log('Event recording failed. Response: ' + eventFailureResponseData.Message)
-}
-
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setEventFailureCallback(sessionFailure);
-
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingSucceededListener.mdx b/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingSucceededListener.mdx
deleted file mode 100644
index bcdc3d825f..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingSucceededListener.mdx
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-```kotlin {3-7}
-val config = AdjustConfig(this, appToken, environment)
-//...
-config.setOnEventTrackingSucceededListener(new OnEventTrackingSucceededListener() {
- override fun onFinishedEventTrackingSucceeded(eventSuccessResponseData: AdjustEventSuccess) {
- //...
- }
-})
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {3-8}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-//...
-config.setOnEventTrackingSucceededListener(new OnEventTrackingSucceededListener() {
- @Override
- public void onFinishedEventTrackingSucceeded(AdjustEventSuccess eventSuccessResponseData) {
- //...
- }
-});
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function eventSuccessCallback(eventSuccessResponseData) {}
-//...
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setEventSuccessCallback(eventSuccessCallback);
-//...
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingSucceededListenerExample.mdx b/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingSucceededListenerExample.mdx
deleted file mode 100644
index 199d2f64ad..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnEventTrackingSucceededListenerExample.mdx
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-```kotlin
-val config = AdjustConfig(this, appToken, environment)
-
-config.setOnEventTrackingSucceededListener(new OnEventTrackingSucceededListener() {
- override fun eventSuccess(eventSuccessResponseData: AdjustEventSuccess) {
- Log.v("Event recorded at " + eventSuccessResponseData.Timestamp)
- }
-})
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```java
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-
-config.setOnEventTrackingSucceededListener(new OnEventTrackingSucceededListener() {
- @Override
- public void eventSuccess(AdjustEventSuccess eventSuccessResponseData) {
- Log.v("Event recorded at " + eventSuccessResponseData.Timestamp)
- }
-});
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function eventSuccess(eventSuccessResponseData) {
- console.log('Event recorded at ' + eventSuccessResponseData.Timestamp)
-}
-
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setEventSuccessCallback(eventSuccess);
-
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingFailedListener.mdx b/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingFailedListener.mdx
deleted file mode 100644
index 743eccc9bd..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingFailedListener.mdx
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-```kotlin {3-7}
-val config = AdjustConfig(this, appToken, environment)
-//...
-config.setOnSessionTrackingFailedListener(new OnSessionTrackingFailedListener() {
- override fun onFinishedSessionTrackingFailed(sessionFailureResponseData: AdjustSessionFailure) {
- //...
- }
-})
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {3-8}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-//...
-config.setOnSessionTrackingFailedListener(new OnSessionTrackingFailedListener() {
- @Override
- public void onFinishedSessionTrackingFailed(AdjustSessionFailure sessionFailureResponseData) {
- //...
- }
-});
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function sessionFailureCallback(sessionFailureResponseData) {}
-//...
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setSessionFailureCallback(sessionFailureCallback);
-//...
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingFailedListenerExample.mdx b/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingFailedListenerExample.mdx
deleted file mode 100644
index 7682e1ef72..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingFailedListenerExample.mdx
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-```kotlin
-val config = AdjustConfig(this, appToken, environment)
-
-config.setOnSessionTrackingFailedListener(new OnSessionTrackingFailedListener() {
- override fun sessionFailure(sessionFailureResponseData: AdjustSessionFailure) {
- Log.v("Session recording failed. Response: " + sessionFailureResponseData.Message)
- }
-})
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```java
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-
-config.setOnSessionTrackingFailedListener(new OnSessionTrackingFailedListener() {
- @Override
- public void sessionFailure(AdjustSessionFailure sessionFailureResponseData) {
- Log.v("Session recording failed. Response: " + sessionFailureResponseData.Message)
- }
-});
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function sessionFailure(sessionFailureResponseData) {
- console.log('Session recording failed. Response: ' + sessionFailureResponseData.Message)
-}
-
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setSessionFailureCallback(sessionFailure);
-
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingSucceededListener.mdx b/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingSucceededListener.mdx
deleted file mode 100644
index 1473e9c9f1..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingSucceededListener.mdx
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-```kotlin {3-7}
-val config = AdjustConfig(this, appToken, environment)
-//...
-config.setOnSessionTrackingSucceededListener(new OnSessionTrackingSucceededListener() {
- override fun onFinishedSessionTrackingSucceeded(sessionSuccessResponseData: AdjustSessionSuccess) {
- //...
- }
-})
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {3-8}
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-//...
-config.setOnSessionTrackingSucceededListener(new OnSessionTrackingSucceededListener() {
- @Override
- public void onFinishedSessionTrackingSucceeded(AdjustSessionSuccess sessionSuccessResponseData) {
- //...
- }
-});
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function sessionSuccessCallback(sessionSuccessResponseData) {}
-//...
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setSessionSuccessCallback(sessionSuccessCallback);
-//...
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingSucceededListenerExample.mdx b/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingSucceededListenerExample.mdx
deleted file mode 100644
index 0cbde54139..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setOnSessionTrackingSucceededListenerExample.mdx
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-```kotlin
-val config = AdjustConfig(this, appToken, environment)
-
-config.setOnSessionTrackingSucceededListener(new OnSessionTrackingSucceededListener() {
- override fun sessionSuccess(sessionSuccessResponseData: AdjustSessionSuccess) {
- Log.v("Session recorded at " + sessionSuccessResponseData.Timestamp)
- }
-})
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```java
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-
-config.setOnSessionTrackingSucceededListener(new OnSessionTrackingSucceededListener() {
- @Override
- public void sessionSuccess(AdjustSessionSuccess sessionSuccessResponseData) {
- Log.v("Session recorded at " + sessionSuccessResponseData.Timestamp)
- }
-});
-
-Adjust.onCreate(config)
-```
-
-
-
-
-```js
-function sessionSuccess(sessionSuccessResponseData) {
- console.log('Session recorded at ' + sessionSuccessResponseData.Timestamp)
-}
-
-let adjustConfig = new AdjustConfig(appToken, environment);
-adjustConfig.setSessionSuccessCallback(sessionSuccess);
-
-Adjust.onCreate(adjustConfig);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setPlayStoreKidsAppEnabled.mdx b/src/code-snippets/android/examples/ADJConfig/setPlayStoreKidsAppEnabled.mdx
deleted file mode 100644
index 89df825281..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setPlayStoreKidsAppEnabled.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setPlayStoreKidsAppEnabled(true)
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setPlayStoreKidsAppEnabled(true);
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setPlayStoreKidsAppEnabled(true);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setPreinstallFilePath.mdx b/src/code-snippets/android/examples/ADJConfig/setPreinstallFilePath.mdx
deleted file mode 100644
index f0c25c9eee..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setPreinstallFilePath.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setPreinstallFilePath("../EngagementFile.xml")
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setPreinstallFilePath("../EngagementFile.xml");
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setPreinstallFilePath("../EngagementFile.xml");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setPreinstallTrackingEnabled.mdx b/src/code-snippets/android/examples/ADJConfig/setPreinstallTrackingEnabled.mdx
deleted file mode 100644
index 3d9776b7fe..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setPreinstallTrackingEnabled.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setPreinstallTrackingEnabled(true)
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setPreinstallTrackingEnabled(true);
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setPreinstallTrackingEnabled(true);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setSendInBackground.mdx b/src/code-snippets/android/examples/ADJConfig/setSendInBackground.mdx
deleted file mode 100644
index a58406f871..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setSendInBackground.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setSendInBackground(true)
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setSendInBackground(true);
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setSendInBackground(true);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJConfig/setUrlStrategy.mdx b/src/code-snippets/android/examples/ADJConfig/setUrlStrategy.mdx
deleted file mode 100644
index e40037d348..0000000000
--- a/src/code-snippets/android/examples/ADJConfig/setUrlStrategy.mdx
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-```kotlin {4}
-val appToken = "{YourAppToken}"
-val environment = AdjustConfig.ENVIRONMENT_SANDBOX
-val config = AdjustConfig(this, appToken, environment)
-config.setUrlStrategy(AdjustConfig.DATA_RESIDENCY_EU)
-//...
-Adjust.onCreate(config)
-```
-
-
-
-
-```java {4}
-String appToken = "{YourAppToken}";
-String environment = AdjustConfig.ENVIRONMENT_SANDBOX;
-AdjustConfig config = new AdjustConfig(this, appToken, environment);
-config.setUrlStrategy(AdjustConfig.DATA_RESIDENCY_EU);
-//...
-Adjust.onCreate(config);
-```
-
-
-
-
-```js {4}
-var yourAppToken = yourAppToken;
-var environment = AdjustConfig.EnvironmentSandbox;
-var adjustConfig = new AdjustConfig(yourAppToken, environment);
-adjustConfig.setUrlStrategy(AdjustConfig.DATA_RESIDENCY_EU);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/addCallbackParameter.mdx b/src/code-snippets/android/examples/ADJEvent/addCallbackParameter.mdx
deleted file mode 100644
index 483ba32028..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/addCallbackParameter.mdx
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-```kotlin
-val adjustEvent = AdjustEvent("abc123")
-adjustEvent.addCallbackParameter("key", "value")
-adjustEvent.addCallbackParameter("foo", "bar")
-Adjust.trackEvent(adjustEvent)
-```
-
-
-
-
-
-```java
-AdjustEvent adjustEvent = new AdjustEvent("abc123");
-adjustEvent.addCallbackParameter("key", "value");
-adjustEvent.addCallbackParameter("foo", "bar");
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
-
-```js
-let adjustEvent = new AdjustEvent('abc123');
-adjustEvent.addCallbackParameter('key', 'value');
-adjustEvent.addCallbackParameter('foo', 'bar');
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/addCallbackParameterExample.mdx b/src/code-snippets/android/examples/ADJEvent/addCallbackParameterExample.mdx
deleted file mode 100644
index 1e3238acc4..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/addCallbackParameterExample.mdx
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-```kotlin
-fun onTrackUniqueEventClick(v: View) {
- val event = AdjustEvent("g3mfiw")
- event.addCallbackParameter("event_token", "g3mfiw")
- event.addCallbackParameter("revenue_amount", "0.05")
- Adjust.trackEvent(event)
-}
-```
-
-
-
-
-
-```java
-public void onTrackUniqueEventClick(View v) {
- AdjustEvent event = new AdjustEvent("g3mfiw");
- event.addCallbackParameter("event_token", "g3mfiw");
- event.addCallbackParameter("revenue_amount", "0.05");
- Adjust.trackEvent(event);
-}
-```
-
-
-
-
-```js
-window.onload = function() {
- var btnTrackUniqueEvent = document.getElementById('btnTrackUniqueEvent')
- btnTrackUniqueEvent.onclick = function(e) {
- e.preventDefault();
- var adjustEvent = new AdjustEvent('g3mfiw');
- adjustEvent.addCallbackParameter('event_token', 'g3mfiw');
- adjustEvent.addCallbackParameter('revenue_amount', '0.05');
- Adjust.trackEvent(adjustEvent);
- }
-}
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/addPartnerParameter.mdx b/src/code-snippets/android/examples/ADJEvent/addPartnerParameter.mdx
deleted file mode 100644
index 1770da9a8e..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/addPartnerParameter.mdx
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-```kotlin
-val adjustEvent = AdjustEvent("abc123")
-adjustEvent.addPartnerParameter("key", "value")
-adjustEvent.addPartnerParameter("foo", "bar")
-Adjust.trackEvent(adjustEvent)
-```
-
-
-
-
-
-```java
-AdjustEvent adjustEvent = new AdjustEvent("abc123");
-adjustEvent.addPartnerParameter("key", "value");
-adjustEvent.addPartnerParameter("foo", "bar");
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
-
-```js
-let adjustEvent = new AdjustEvent('abc123');
-adjustEvent.addPartnerParameter('key', 'value');
-adjustEvent.addPartnerParameter('foo', 'bar');
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/addPartnerParameterExample.mdx b/src/code-snippets/android/examples/ADJEvent/addPartnerParameterExample.mdx
deleted file mode 100644
index 34fca14a16..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/addPartnerParameterExample.mdx
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-```kotlin
-fun onTrackUniqueEventClick(v: View) {
- val event = AdjustEvent("g3mfiw")
- event.addPartnerParameter("product_id", "29")
- event.addPartnerParameter("user_id", "835")
- Adjust.trackEvent(event)
-}
-```
-
-
-
-
-
-```java
-public void onTrackUniqueEventClick(View v) {
- AdjustEvent event = new AdjustEvent("g3mfiw");
- event.addPartnerParameter("product_id", "29");
- event.addPartnerParameter("user_id", "835");
- Adjust.trackEvent(event);
-}
-```
-
-
-
-
-```js
-window.onload = function() {
- var btnTrackUniqueEvent = document.getElementById('btnTrackUniqueEvent')
- btnTrackUniqueEvent.onclick = function(e) {
- e.preventDefault();
- var adjustEvent = new AdjustEvent('g3mfiw');
- adjustEvent.addPartnerParameter('product_id', '29');
- adjustEvent.addPartnerParameter('user_id', '835');
- Adjust.trackEvent(adjustEvent);
- }
-}
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/constructor.mdx b/src/code-snippets/android/examples/ADJEvent/constructor.mdx
deleted file mode 100644
index 35c1af6af2..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/constructor.mdx
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-```kotlin
-val adjustEvent = AdjustEvent("abc123")
-Adjust.trackEvent(adjustEvent)
-```
-
-
-
-
-
-```java
-AdjustEvent adjustEvent = new AdjustEvent("abc123");
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
-
-```js
-let adjustEvent = new AdjustEvent('abc123');
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/setCallbackId.mdx b/src/code-snippets/android/examples/ADJEvent/setCallbackId.mdx
deleted file mode 100644
index 228fc59a2e..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/setCallbackId.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-```kotlin
-val adjustEvent = AdjustEvent("abc123")
-adjustEvent.setCallbackId("{Your-Custom-Id}")
-Adjust.trackEvent(adjustEvent)
-```
-
-
-
-
-
-```java
-AdjustEvent adjustEvent = new AdjustEvent("abc123");
-adjustEvent.setCallbackId("{Your-Custom-Id}");
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
-
-```js
-let adjustEvent = new AdjustEvent('abc123');
-adjustEvent.setCallbackId('{Your-Custom-Id}');
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/setCallbackIdExample.mdx b/src/code-snippets/android/examples/ADJEvent/setCallbackIdExample.mdx
deleted file mode 100644
index bb09b7d742..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/setCallbackIdExample.mdx
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-```kotlin
-fun onTrackUniqueEventClick(v: View) {
- val event = AdjustEvent("g3mfiw")
- event.setCallbackId("f2e728d8-271b-49ab-80ea-27830a215147")
- Adjust.trackEvent(event)
-}
-```
-
-
-
-
-
-```java
-public void onTrackUniqueEventClick(View v) {
- AdjustEvent event = new AdjustEvent("g3mfiw");
- event.setCallbackId("f2e728d8-271b-49ab-80ea-27830a215147")
- Adjust.trackEvent(event);
-}
-```
-
-
-
-
-```js
-window.onload = function() {
- var btnTrackUniqueEvent = document.getElementById('btnTrackUniqueEvent')
- btnTrackUniqueEvent.onclick = function(e) {
- e.preventDefault();
- var adjustEvent = new AdjustEvent('g3mfiw');
- adjustEvent.setCallbackId('f2e728d8-271b-49ab-80ea-27830a215147')
- Adjust.trackEvent(adjustEvent);
- }
-}
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/setOrderId.mdx b/src/code-snippets/android/examples/ADJEvent/setOrderId.mdx
deleted file mode 100644
index 86bab681c4..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/setOrderId.mdx
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-```kotlin
-val adjustEvent = AdjustEvent("abc123")
-adjustEvent.setRevenue(0.01, "EUR")
-adjustEvent.setOrderId("{OrderId}")
-Adjust.trackEvent(adjustEvent)
-```
-
-
-
-
-
-```java
-AdjustEvent adjustEvent = new AdjustEvent("abc123");
-adjustEvent.setRevenue(0.01, "EUR");
-adjustEvent.setOrderId("{OrderId}");
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
-
-```js
-let adjustEvent = new AdjustEvent('abc123');
-adjustEvent.setRevenue(0.01, 'EUR');
-adjustEvent.setOrderId('{OrderId}');
-Adjust.trackEvent(event);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/setOrderIdExample.mdx b/src/code-snippets/android/examples/ADJEvent/setOrderIdExample.mdx
deleted file mode 100644
index eb68d54519..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/setOrderIdExample.mdx
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-```kotlin
-fun onTrackUniqueEventClick(v: View) {
- val event = AdjustEvent("g3mfiw")
- event.setOrderId("5e85484b-1ebc-4141-aab7-25b869e54c49")
- Adjust.trackEvent(event)
-}
-```
-
-
-
-
-
-```java
-public void onTrackUniqueEventClick(View v) {
- AdjustEvent event = new AdjustEvent("g3mfiw");
- event.setOrderId("5e85484b-1ebc-4141-aab7-25b869e54c49")
- Adjust.trackEvent(event);
-}
-```
-
-
-
-
-```js
-window.onload = function() {
- var btnTrackUniqueEvent = document.getElementById('btnTrackUniqueEvent')
- btnTrackUniqueEvent.onclick = function(e) {
- e.preventDefault();
- var adjustEvent = new AdjustEvent('g3mfiw');
- adjustEvent.setOrderId('5e85484b-1ebc-4141-aab7-25b869e54c49');
- Adjust.trackEvent(adjustEvent);
- }
-}
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/setRevenue.mdx b/src/code-snippets/android/examples/ADJEvent/setRevenue.mdx
deleted file mode 100644
index 2cb293e45a..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/setRevenue.mdx
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-```kotlin
-val adjustEvent = AdjustEvent("abc123")
-adjustEvent.setRevenue(0.01, "EUR")
-Adjust.trackEvent(adjustEvent)
-```
-
-
-
-
-
-```java
-AdjustEvent adjustEvent = new AdjustEvent("abc123");
-adjustEvent.setRevenue(0.01, "EUR");
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
-
-```js
-let adjustEvent = new AdjustEvent('abc123');
-adjustEvent.setRevenue(0.01, 'EUR');
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJEvent/setRevenueExample.mdx b/src/code-snippets/android/examples/ADJEvent/setRevenueExample.mdx
deleted file mode 100644
index a79f7e2cd5..0000000000
--- a/src/code-snippets/android/examples/ADJEvent/setRevenueExample.mdx
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-```kotlin
-fun onTrackRevenueEventClick(v: View) {
- val event = AdjustEvent("g3mfiw")
- event.setRevenue(0.25, "EUR")
- Adjust.trackEvent(event)
-}
-```
-
-
-
-
-
-```java
-public void onTrackRevenueEventClick(View v) {
- AdjustEvent event = new AdjustEvent("g3mfiw");
- event.setRevenue(0.25, "EUR")
- Adjust.trackEvent(event);
-}
-```
-
-
-
-
-```js
-window.onload = function() {
- var btnTrackRevenueEvent = document.getElementById('btnTrackRevenueEvent')
- btnTrackRevenueEvent.onclick = function(e) {
- e.preventDefault();
- var adjustEvent = new AdjustEvent('g3mfiw');
- adjustEvent.setRevenue(0.25, 'EUR');
- Adjust.trackEvent(adjustEvent);
- }
-}
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJPlayStoreSubscription/addCallbackParameter.mdx b/src/code-snippets/android/examples/ADJPlayStoreSubscription/addCallbackParameter.mdx
deleted file mode 100644
index 7c07fd2283..0000000000
--- a/src/code-snippets/android/examples/ADJPlayStoreSubscription/addCallbackParameter.mdx
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-```kotlin
-subscription.addCallbackParameter("key", "value")
-subscription.addCallbackParameter("foo", "bar")
-```
-
-
-
-
-
-```java
-subscription.addCallbackParameter("key", "value");
-subscription.addCallbackParameter("foo", "bar");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJPlayStoreSubscription/addPartnerParameter.mdx b/src/code-snippets/android/examples/ADJPlayStoreSubscription/addPartnerParameter.mdx
deleted file mode 100644
index afcec6878f..0000000000
--- a/src/code-snippets/android/examples/ADJPlayStoreSubscription/addPartnerParameter.mdx
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-```kotlin
-subscription.addPartnerParameter("key", "value")
-subscription.addPartnerParameter("foo", "bar")
-```
-
-
-
-
-
-```java
-subscription.addPartnerParameter("key", "value");
-subscription.addPartnerParameter("foo", "bar");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJPlayStoreSubscription/constructor.mdx b/src/code-snippets/android/examples/ADJPlayStoreSubscription/constructor.mdx
deleted file mode 100644
index 53ce72a7c0..0000000000
--- a/src/code-snippets/android/examples/ADJPlayStoreSubscription/constructor.mdx
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-```kotlin
-val subscription = AdjustPlayStoreSubscription(
- price,
- currency,
- sku,
- orderId,
- signature,
- purchaseToken);
-subscription.setPurchaseTime(purchaseTime)
-
-Adjust.trackPlayStoreSubscription(subscription)
-```
-
-
-
-
-
-```java
-AdjustPlayStoreSubscription subscription = new AdjustPlayStoreSubscription(
- price,
- currency,
- sku,
- orderId,
- signature,
- purchaseToken);
-subscription.setPurchaseTime(purchaseTime);
-
-Adjust.trackPlayStoreSubscription(subscription);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJPlayStoreSubscription/setPurchaseTime.mdx b/src/code-snippets/android/examples/ADJPlayStoreSubscription/setPurchaseTime.mdx
deleted file mode 100644
index 59b7375daf..0000000000
--- a/src/code-snippets/android/examples/ADJPlayStoreSubscription/setPurchaseTime.mdx
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-```kotlin
-subscription.setPurchaseTime("1677668234")
-```
-
-
-
-
-
-```java
-subscription.setPurchaseTime("1677668234");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJThirdPartySharing/addGranularOption.mdx b/src/code-snippets/android/examples/ADJThirdPartySharing/addGranularOption.mdx
deleted file mode 100644
index 25ddb33e3c..0000000000
--- a/src/code-snippets/android/examples/ADJThirdPartySharing/addGranularOption.mdx
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-```kotlin
-val adjustThirdPartySharing = AdjustThirdPartySharing(true)
-adjustThirdPartySharing.addGranularOption("PartnerA", "foo", "bar")
-Adjust.trackThirdPartySharing(adjustThirdPartySharing)
-```
-
-
-
-
-
-```java
-AdjustThirdPartySharing adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-adjustThirdPartySharing.addGranularOption("PartnerA", "foo", "bar");
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
-
-
-```js
-let adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-adjustThirdPartySharing.addGranularOption('PartnerA', 'foo', 'bar');
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJThirdPartySharing/addGranularOptionFacebook.mdx b/src/code-snippets/android/examples/ADJThirdPartySharing/addGranularOptionFacebook.mdx
deleted file mode 100644
index a32be48ec0..0000000000
--- a/src/code-snippets/android/examples/ADJThirdPartySharing/addGranularOptionFacebook.mdx
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-```kotlin
-val adjustThirdPartySharing = AdjustThirdPartySharing(true)
-adjustThirdPartySharing.addGranularOption("facebook", "data_processing_options_country", "1")
-adjustThirdPartySharing.addGranularOption("facebook", "data_processing_options_state", "1000")
-Adjust.trackThirdPartySharing(adjustThirdPartySharing)
-```
-
-
-
-
-
-```java
-AdjustThirdPartySharing adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-adjustThirdPartySharing.addGranularOption("facebook", "data_processing_options_country", "1");
-adjustThirdPartySharing.addGranularOption("facebook", "data_processing_options_state", "1000");
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
-
-
-```js
-let adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-adjustThirdPartySharing.addGranularOption('facebook', 'data_processing_options_country', '1');
-adjustThirdPartySharing.addGranularOption('facebook', 'data_processing_options_state', '1000');
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJThirdPartySharing/addPartnerSharingSetting.mdx b/src/code-snippets/android/examples/ADJThirdPartySharing/addPartnerSharingSetting.mdx
deleted file mode 100644
index 3aef9c3a3b..0000000000
--- a/src/code-snippets/android/examples/ADJThirdPartySharing/addPartnerSharingSetting.mdx
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-```kotlin
-val adjustThirdPartySharing = AdjustThirdPartySharing(true)
-adjustThirdPartySharing.addPartnerSharingSetting("PartnerA", "install", true)
-adjustThirdPartySharing.addPartnerSharingSetting("PartnerA", "events", true)
-adjustThirdPartySharing.addPartnerSharingSetting("PartnerA", "sessions", true)
-Adjust.trackThirdPartySharing(adjustThirdPartySharing)
-```
-
-
-
-
-
-```java
-AdjustThirdPartySharing adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-adjustThirdPartySharing.addPartnerSharingSetting("PartnerA", "install", true);
-adjustThirdPartySharing.addPartnerSharingSetting("PartnerA", "events", true);
-adjustThirdPartySharing.addPartnerSharingSetting("PartnerA", "sessions", true);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
-
-
-```js
-let adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-adjustThirdPartySharing.addPartnerSharingSetting('PartnerA', 'install', true);
-adjustThirdPartySharing.addPartnerSharingSetting('PartnerA', 'events', true);
-adjustThirdPartySharing.addPartnerSharingSetting('PartnerA', 'sessions', true);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledFalse.mdx b/src/code-snippets/android/examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledFalse.mdx
deleted file mode 100644
index a6c17c4ef0..0000000000
--- a/src/code-snippets/android/examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledFalse.mdx
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-```kotlin
-val adjustThirdPartySharing = AdjustThirdPartySharing(false)
-Adjust.trackThirdPartySharing(adjustThirdPartySharing)
-```
-
-
-
-
-
-```java
-AdjustThirdPartySharing adjustThirdPartySharing = new AdjustThirdPartySharing(false);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
-
-
-```js
-let adjustThirdPartySharing = new AdjustThirdPartySharing(false);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledTrue.mdx b/src/code-snippets/android/examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledTrue.mdx
deleted file mode 100644
index 9aab09a45b..0000000000
--- a/src/code-snippets/android/examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledTrue.mdx
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-```kotlin
-val adjustThirdPartySharing = AdjustThirdPartySharing(true)
-Adjust.trackThirdPartySharing(adjustThirdPartySharing)
-```
-
-
-
-
-
-```java
-AdjustThirdPartySharing adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
-
-
-```js
-let adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/addSessionCallbackParameter.mdx b/src/code-snippets/android/examples/Adjust/addSessionCallbackParameter.mdx
deleted file mode 100644
index e60b27619f..0000000000
--- a/src/code-snippets/android/examples/Adjust/addSessionCallbackParameter.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.addSessionCallbackParameter("foo", "bar")
-```
-
-
-
-
-
-```java
-Adjust.addSessionCallbackParameter("foo", "bar");
-```
-
-
-
-
-
-```js
-Adjust.addSessionCallbackParameter("foo", "bar");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/addSessionPartnerParameter.mdx b/src/code-snippets/android/examples/Adjust/addSessionPartnerParameter.mdx
deleted file mode 100644
index ac70b2a447..0000000000
--- a/src/code-snippets/android/examples/Adjust/addSessionPartnerParameter.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.addSessionPartnerParameter("foo", "bar")
-```
-
-
-
-
-
-```java
-Adjust.addSessionPartnerParameter("foo", "bar");
-```
-
-
-
-
-
-```js
-Adjust.addSessionPartnerParameter("foo", "bar");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/adid.mdx b/src/code-snippets/android/examples/Adjust/adid.mdx
deleted file mode 100644
index 72abca4e54..0000000000
--- a/src/code-snippets/android/examples/Adjust/adid.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-val adid = Adjust.getAdid()
-```
-
-
-
-
-
-```java
-String adid = Adjust.getAdid();
-```
-
-
-
-
-
-```js
-let adid = Adjust.getAdid();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/appWillOpenUrl.mdx b/src/code-snippets/android/examples/Adjust/appWillOpenUrl.mdx
deleted file mode 100644
index c76f0a19ff..0000000000
--- a/src/code-snippets/android/examples/Adjust/appWillOpenUrl.mdx
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-```kotlin
-override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- setContentView(R.layout.activity_main)
-
- val intent = intent
- val data = intent.data
- Adjust.appWillOpenUrl(data, getApplicationContext())
-}
-```
-
-
-
-
-```java
-@Override
-protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- Intent intent = getIntent();
- Uri data = intent.getData();
- Adjust.appWillOpenUrl(data, getApplicationContext());
-}
-```
-
-
-
-
-```js
-Adjust.appWillOpenUrl(deeplinkUrl);
-```
-
-
diff --git a/src/code-snippets/android/examples/Adjust/attribution.mdx b/src/code-snippets/android/examples/Adjust/attribution.mdx
deleted file mode 100644
index 433debe852..0000000000
--- a/src/code-snippets/android/examples/Adjust/attribution.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-val attribution = Adjust.getAttribution()
-```
-
-
-
-
-
-```java
-AdjustAttribution attribution = Adjust.getAttribution();
-```
-
-
-
-
-
-```js
-let attribution = Adjust.getAttribution();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/disableThirdPartySharing.mdx b/src/code-snippets/android/examples/Adjust/disableThirdPartySharing.mdx
deleted file mode 100644
index aef91fea19..0000000000
--- a/src/code-snippets/android/examples/Adjust/disableThirdPartySharing.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.disableThirdPartySharing()
-```
-
-
-
-
-
-```java
-Adjust.disableThirdPartySharing();
-```
-
-
-
-
-
-```js
-Adjust.disableThirdPartySharing();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/gdprForgetMe.mdx b/src/code-snippets/android/examples/Adjust/gdprForgetMe.mdx
deleted file mode 100644
index aa6bd7da07..0000000000
--- a/src/code-snippets/android/examples/Adjust/gdprForgetMe.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.gdprForgetMe()
-```
-
-
-
-
-
-```java
-Adjust.gdprForgetMe();
-```
-
-
-
-
-
-```js
-Adjust.gdprForgetMe();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/getAmazonAdId.mdx b/src/code-snippets/android/examples/Adjust/getAmazonAdId.mdx
deleted file mode 100644
index 0a54b3972a..0000000000
--- a/src/code-snippets/android/examples/Adjust/getAmazonAdId.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-val amazonAdId = Adjust.getAmazonAdId(getApplicationContext())
-```
-
-
-
-
-
-```java
-String amazonAdId = Adjust.getAmazonAdId(getApplicationContext());
-```
-
-
-
-
-
-```js
-let amazonAdId = Adjust.getAmazonAdId();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/getGoogleAdId.mdx b/src/code-snippets/android/examples/Adjust/getGoogleAdId.mdx
deleted file mode 100644
index 12cadf7d2e..0000000000
--- a/src/code-snippets/android/examples/Adjust/getGoogleAdId.mdx
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-```kotlin
-Adjust.getGoogleAdId(this, object : OnDeviceIdsRead {
- override fun onGoogleAdIdRead(googleAdId: String) {}
-})
-```
-
-
-
-
-
-```java
-Adjust.getGoogleAdId(this, new OnDeviceIdsRead() {
- @Override
- public void onGoogleAdIdRead(String googleAdId) {}
-});
-```
-
-
-
-
-
-```js
-Adjust.getGoogleAdId(function(googleAdId) {
- // ...
-});
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/isEnabled.mdx b/src/code-snippets/android/examples/Adjust/isEnabled.mdx
deleted file mode 100644
index fdeae11650..0000000000
--- a/src/code-snippets/android/examples/Adjust/isEnabled.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.isEnabled()
-```
-
-
-
-
-
-```java
-Adjust.isEnabled();
-```
-
-
-
-
-
-```js
-Adjust.isEnabled();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/removeSessionCallbackParameter.mdx b/src/code-snippets/android/examples/Adjust/removeSessionCallbackParameter.mdx
deleted file mode 100644
index a0ef7149de..0000000000
--- a/src/code-snippets/android/examples/Adjust/removeSessionCallbackParameter.mdx
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-```kotlin
-Adjust.removeSessionCallbackParameter("foo")
-```
-
-
-
-
-
-```java
-Adjust.removeSessionCallbackParameter("foo");
-```
-
-
-
-
-
-```js
-Adjust.removeSessionCallbackParameter("foo");
-```
-
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/removeSessionPartnerParameter.mdx b/src/code-snippets/android/examples/Adjust/removeSessionPartnerParameter.mdx
deleted file mode 100644
index 4233282292..0000000000
--- a/src/code-snippets/android/examples/Adjust/removeSessionPartnerParameter.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.removeSessionPartnerParameter("foo");
-```
-
-
-
-
-
-```java
-Adjust.removeSessionPartnerParameter("foo");
-```
-
-
-
-
-
-```js
-Adjust.removeSessionPartnerParameter("foo");
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/resetSessionCallbackParameters.mdx b/src/code-snippets/android/examples/Adjust/resetSessionCallbackParameters.mdx
deleted file mode 100644
index 9e8671c6c8..0000000000
--- a/src/code-snippets/android/examples/Adjust/resetSessionCallbackParameters.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.resetSessionCallbackParameters()
-```
-
-
-
-
-
-```java
-Adjust.resetSessionCallbackParameters();
-```
-
-
-
-
-
-```js
-Adjust.resetSessionCallbackParameters();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/resetSessionPartnerParameters.mdx b/src/code-snippets/android/examples/Adjust/resetSessionPartnerParameters.mdx
deleted file mode 100644
index db5f411d4e..0000000000
--- a/src/code-snippets/android/examples/Adjust/resetSessionPartnerParameters.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.resetSessionPartnerParameters()
-```
-
-
-
-
-
-```java
-Adjust.resetSessionPartnerParameters();
-```
-
-
-
-
-
-```js
-Adjust.resetSessionPartnerParameters();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/sendFirstPackages.mdx b/src/code-snippets/android/examples/Adjust/sendFirstPackages.mdx
deleted file mode 100644
index fbb82ed873..0000000000
--- a/src/code-snippets/android/examples/Adjust/sendFirstPackages.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.sendFirstPackages()
-```
-
-
-
-
-
-```java
-Adjust.sendFirstPackages();
-```
-
-
-
-
-
-```js
-Adjust.sendFirstPackages();
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/setEnabled.mdx b/src/code-snippets/android/examples/Adjust/setEnabled.mdx
deleted file mode 100644
index 1c8f34c69a..0000000000
--- a/src/code-snippets/android/examples/Adjust/setEnabled.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.setEnabled(false)
-```
-
-
-
-
-
-```java
-Adjust.setEnabled(false);
-```
-
-
-
-
-
-```js
-Adjust.setEnabled(false);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/setOfflineMode.mdx b/src/code-snippets/android/examples/Adjust/setOfflineMode.mdx
deleted file mode 100644
index 238afd50ea..0000000000
--- a/src/code-snippets/android/examples/Adjust/setOfflineMode.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.setOfflineMode(true)
-```
-
-
-
-
-
-```java
-Adjust.setOfflineMode(true);
-```
-
-
-
-
-
-```js
-Adjust.setOfflineMode(true);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/setPushToken.mdx b/src/code-snippets/android/examples/Adjust/setPushToken.mdx
deleted file mode 100644
index 99b146e12b..0000000000
--- a/src/code-snippets/android/examples/Adjust/setPushToken.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.setPushToken("{YourPushToken}", getApplicationContext())
-```
-
-
-
-
-
-```java
-Adjust.setPushToken("{YourPushToken}", getApplicationContext());
-```
-
-
-
-
-
-```js
-Adjust.setPushToken('{YourPushToken}');
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/setPushTokenExample.mdx b/src/code-snippets/android/examples/Adjust/setPushTokenExample.mdx
deleted file mode 100644
index 089a95e0cd..0000000000
--- a/src/code-snippets/android/examples/Adjust/setPushTokenExample.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.setPushToken("HrFmrcq96tj723aWFfrw", getApplicationContext())
-```
-
-
-
-
-
-```java
-Adjust.setPushToken("HrFmrcq96tj723aWFfrw", getApplicationContext());
-```
-
-
-
-
-
-```js
-Adjust.setPushToken('HrFmrcq96tj723aWFfrw')
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/trackAdRevenue.mdx b/src/code-snippets/android/examples/Adjust/trackAdRevenue.mdx
deleted file mode 100644
index 0467b3c893..0000000000
--- a/src/code-snippets/android/examples/Adjust/trackAdRevenue.mdx
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-```kotlin
-val adjustAdRevenue = AdjustAdRevenue(AdjustConfig.AD_REVENUE_APPLOVIN_MAX)
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```java
-AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue(AdjustConfig.AD_REVENUE_APPLOVIN_MAX);
-Adjust.trackAdRevenue(adjustAdRevenue)
-```
-
-
-
-
-
-```js
-let adjustAdRevenue = new AdjustAdRevenue(AdjustConfig.AD_REVENUE_APPLOVIN_MAX)
-Adjust.trackAdRevenue(adjustAdRevenue);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/trackEvent.mdx b/src/code-snippets/android/examples/Adjust/trackEvent.mdx
deleted file mode 100644
index 4d520b011c..0000000000
--- a/src/code-snippets/android/examples/Adjust/trackEvent.mdx
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-```kotlin
-val adjustEvent = AdjustEvent("abc123")
-Adjust.trackEvent(adjustEvent)
-```
-
-
-
-
-
-```java
-AdjustEvent adjustEvent = new AdjustEvent("abc123");
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
-
-
-```js
-let adjustEvent = new AdjustEvent('abc123');
-Adjust.trackEvent(adjustEvent);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/trackEventExample.mdx b/src/code-snippets/android/examples/Adjust/trackEventExample.mdx
deleted file mode 100644
index a0d5bfb575..0000000000
--- a/src/code-snippets/android/examples/Adjust/trackEventExample.mdx
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-```kotlin
-fun onTrackSimpleEventClick(v: View) {
- val event = AdjustEvent("g3mfiw")
- Adjust.trackEvent(event)
-}
-```
-
-
-
-
-
-```java
-public void onTrackSimpleEventClick(View v) {
- AdjustEvent event = new AdjustEvent("g3mfiw");
- Adjust.trackEvent(event);
-```
-
-
-
-
-
-```js
-window.onload = function() {
- var btnTrackSimpleEvent = document.getElementById('btnTrackSimpleEvent')
- btnTrackSimpleEvent.onclick = function(e) {
- e.preventDefault();
- var adjustEvent = new AdjustEvent('g3mfiw');
- Adjust.trackEvent(adjustEvent);
- }
-}
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/trackMeasurementConsent.mdx b/src/code-snippets/android/examples/Adjust/trackMeasurementConsent.mdx
deleted file mode 100644
index 029b923d33..0000000000
--- a/src/code-snippets/android/examples/Adjust/trackMeasurementConsent.mdx
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-```kotlin
-Adjust.trackMeasurementConsent(true)
-```
-
-
-
-
-
-```java
-Adjust.trackMeasurementConsent(true);
-```
-
-
-
-
-
-```js
-Adjust.trackMeasurementConsent(true);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/trackPlayStoreSubscription.mdx b/src/code-snippets/android/examples/Adjust/trackPlayStoreSubscription.mdx
deleted file mode 100644
index 678c45f9aa..0000000000
--- a/src/code-snippets/android/examples/Adjust/trackPlayStoreSubscription.mdx
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-```kotlin
-val subscription = AdjustPlayStoreSubscription(
- price,
- currency,
- sku,
- orderId,
- signature,
- purchaseToken)
-subscription.setPurchaseTime(purchaseTime)
-
-Adjust.trackPlayStoreSubscription(subscription)
-```
-
-
-
-
-
-```java
-AdjustPlayStoreSubscription subscription = new AdjustPlayStoreSubscription(
- price,
- currency,
- sku,
- orderId,
- signature,
- purchaseToken);
-subscription.setPurchaseTime(purchaseTime);
-
-Adjust.trackPlayStoreSubscription(subscription);
-```
-
-
-
diff --git a/src/code-snippets/android/examples/Adjust/trackThirdPartySharing.mdx b/src/code-snippets/android/examples/Adjust/trackThirdPartySharing.mdx
deleted file mode 100644
index 9aab09a45b..0000000000
--- a/src/code-snippets/android/examples/Adjust/trackThirdPartySharing.mdx
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-```kotlin
-val adjustThirdPartySharing = AdjustThirdPartySharing(true)
-Adjust.trackThirdPartySharing(adjustThirdPartySharing)
-```
-
-
-
-
-
-```java
-AdjustThirdPartySharing adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
-
-
-```js
-let adjustThirdPartySharing = new AdjustThirdPartySharing(true);
-Adjust.trackThirdPartySharing(adjustThirdPartySharing);
-```
-
-
-
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/addCallbackParameter.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/addCallbackParameter.mdx
deleted file mode 100644
index 2116b10980..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/addCallbackParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void addCallbackParameter(final String key, final String value)
-```
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/addPartnerParameter.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/addPartnerParameter.mdx
deleted file mode 100644
index e1332f00ae..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/addPartnerParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void addPartnerParameter(String key, String value)
-```
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/constructor.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/constructor.mdx
deleted file mode 100644
index bc8d318535..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/constructor.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public AdjustAdRevenue(final String source)
-```
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/setAdImpressionsCount.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/setAdImpressionsCount.mdx
deleted file mode 100644
index 620f7cdd41..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/setAdImpressionsCount.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setAdImpressionsCount(final Integer adImpressionsCount)
-```
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenueNetwork.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenueNetwork.mdx
deleted file mode 100644
index 03806f8012..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenueNetwork.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setAdRevenueNetwork(final String adRevenueNetwork)
-```
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenuePlacement.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenuePlacement.mdx
deleted file mode 100644
index 2e219887ea..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenuePlacement.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setAdRevenuePlacement(final String adRevenuePlacement)
-```
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenueUnit.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenueUnit.mdx
deleted file mode 100644
index f7f979d142..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/setAdRevenueUnit.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setAdRevenueUnit(final String adRevenueUnit)
-```
diff --git a/src/code-snippets/android/signatures/ADJAdRevenue/setRevenue.mdx b/src/code-snippets/android/signatures/ADJAdRevenue/setRevenue.mdx
deleted file mode 100644
index 81f2da0c23..0000000000
--- a/src/code-snippets/android/signatures/ADJAdRevenue/setRevenue.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setRevenue(final Double revenue, final String currency)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/constructor.mdx b/src/code-snippets/android/signatures/ADJConfig/constructor.mdx
deleted file mode 100644
index feb34a0bd9..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/constructor.mdx
+++ /dev/null
@@ -1,5 +0,0 @@
-```java
-public AdjustConfig(Context context, String appToken, String environment, boolean allowSuppressLogLevel) {
- init(context, appToken, environment, allowSuppressLogLevel);
-}
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setCoppaCompliantEnabled.mdx b/src/code-snippets/android/signatures/ADJConfig/setCoppaCompliantEnabled.mdx
deleted file mode 100644
index efdeb3565b..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setCoppaCompliantEnabled.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setCoppaCompliantEnabled(boolean coppaCompliantEnabled)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setDefaultTracker.mdx b/src/code-snippets/android/signatures/ADJConfig/setDefaultTracker.mdx
deleted file mode 100644
index d340801803..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setDefaultTracker.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setDefaultTracker(String defaultTracker)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setDelayStart.mdx b/src/code-snippets/android/signatures/ADJConfig/setDelayStart.mdx
deleted file mode 100644
index aaedc3c3da..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setDelayStart.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setDelayStart(double delayStart)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setEventBufferingEnabled.mdx b/src/code-snippets/android/signatures/ADJConfig/setEventBufferingEnabled.mdx
deleted file mode 100644
index 9ba4aa86dd..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setEventBufferingEnabled.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setEventBufferingEnabled(Boolean eventBufferingEnabled)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setExternalDeviceId.mdx b/src/code-snippets/android/signatures/ADJConfig/setExternalDeviceId.mdx
deleted file mode 100644
index 36f6f494f4..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setExternalDeviceId.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setExternalDeviceId(String externalDeviceId)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setLogLevel.mdx b/src/code-snippets/android/signatures/ADJConfig/setLogLevel.mdx
deleted file mode 100644
index a5f3d3977f..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setLogLevel.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setLogLevel(LogLevel logLevel)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setNeedsCost.mdx b/src/code-snippets/android/signatures/ADJConfig/setNeedsCost.mdx
deleted file mode 100644
index 0cb04b1662..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setNeedsCost.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setNeedsCost(boolean needsCost)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setOnAttributionChangedListener.mdx b/src/code-snippets/android/signatures/ADJConfig/setOnAttributionChangedListener.mdx
deleted file mode 100644
index 9019f80245..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setOnAttributionChangedListener.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setOnAttributionChangedListener(OnAttributionChangedListener onAttributionChangedListener)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setOnDeeplinkResponseListener.mdx b/src/code-snippets/android/signatures/ADJConfig/setOnDeeplinkResponseListener.mdx
deleted file mode 100644
index 6157b93990..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setOnDeeplinkResponseListener.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setOnDeeplinkResponseListener(OnDeeplinkResponseListener onDeeplinkResponseListener)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setOnEventTrackingFailedListener.mdx b/src/code-snippets/android/signatures/ADJConfig/setOnEventTrackingFailedListener.mdx
deleted file mode 100644
index 77b1e3e92b..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setOnEventTrackingFailedListener.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setOnEventTrackingFailedListener(OnEventTrackingFailedListener onEventTrackingFailedListener)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setOnEventTrackingSucceededListener.mdx b/src/code-snippets/android/signatures/ADJConfig/setOnEventTrackingSucceededListener.mdx
deleted file mode 100644
index 6dbf092926..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setOnEventTrackingSucceededListener.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setOnEventTrackingSucceededListener(OnEventTrackingSucceededListener onEventTrackingSucceededListener)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setOnSessionTrackingFailedListener.mdx b/src/code-snippets/android/signatures/ADJConfig/setOnSessionTrackingFailedListener.mdx
deleted file mode 100644
index 98227613a9..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setOnSessionTrackingFailedListener.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setOnSessionTrackingFailedListener(OnSessionTrackingFailedListener onSessionTrackingFailedListener)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setOnSessionTrackingSucceededListener.mdx b/src/code-snippets/android/signatures/ADJConfig/setOnSessionTrackingSucceededListener.mdx
deleted file mode 100644
index f9e15d87fc..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setOnSessionTrackingSucceededListener.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setOnSessionTrackingSucceededListener(OnSessionTrackingSucceededListener onSessionTrackingSucceededListener)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setPlayStoreKidsAppEnabled.mdx b/src/code-snippets/android/signatures/ADJConfig/setPlayStoreKidsAppEnabled.mdx
deleted file mode 100644
index 1421fa7c62..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setPlayStoreKidsAppEnabled.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setPlayStoreKidsAppEnabled(boolean playStoreKidsAppEnabled)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setPreinstallFilePath.mdx b/src/code-snippets/android/signatures/ADJConfig/setPreinstallFilePath.mdx
deleted file mode 100644
index 27ea5e48d0..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setPreinstallFilePath.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setPreinstallFilePath(String preinstallFilePath)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setPreinstallTrackingEnabled.mdx b/src/code-snippets/android/signatures/ADJConfig/setPreinstallTrackingEnabled.mdx
deleted file mode 100644
index ae14b8fd21..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setPreinstallTrackingEnabled.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setPreinstallTrackingEnabled(boolean preinstallTrackingEnabled)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setSendInBackground.mdx b/src/code-snippets/android/signatures/ADJConfig/setSendInBackground.mdx
deleted file mode 100644
index e72f880a82..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setSendInBackground.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setSendInBackground(boolean sendInBackground)
-```
diff --git a/src/code-snippets/android/signatures/ADJConfig/setUrlStrategy.mdx b/src/code-snippets/android/signatures/ADJConfig/setUrlStrategy.mdx
deleted file mode 100644
index 05a74675c2..0000000000
--- a/src/code-snippets/android/signatures/ADJConfig/setUrlStrategy.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setUrlStrategy(String urlStrategy)
-```
diff --git a/src/code-snippets/android/signatures/ADJEvent/addCallbackParameter.mdx b/src/code-snippets/android/signatures/ADJEvent/addCallbackParameter.mdx
deleted file mode 100644
index 80657c62d8..0000000000
--- a/src/code-snippets/android/signatures/ADJEvent/addCallbackParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void addCallbackParameter(String key, String value)
-```
diff --git a/src/code-snippets/android/signatures/ADJEvent/addPartnerParameter.mdx b/src/code-snippets/android/signatures/ADJEvent/addPartnerParameter.mdx
deleted file mode 100644
index e1332f00ae..0000000000
--- a/src/code-snippets/android/signatures/ADJEvent/addPartnerParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void addPartnerParameter(String key, String value)
-```
diff --git a/src/code-snippets/android/signatures/ADJEvent/constructor.mdx b/src/code-snippets/android/signatures/ADJEvent/constructor.mdx
deleted file mode 100644
index 2d0d512786..0000000000
--- a/src/code-snippets/android/signatures/ADJEvent/constructor.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public AdjustEvent(String eventToken)
-```
diff --git a/src/code-snippets/android/signatures/ADJEvent/setCallbackId.mdx b/src/code-snippets/android/signatures/ADJEvent/setCallbackId.mdx
deleted file mode 100644
index 968cf575b0..0000000000
--- a/src/code-snippets/android/signatures/ADJEvent/setCallbackId.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setCallbackId(String callbackId)
-```
diff --git a/src/code-snippets/android/signatures/ADJEvent/setOrderId.mdx b/src/code-snippets/android/signatures/ADJEvent/setOrderId.mdx
deleted file mode 100644
index 494e0361dd..0000000000
--- a/src/code-snippets/android/signatures/ADJEvent/setOrderId.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setOrderId(String orderId)
-```
diff --git a/src/code-snippets/android/signatures/ADJEvent/setRevenue.mdx b/src/code-snippets/android/signatures/ADJEvent/setRevenue.mdx
deleted file mode 100644
index 9f741c7a12..0000000000
--- a/src/code-snippets/android/signatures/ADJEvent/setRevenue.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setRevenue(double revenue, String currency)
-```
diff --git a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/addCallbackParameter.mdx b/src/code-snippets/android/signatures/ADJPlayStoreSubscription/addCallbackParameter.mdx
deleted file mode 100644
index 80657c62d8..0000000000
--- a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/addCallbackParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void addCallbackParameter(String key, String value)
-```
diff --git a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/addPartnerParameter.mdx b/src/code-snippets/android/signatures/ADJPlayStoreSubscription/addPartnerParameter.mdx
deleted file mode 100644
index e1332f00ae..0000000000
--- a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/addPartnerParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void addPartnerParameter(String key, String value)
-```
diff --git a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/constructor.mdx b/src/code-snippets/android/signatures/ADJPlayStoreSubscription/constructor.mdx
deleted file mode 100644
index eedfb4391d..0000000000
--- a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/constructor.mdx
+++ /dev/null
@@ -1,8 +0,0 @@
-```java
-public AdjustPlayStoreSubscription(final long price,
- final String currency,
- final String sku,
- final String orderId,
- final String signature,
- final String purchaseToken)
-```
diff --git a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/setPurchaseTime.mdx b/src/code-snippets/android/signatures/ADJPlayStoreSubscription/setPurchaseTime.mdx
deleted file mode 100644
index 4a4d211366..0000000000
--- a/src/code-snippets/android/signatures/ADJPlayStoreSubscription/setPurchaseTime.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public void setPurchaseTime(final long purchaseTime)
-```
diff --git a/src/code-snippets/android/signatures/ADJThirdPartySharing/addGranularOption.mdx b/src/code-snippets/android/signatures/ADJThirdPartySharing/addGranularOption.mdx
deleted file mode 100644
index ffe33551ff..0000000000
--- a/src/code-snippets/android/signatures/ADJThirdPartySharing/addGranularOption.mdx
+++ /dev/null
@@ -1,5 +0,0 @@
-```java
-public void addGranularOption(final String partnerName,
- final String key,
- final String value)
-```
diff --git a/src/code-snippets/android/signatures/ADJThirdPartySharing/addPartnerSharingSetting.mdx b/src/code-snippets/android/signatures/ADJThirdPartySharing/addPartnerSharingSetting.mdx
deleted file mode 100644
index 2c7f9b7e6c..0000000000
--- a/src/code-snippets/android/signatures/ADJThirdPartySharing/addPartnerSharingSetting.mdx
+++ /dev/null
@@ -1,5 +0,0 @@
-```java
-public void addPartnerSharingSetting(final String partnerName,
- final String key,
- final boolean value)
-```
diff --git a/src/code-snippets/android/signatures/ADJThirdPartySharing/constructor.mdx b/src/code-snippets/android/signatures/ADJThirdPartySharing/constructor.mdx
deleted file mode 100644
index 256829448b..0000000000
--- a/src/code-snippets/android/signatures/ADJThirdPartySharing/constructor.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public AdjustThirdPartySharing(final Boolean isEnabled)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/addSessionCallbackParameter.mdx b/src/code-snippets/android/signatures/Adjust/addSessionCallbackParameter.mdx
deleted file mode 100644
index 10ad808f7c..0000000000
--- a/src/code-snippets/android/signatures/Adjust/addSessionCallbackParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void addSessionCallbackParameter(String key, String value)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/addSessionPartnerParameter.mdx b/src/code-snippets/android/signatures/Adjust/addSessionPartnerParameter.mdx
deleted file mode 100644
index a0afd8b1a0..0000000000
--- a/src/code-snippets/android/signatures/Adjust/addSessionPartnerParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void addSessionPartnerParameter(String key, String value)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/adid.mdx b/src/code-snippets/android/signatures/Adjust/adid.mdx
deleted file mode 100644
index ae7b84a914..0000000000
--- a/src/code-snippets/android/signatures/Adjust/adid.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static String getAdid()
-```
diff --git a/src/code-snippets/android/signatures/Adjust/appWillOpenUrl.mdx b/src/code-snippets/android/signatures/Adjust/appWillOpenUrl.mdx
deleted file mode 100644
index edab3bd92f..0000000000
--- a/src/code-snippets/android/signatures/Adjust/appWillOpenUrl.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void appWillOpenUrl(Uri url, Context context)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/attribution.mdx b/src/code-snippets/android/signatures/Adjust/attribution.mdx
deleted file mode 100644
index d03ad8583c..0000000000
--- a/src/code-snippets/android/signatures/Adjust/attribution.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static AdjustAttribution getAttribution()
-```
diff --git a/src/code-snippets/android/signatures/Adjust/disableThirdPartySharing.mdx b/src/code-snippets/android/signatures/Adjust/disableThirdPartySharing.mdx
deleted file mode 100644
index f84e05c9b3..0000000000
--- a/src/code-snippets/android/signatures/Adjust/disableThirdPartySharing.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void disableThirdPartySharing(final Context context)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/gdprForgetMe.mdx b/src/code-snippets/android/signatures/Adjust/gdprForgetMe.mdx
deleted file mode 100644
index d3cf0ff061..0000000000
--- a/src/code-snippets/android/signatures/Adjust/gdprForgetMe.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void gdprForgetMe(final Context context)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/getAmazonAdId.mdx b/src/code-snippets/android/signatures/Adjust/getAmazonAdId.mdx
deleted file mode 100644
index 5c3995a5e6..0000000000
--- a/src/code-snippets/android/signatures/Adjust/getAmazonAdId.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static String getAmazonAdId(final Context context)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/getGoogleAdId.mdx b/src/code-snippets/android/signatures/Adjust/getGoogleAdId.mdx
deleted file mode 100644
index bfb3160198..0000000000
--- a/src/code-snippets/android/signatures/Adjust/getGoogleAdId.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void getGoogleAdId(Context context, OnDeviceIdsRead onDeviceIdRead)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/isEnabled.mdx b/src/code-snippets/android/signatures/Adjust/isEnabled.mdx
deleted file mode 100644
index 280285a135..0000000000
--- a/src/code-snippets/android/signatures/Adjust/isEnabled.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static boolean isEnabled()
-```
diff --git a/src/code-snippets/android/signatures/Adjust/removeSessionCallbackParameter.mdx b/src/code-snippets/android/signatures/Adjust/removeSessionCallbackParameter.mdx
deleted file mode 100644
index c5d4eda7d2..0000000000
--- a/src/code-snippets/android/signatures/Adjust/removeSessionCallbackParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void removeSessionCallbackParameter(String key)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/removeSessionPartnerParameter.mdx b/src/code-snippets/android/signatures/Adjust/removeSessionPartnerParameter.mdx
deleted file mode 100644
index 98232cdc37..0000000000
--- a/src/code-snippets/android/signatures/Adjust/removeSessionPartnerParameter.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void removeSessionPartnerParameter(String key)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/resetSessionCallbackParameters.mdx b/src/code-snippets/android/signatures/Adjust/resetSessionCallbackParameters.mdx
deleted file mode 100644
index c6de7891eb..0000000000
--- a/src/code-snippets/android/signatures/Adjust/resetSessionCallbackParameters.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void resetSessionCallbackParameters()
-```
diff --git a/src/code-snippets/android/signatures/Adjust/resetSessionPartnerParameters.mdx b/src/code-snippets/android/signatures/Adjust/resetSessionPartnerParameters.mdx
deleted file mode 100644
index b25251c6d9..0000000000
--- a/src/code-snippets/android/signatures/Adjust/resetSessionPartnerParameters.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void resetSessionPartnerParameters()
-```
diff --git a/src/code-snippets/android/signatures/Adjust/sendFirstPackages.mdx b/src/code-snippets/android/signatures/Adjust/sendFirstPackages.mdx
deleted file mode 100644
index 59f6425694..0000000000
--- a/src/code-snippets/android/signatures/Adjust/sendFirstPackages.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void sendFirstPackages()
-```
diff --git a/src/code-snippets/android/signatures/Adjust/setEnabled.mdx b/src/code-snippets/android/signatures/Adjust/setEnabled.mdx
deleted file mode 100644
index 08014411f4..0000000000
--- a/src/code-snippets/android/signatures/Adjust/setEnabled.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void setEnabled(boolean enabled)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/setOfflineMode.mdx b/src/code-snippets/android/signatures/Adjust/setOfflineMode.mdx
deleted file mode 100644
index 86e76d39c3..0000000000
--- a/src/code-snippets/android/signatures/Adjust/setOfflineMode.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void setOfflineMode(boolean enabled)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/setPushToken.mdx b/src/code-snippets/android/signatures/Adjust/setPushToken.mdx
deleted file mode 100644
index fdb5d4548c..0000000000
--- a/src/code-snippets/android/signatures/Adjust/setPushToken.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void setPushToken(final String token, final Context context)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/trackAdRevenue.mdx b/src/code-snippets/android/signatures/Adjust/trackAdRevenue.mdx
deleted file mode 100644
index 5ceeab0700..0000000000
--- a/src/code-snippets/android/signatures/Adjust/trackAdRevenue.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void trackAdRevenue(AdjustAdRevenue adRevenue)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/trackEvent.mdx b/src/code-snippets/android/signatures/Adjust/trackEvent.mdx
deleted file mode 100644
index 16f336fba2..0000000000
--- a/src/code-snippets/android/signatures/Adjust/trackEvent.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void trackEvent(AdjustEvent event)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/trackMeasurementConsent.mdx b/src/code-snippets/android/signatures/Adjust/trackMeasurementConsent.mdx
deleted file mode 100644
index a0682d8ab6..0000000000
--- a/src/code-snippets/android/signatures/Adjust/trackMeasurementConsent.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void trackMeasurementConsent(final boolean consentMeasurement)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/trackPlayStoreSubscription.mdx b/src/code-snippets/android/signatures/Adjust/trackPlayStoreSubscription.mdx
deleted file mode 100644
index 7609cb1d68..0000000000
--- a/src/code-snippets/android/signatures/Adjust/trackPlayStoreSubscription.mdx
+++ /dev/null
@@ -1,3 +0,0 @@
-```java
-public static void trackPlayStoreSubscription(final AdjustPlayStoreSubscription subscription)
-```
diff --git a/src/code-snippets/android/signatures/Adjust/trackThirdPartySharing.mdx b/src/code-snippets/android/signatures/Adjust/trackThirdPartySharing.mdx
deleted file mode 100644
index 86778c6e57..0000000000
--- a/src/code-snippets/android/signatures/Adjust/trackThirdPartySharing.mdx
+++ /dev/null
@@ -1,4 +0,0 @@
-```java
-public static void trackThirdPartySharing(
- final AdjustThirdPartySharing adjustThirdPartySharing)
-```
diff --git a/src/content/docs/sdk/android/reference/adjadrevenue.mdx b/src/content/docs/sdk/android/reference/adjadrevenue.mdx
deleted file mode 100644
index eead262c5f..0000000000
--- a/src/content/docs/sdk/android/reference/adjadrevenue.mdx
+++ /dev/null
@@ -1,269 +0,0 @@
----
-title: AdjustAdRevenue class
-description: Use this class to store ad revenue information.
-category-title: AdjustAdRevenue class
-slug: en/sdk/android/reference/adjadrevenue
----
-
-Use this class to store ad revenue information.
-
-
-
-## Constructor
-
-Instantiates an ad revenue object initialized with an external ad revenue source.
-
-
-
-import ConstructorSig from "@android-signatures/ADJAdRevenue/constructor.mdx";
-
-
-
-
-
-
-
-import Constructor from "@android-examples/ADJAdRevenue/constructor.mdx";
-
-
-
-
-
-
-
-`source` (String): The source of the ad revenue.
-
-
-
-| Parameter | Source |
-| --------------------------------------------- | ----------------- |
-| `AdjustConfig.AD_REVENUE_APPLOVIN_MAX` | AppLovin MAX |
-| `AdjustConfig.AD_REVENUE_MOPUB` | Mopub |
-| `AdjustConfig.AD_REVENUE_ADMOB` | AdMob |
-| `AdjustConfig.AD_REVENUE_IRONSOURCE` | ironSource |
-| `AdjustConfig.AD_REVENUE_ADMOST` | AdMost |
-| `AdjustConfig.AD_REVENUE_UNITY` | Unity |
-| `AdjustConfig.AD_REVENUE_HELIUM_CHARTBOOST` | Helium Chartboost |
-| `AdjustConfig.AD_REVENUE_SOURCE_PUBLISHER` | Generic source |
-
-
-
-
-
-
-
-
-
-## setRevenue
-
-Set the revenue amount associated with the ad revenue object.
-
-
-
-import SetRevenueSig from "@android-signatures/ADJAdRevenue/setRevenue.mdx"
-
-
-
-
-
-
-
-import SetRevenue from "@android-examples/ADJAdRevenue/setRevenue.mdx"
-
-
-
-
-
-
-
-`revenue` (Double): The amount of currency units associated with the ad
-
-`currency` (String): The 3 character [ISO 4217 code](https://www.iban.com/currency-codes) of the currency unit
-
-
-
-
-
-
-
-## setAdImpressionsCount
-
-Sets the number of impressions received for an ad.
-
-
-
-import SetAdImpressionsCountSig from "@android-signatures/ADJAdRevenue/setAdImpressionsCount.mdx"
-
-
-
-
-
-
-
-import SetAdImpressionsCount from "@android-examples/ADJAdRevenue/setAdImpressionsCount.mdx"
-
-
-
-
-
-
-
-`adImpressionsCount` (Integer): The number of impressions associated with the ad
-
-
-
-
-
-
-
-## setAdRevenueNetwork
-
-Sets the network associated with the ad revenue.
-
-
-
-import SetAdRevenueNetworkSig from "@android-signatures/ADJAdRevenue/setAdRevenueNetwork.mdx"
-
-
-
-
-
-
-
-import SetAdRevenueNetwork from "@android-examples/ADJAdRevenue/setAdRevenueNetwork.mdx"
-
-
-
-
-
-
-
-`adRevenueNetwork` (String): The network associated with the ad revenue.
-
-
-
-
-
-
-
-## setAdRevenueUnit
-
-Sets the ad unit ID associated with the ad revenue.
-
-
-
-import SetAdRevenueUnitSig from "@android-signatures/ADJAdRevenue/setAdRevenueUnit.mdx"
-
-
-
-
-
-
-
-import SetAdRevenueUnit from "@android-examples/ADJAdRevenue/setAdRevenueUnit.mdx"
-
-
-
-
-
-
-
-`adRevenueUnit` (String): The ad unit ID associated with the ad revenue
-
-
-
-
-
-
-
-## setAdRevenuePlacement
-
-Sets the placement of the ad associated with the ad revenue.
-
-
-
-import SetAdRevenuePlacementSig from "@android-signatures/ADJAdRevenue/setAdRevenuePlacement.mdx"
-
-
-
-
-
-
-
-import SetAdRevenuePlacement from "@android-examples/ADJAdRevenue/setAdRevenuePlacement.mdx"
-
-
-
-
-
-
-
-`adRevenuePlacement` (String): The placement of the ad associated with the revenue
-
-
-
-
-
-
-
-## addCallbackParameter
-
-Adds key-value callback parameters to the ad revenue object. You can add multiple parameters by calling this method multiple times.
-
-
-
-import AddCallbackParameterSig from "@android-signatures/ADJAdRevenue/addCallbackParameter.mdx"
-
-
-
-
-
-
-
-import AddCallbackParameter from "@android-examples/ADJAdRevenue/addCallbackParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
-
-
-
-## addPartnerParameter
-
-Adds key-value partner parameters to the ad revenue object. You can add multiple parameters by calling this method multiple times.
-
-
-
-import AddPartnerParameterSig from "@android-signatures/ADJAdRevenue/addPartnerParameter.mdx"
-
-
-
-
-
-
-
-import AddPartnerParameter from "@android-examples/ADJAdRevenue/addPartnerParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjattribution.mdx b/src/content/docs/sdk/android/reference/adjattribution.mdx
deleted file mode 100644
index e0baa7a1b2..0000000000
--- a/src/content/docs/sdk/android/reference/adjattribution.mdx
+++ /dev/null
@@ -1,44 +0,0 @@
----
-title: AdjustAttribution class
-description: Use this class to see attribution information.
-category-title: AdjustAttribution class
-slug: en/sdk/android/reference/adjattribution
----
-
-import Attribution from "@android-signatures/Adjust/attribution.mdx";
-import SetNeedsCost from "@android-signatures/ADJConfig/setNeedsCost.mdx";
-
-The `AdjustAttribution` class contains details about the current attribution status of the device.
-
-## Properties
-
-The following properties can be accessed by calling the `attribution` method. Any values that aren't populated for the user are returned as a null value.
-
-
-
-The following values can only be accessed if the `needsCost` property on your `AdjustConfig` instance is `true`:
-
-- `costType`
-- `costAmount`
-- `costCurrency`
-
-
-
-
-
-| Values | Data type | Description |
-| -------------- | --------- | -------------------------------------------------------------------------------------------------------------- |
-| `trackerToken` | String | The token of the tracker to which the device is currently attributed |
-| `trackerName` | String | The name of the tracker to which the device is currently attributed |
-| `network` | String | The name of the network to which the device is currently attributed |
-| `campaign` | String | The name of the campaign to which the device is currently attributed |
-| `adgroup` | String | The name of the adgroup to which the device is currently attributed |
-| `creative` | String | The name of the creative to which the device is currently attributed |
-| `clickLabel` | String | The [click label](https://help.adjust.com/en/article/user-rewards) that the install is tagged with |
-| `adid` | String | The unique Adjust ID assigned to the device |
-| `costType` | String | The campaign pricing model (for example cpi) |
-| `costAmount` | Number | The cost of the install. |
-| `costCurrency` | String | The [3 character ISO 4217 code](https://www.iban.com/currency-codes) of the currency associated with the cost. |
-| `fbInstallReferrer` | String | The [Facebook install referrer](https://developers.facebook.com/docs/app-ads/install-referrer/). |
-
-
diff --git a/src/content/docs/sdk/android/reference/adjconfig/index.mdx b/src/content/docs/sdk/android/reference/adjconfig/index.mdx
deleted file mode 100644
index d0dad1a113..0000000000
--- a/src/content/docs/sdk/android/reference/adjconfig/index.mdx
+++ /dev/null
@@ -1,53 +0,0 @@
----
-title: AdjustConfig class
-description: Use the methods in this class to set up the Adjust SDK.
-category-title: AdjustConfig class
-slug: en/sdk/android/reference/adjconfig
----
-
-Use the methods in this class to set up the Adjust SDK.
-
-
-
-
-The methods in this class must be called **before** you initialize the SDK.
-
-
-
-
-
-Instantiate the configuration object with your Adjust app token.
-
-
-
-import ConstructorSig from "@android-signatures/ADJConfig/constructor.mdx"
-
-
-
-
-
-
-
-import Constructor from "@android-examples/ADJConfig/constructor.mdx"
-
-
-
-
-
-
-
-`appToken` (String): Your Adjust app token.
-
-`environment` (String): The environment your app is running in.
-
-`allowSuppressLogLevel` (Boolean): Whether to allow all logging to be suppressed.
-
-
-
-
-
-`config` (AdjustConfig): A config object initialized with the provided params.
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjconfig/privacy.mdx b/src/content/docs/sdk/android/reference/adjconfig/privacy.mdx
deleted file mode 100644
index 791d4f35af..0000000000
--- a/src/content/docs/sdk/android/reference/adjconfig/privacy.mdx
+++ /dev/null
@@ -1,112 +0,0 @@
----
-title: Privacy methods
-description: Use the methods in this class to set up privacy in the Adjust SDK.
-slug: en/sdk/android/reference/adjconfig/privacy
-sidebar-position: 1
----
-
-Use the methods in this class to set up privacy in the Adjust SDK.
-
-
-
-## setUrlStrategy
-
-Sets the country or region of data residency. If called with a `URL_STRATEGY` parameter, sets the country/region where data will be sent preferentially.
-
-
-
-import SetUrlStrategySig from "@android-signatures/ADJConfig/setUrlStrategy.mdx";
-
-
-
-
-
-
-
-import SetUrlStrategy from "@android-examples/ADJConfig/setUrlStrategy.mdx";
-
-
-
-
-
-
-
-`urlStrategy` (String): The data residency target
-
-
-
-| Value | Description |
-| -------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
-| `AdjustConfig.DATA_RESIDENCY_EU` | Sets the area of data residency to the EU |
-| `AdjustConfig.DATA_RESIDENCY_TR` | Sets the area of data residency to Turkey |
-| `AdjustConfig.DATA_RESIDENCY_US` | Sets the area of data residency to the USA |
-| `URL_STRATEGY_CHINA` | Points the URL strategy to the `app.adjust.world` domain |
-| `URL_STRATEGY_CN` | Points the URL strategy to the `app.adjust.cn` domain |
-| `URL_STRATEGY_CN_ONLY` | Points the URL strategy to the `app.adjust.cn` domain but **doesn't** fall back to another domain if the request fails. |
-| `URL_STRATEGY_INDIA` | Points the URL strategy to the `app.adjust.net.in` domain |
-
-
-
-
-
-
-
-
-
-## setCoppaCompliantEnabled
-
-Enable COPPA (Children's Online Privacy Protection Act) compliance in your app.
-
-
-
-import SetCoppaCompliantEnabledSig from "@android-signatures/ADJConfig/setCoppaCompliantEnabled.mdx";
-
-
-
-
-
-
-
-import SetCoppaCompliantEnabled from "@android-examples/ADJConfig/setCoppaCompliantEnabled.mdx";
-
-
-
-
-
-
-
-`coppaCompliantEnabled` (boolean): Whether the app should be COPPA compliant
-
-
-
-
-
-
-
-## setPlayStoreKidsAppEnabled
-
-Marks your app as a Kids App and disables reading device information.
-
-
-
-import SetPlayStoreKidsAppEnabledSig from "@android-signatures/ADJConfig/setPlayStoreKidsAppEnabled.mdx";
-
-
-
-
-
-
-
-import SetPlayStoreKidsAppEnabled from "@android-examples/ADJConfig/setPlayStoreKidsAppEnabled.mdx";
-
-
-
-
-
-
-
-`playStoreKidsAppEnabled` (boolean): Whether the app is a Kids app
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjconfig/setup.mdx b/src/content/docs/sdk/android/reference/adjconfig/setup.mdx
deleted file mode 100644
index 2389344d2c..0000000000
--- a/src/content/docs/sdk/android/reference/adjconfig/setup.mdx
+++ /dev/null
@@ -1,484 +0,0 @@
----
-title: Setup methods
-description: Configure these properties to set up the Adjust SDK.
-slug: en/sdk/android/reference/adjconfig/setup
-sidebar-position: 1
----
-
-Configure these properties to set up the Adjust SDK.
-
-
-
-## setLogLevel
-
-Set the verbosity of logs you want to receive from the Adjust SDK.
-
-
-
-import SetLogLevelSig from "@android-signatures/ADJConfig/setLogLevel.mdx";
-
-
-
-
-
-
-
-import SetLogLevel from "@android-examples/ADJConfig/setLogLevel.mdx";
-
-
-
-
-
-
-
-`logLevel` (LogLevel): The level of logging output by the SDK.
-
-
-
-| Log level | Description |
-| --------------------- | --------------------------------------------- |
-| `LogLevel.VERBOSE` | Enable all logging |
-| `LogLevel.DEBUG` | Enable debug logging |
-| `LogLevel.INFO` | Only show info level logging (default option) |
-| `LogLevel.WARN` | Disable informational warnings |
-| `LogLevel.ERROR` | Disable warning level logging and below |
-| `LogLevel.ASSERT` | Disable error level logging and below |
-| `LogLevel.SUPPRESS` | Suppress all logging |
-
-
-
-
-
-
-
-
-
-## setDefaultTracker
-
-Sets a default token to record installs against.
-
-
-
-import SetDefaultTrackerSig from "@android-signatures/ADJConfig/setDefaultTracker.mdx"
-
-
-
-
-
-
-
-import SetDefaultTracker from "@android-examples/ADJConfig/setDefaultTracker.mdx"
-
-
-
-
-
-
-
-`defaultTracker` (String): The token to which all preinstalled sessions are attributed.
-
-
-
-
-
-
-
-## setDelayStart
-
-Sets a delay before the SDK starts to allow data to load before session information is sent to Adjust's servers.
-
-
-
-You can delay the start of the SDK by up to **10 seconds**.
-
-
-
-
-
-import SetDelayStartSig from "@android-signatures/ADJConfig/setDelayStart.mdx"
-
-
-
-
-
-
-
-import SetDelayStart from "@android-examples/ADJConfig/setDelayStart.mdx"
-
-
-
-
-
-
-
-`delayStart` (double): The time (in seconds) to delay the start of the SDK by.
-
-
-
-
-
-
-
-## setExternalDeviceId
-
-Sets an external device identifier for reporting purposes.
-
-
-
-import SetExternalDeviceIdSig from "@android-signatures/ADJConfig/setExternalDeviceId.mdx"
-
-
-
-
-
-
-
-import SetExternalDeviceId from "@android-examples/ADJConfig/setExternalDeviceId.mdx"
-
-
-
-
-
-
-
-`externalDeviceId` (String): The external device ID associated with the device.
-
-
-
-
-
-
-
-## setEventBufferingEnabled
-
-Sets event buffering. If enabled, the SDK stores events on the device and sends all requests once per minute.
-
-
-
-import SetEventBufferingEnabledSig from "@android-signatures/ADJConfig/setEventBufferingEnabled.mdx"
-
-
-
-
-
-
-
-import SetEventBufferingEnabled from "@android-examples/ADJConfig/setEventBufferingEnabled.mdx"
-
-
-
-
-
-
-
-`eventBufferingEnabled` (Boolean): Whether event buffering is enabled.
-
-
-
-
-
-
-
-## setSendInBackground
-
-Sets whether the SDK should send data while the app is running in the background.
-
-
-
-import SetSendInBackgroundSig from "@android-signatures/ADJConfig/setSendInBackground.mdx"
-
-
-
-
-
-
-
-import SetSendInBackground from "@android-examples/ADJConfig/setSendInBackground.mdx"
-
-
-
-
-
-
-
-`sendInBackground` (boolean): Whether the SDK should send information to Adjust when the app is running in the background.
-
-
-
-
-
-
-
-## setPreinstallTrackingEnabled
-
-Enables or disables preinstall tracking.
-
-
-
-import SetPreinstallTrackingEnabledSig from "@android-signatures/ADJConfig/setPreinstallTrackingEnabled.mdx"
-
-
-
-
-
-
-
-import SetPreinstallTrackingEnabled from "@android-examples/ADJConfig/setPreinstallTrackingEnabled.mdx"
-
-
-
-
-
-
-
-`preinstallTrackingEnabled` (boolean): Whether preinstall tracking is enabled.
-
-
-
-
-
-
-
-## setPreinstallFilePath
-
-Defines a relative path where preinstall information is available. This directory must be world-readable.
-
-
-
-import SetPreinstallFilePathSig from "@android-signatures/ADJConfig/setPreinstallFilePath.mdx"
-
-
-
-
-
-
-
-import SetPreinstallFilePath from "@android-examples/ADJConfig/setPreinstallFilePath.mdx"
-
-
-
-
-
-
-
-`preinstallFilePath` (String): The path where the preinstall information is written.
-
-
-
-
-
-
-
-## setOnAttributionChangedListener
-
-Sets a delegate function that fires when a user's attribution information updates
-
-
-
-import SetOnAttributionChangedListenerSig from "@android-signatures/ADJConfig/setOnAttributionChangedListener.mdx"
-
-
-
-
-
-
-
-import SetOnAttributionChangedListener from "@android-examples/ADJConfig/setOnAttributionChangedListener.mdx"
-
-
-
-
-
-
-
-`onAttributionChangedListener` (OnAttributionChangedListener): The delegate function that the SDK calls when a the user's attribution information changes.
-
-
-
-
-
-### setOnAttributionChangedListener for Facebook example
-
-import SetOnAttributionChangedListenerFacebook from "@android-examples/ADJConfig/setOnAttributionChangedListenerFacebook.mdx"
-
-
-
-
-
-## setNeedsCost
-
-Sets whether the SDK should gather cost data. This is accessible in the user's attribution information.
-
-
-
-import SetNeedsCostSig from "@android-signatures/ADJConfig/setNeedsCost.mdx"
-
-
-
-
-
-
-
-import SetNeedsCost from "@android-examples/ADJConfig/setNeedsCost.mdx"
-
-
-
-
-
-
-
-`needsCost` (boolean): Whether the SDK should gather cost data
-
-
-
-
-
-
-
-## setOnSessionTrackingSucceededListener
-
-Sets up a success callback to trigger a function when the SDK records a session.
-
-
-
-import SetOnSessionTrackingSucceededListenerSig from "@android-signatures/ADJConfig/setOnSessionTrackingSucceededListener.mdx"
-
-
-
-
-
-
-
-import SetOnSessionTrackingSucceededListener from "@android-examples/ADJConfig/setOnSessionTrackingSucceededListener.mdx"
-
-
-
-
-
-
-
-`onSessionTrackingSucceededListener` (OnSessionTrackingSucceededListener): The function to launch when the SDK successfully records a session
-
-
-
-
-
-
-
-## setOnSessionTrackingFailedListener
-
-Sets up a callback to trigger a function when the SDK fails to record a session.
-
-
-
-import SetOnSessionTrackingFailedListenerSig from "@android-signatures/ADJConfig/setOnSessionTrackingFailedListener.mdx"
-
-
-
-
-
-
-
-import SetOnSessionTrackingFailedListener from "@android-examples/ADJConfig/setOnSessionTrackingFailedListener.mdx"
-
-
-
-
-
-
-
-`onSessionTrackingFailedListener` (OnSessionTrackingFailedListener): The function to launch when the SDK fails to record a session
-
-
-
-
-
-
-
-## setOnEventTrackingSucceededListener
-
-Sets up a success callback to trigger a function when the SDK records an event.
-
-
-
-import SetOnEventTrackingSucceededListenerSig from "@android-signatures/ADJConfig/setOnEventTrackingSucceededListener.mdx"
-
-
-
-
-
-
-
-import SetOnEventTrackingSucceededListener from "@android-examples/ADJConfig/setOnEventTrackingSucceededListener.mdx"
-
-
-
-
-
-
-
-`onEventTrackingSucceededListener` (OnEventTrackingSucceededListener): The function to launch when the SDK successfully records an event
-
-
-
-
-
-
-
-## setOnEventTrackingFailedListener
-
-Sets up a callback to trigger a function when the SDK fails to record an event.
-
-
-
-import SetOnEventTrackingFailedListenerSig from "@android-signatures/ADJConfig/setOnEventTrackingFailedListener.mdx"
-
-
-
-
-
-
-
-import SetOnEventTrackingFailedListener from "@android-examples/ADJConfig/setOnEventTrackingFailedListener.mdx"
-
-
-
-
-
-
-
-`onEventTrackingFailedListener` (OnEventTrackingFailedListener): The function to launch when the SDK fails to record an event
-
-
-
-
-
-
-
-## setOnDeeplinkResponseListener
-
-Sets up a callback to trigger a function when the SDK receives a deferred deep link.
-
-
-
-import SetOnDeeplinkResponseListenerSig from "@android-signatures/ADJConfig/setOnDeeplinkResponseListener.mdx"
-
-
-
-
-
-
-
-import SetOnDeeplinkResponseListener from "@android-examples/ADJConfig/setOnDeeplinkResponseListener.mdx"
-
-
-
-
-
-
-
-`onDeeplinkResponseListener` (OnDeeplinkResponseListener): The function to launch when the SDK receives a deferred deep link
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjevent.mdx b/src/content/docs/sdk/android/reference/adjevent.mdx
deleted file mode 100644
index d7e85cb04a..0000000000
--- a/src/content/docs/sdk/android/reference/adjevent.mdx
+++ /dev/null
@@ -1,198 +0,0 @@
----
-title: AdjustEvent class
-description: Record information about events to send to Adjust.
-category-title: AdjustEvent class
-slug: en/sdk/android/reference/adjevent
----
-
-import TrackEvent from "@android-signatures/Adjust/trackEvent.mdx"
-
-This class contains information about events triggered in your application. You can send this information to Adjust's servers by passing an `AdjustEvent` object to the `trackEvent` method.
-
-
-
-## Constructor
-
-Instantiates an event object with an Adjust event token.
-
-
-
-import ConstructorSig from "@android-signatures/ADJEvent/constructor.mdx"
-
-
-
-
-
-
-
-import Constructor from "@android-examples/ADJEvent/constructor.mdx"
-
-
-
-
-
-
-
-`eventToken` (String): A six-character Adjust event token.
-
-
-
-
-
-
-
-## setRevenue
-
-Sets the revenue and currency associated with an event.
-
-
-
-import SetRevenueSig from "@android-signatures/ADJEvent/setRevenue.mdx"
-
-
-
-
-
-
-
-import SetRevenue from "@android-examples/ADJEvent/setRevenue.mdx"
-
-
-
-
-
-
-
-`amount` (double): The amount of currency units associated with the event.
-
-`currency` (String): The 3 character [ISO 4217 code](https://www.iban.com/currency-codes) of the currency unit.
-
-
-
-
-
-
-
-## setCallbackId
-
-Sets a custom identifier for your event object. Adjust's servers can report on this identifier in event callbacks.
-
-
-
-import SetCallbackIdSig from "@android-signatures/ADJEvent/setCallbackId.mdx"
-
-
-
-
-
-
-
-import SetCallbackId from "@android-examples/ADJEvent/setCallbackId.mdx"
-
-
-
-
-
-
-
-`callbackId` (String): A custom identifier for your event object
-
-
-
-
-
-
-
-## addCallbackParameter
-
-Adds key-value information to send to your callback URL. You can add multiple parameters by calling this method multiple times.
-
-Event callback parameters override session callback parameters that have the same key.
-
-
-
-import AddCallbackParameterSig from "@android-signatures/ADJEvent/addCallbackParameter.mdx"
-
-
-
-
-
-
-
-import AddCallbackParameter from "@android-examples/ADJEvent/addCallbackParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
-
-
-
-## addPartnerParameter
-
-Adds key-value information to share with partners. You can add multiple parameters by calling this method multiple times.
-
-
-
-import AddPartnerParameterSig from "@android-signatures/ADJEvent/addPartnerParameter.mdx"
-
-
-
-
-
-
-
-import AddPartnerParameter from "@android-examples/ADJEvent/addPartnerParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
-
-
-
-## setOrderId
-
-Sets a deduplication ID on your event to avoid recording duplicates. The SDK stores the last ten identifiers and skips revenue events with duplicate IDs.
-
-
-
-import SetOrderIdSig from "@android-signatures/ADJEvent/setOrderId.mdx"
-
-
-
-
-
-
-
-import SetOrderId from "@android-examples/ADJEvent/setOrderId.mdx"
-
-
-
-
-
-
-
-`orderId` (String): A unique identifier used to deduplicate events
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjplaystoresubscription.mdx b/src/content/docs/sdk/android/reference/adjplaystoresubscription.mdx
deleted file mode 100644
index d902bd93c3..0000000000
--- a/src/content/docs/sdk/android/reference/adjplaystoresubscription.mdx
+++ /dev/null
@@ -1,145 +0,0 @@
----
-title: AdjustPlayStoreSubscription class
-description: Use this class to store Play Store subscription information to Adjust.
-category-title: AdjustPlayStoreSubscription class
-slug: en/sdk/android/reference/adjplaystoresubscription
----
-
-import TrackPlayStoreSubscription from "@android-signatures/Adjust/trackPlayStoreSubscription.mdx"
-
-Use this class to store Play Store subscription information. You can pass this to Adjust's servers using the `trackPlayStoreSubscription` method.
-
-
-
-## Constructor
-
-Instantiates a Play Store subscription object with key information.
-
-
-
-import ConstructorSig from "@android-signatures/ADJPlayStoreSubscription/constructor.mdx"
-
-
-
-
-
-
-
-import Constructor from "@android-examples/ADJPlayStoreSubscription/constructor.mdx"
-
-
-
-
-
-
-
-`price` (long): The price of the subscription
-
-`currency` (String): The 3 character [ISO 4217 code](https://www.iban.com/currency-codes) of the currency unit.
-
-`sku` (String): The ID of the product
-
-`orderId` (String): The ID of the transaction
-
-`signature` (String): The signature of the purchase data
-
-`purchaseToken` (String): The unique token of the transaction. See [Google's documentation](https://developer.android.com/reference/com/android/billingclient/api/Purchase#getPurchaseToken()) for more information
-:type purchaseToken: String
-
-
-
-
-
-
-
-## setPurchaseTime
-
-Sets the date of the transaction in the subscription object.
-
-
-
-import SetPurchaseTimeSig from "@android-signatures/ADJPlayStoreSubscription/setPurchaseTime.mdx"
-
-
-
-
-
-
-
-import SetPurchaseTime from "@android-examples/ADJPlayStoreSubscription/setPurchaseTime.mdx"
-
-
-
-
-
-
-
-`purchaseTime` (long): The date on which the subscription was purchased.
-
-
-
-
-
-
-
-## addCallbackParameter
-
-Adds key-value information to send to your callback URL. You can add multiple parameters by calling this method multiple times.
-
-
-
-import AddCallbackParameterSig from "@android-signatures/ADJPlayStoreSubscription/addCallbackParameter.mdx"
-
-
-
-
-
-
-
-import AddCallbackParameter from "@android-examples/ADJPlayStoreSubscription/addCallbackParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
-
-
-
-## addPartnerParameter
-
-Adds key-value information to share with partners. You can add multiple parameters by calling this method multiple times.
-
-
-
-import AddPartnerParameterSig from "@android-signatures/ADJPlayStoreSubscription/addPartnerParameter.mdx"
-
-
-
-
-
-
-
-import AddPartnerParameter from "@android-examples/ADJPlayStoreSubscription/addPartnerParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjthirdpartysharing.mdx b/src/content/docs/sdk/android/reference/adjthirdpartysharing.mdx
deleted file mode 100644
index 58ffc5c9ed..0000000000
--- a/src/content/docs/sdk/android/reference/adjthirdpartysharing.mdx
+++ /dev/null
@@ -1,147 +0,0 @@
----
-title: AdjustThirdPartySharing class
-description: Use this class to communicate a user's third party sharing preferences.
-category-title: AdjustThirdPartySharing class
-slug: en/sdk/android/reference/adjthirdpartysharing
----
-
-import TrackThirdPartySharing from "@android-signatures/Adjust/trackThirdPartySharing.mdx"
-
-Use this class to communicate a user's third party sharing preferences. Send this information to Adjust's servers using the `trackThirdPartySharing` method.
-
-
-
-## Constructor
-
-Creates a third party sharing object initialized with a **boolean** value.
-
-
-
-import ConstructorSig from "@android-signatures/ADJThirdPartySharing/constructor.mdx"
-
-
-
-
-
-
-
-import AdjustThirdPartySharingTrue from "@android-examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledTrue.mdx";
-
-
-
-
-
-
-
-import AdjustThirdPartySharingFalse from "@android-examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledFalse.mdx";
-
-
-
-
-
-
-
-`isEnabled` (Boolean): A nullable boolean value
-
-
-
-
-
-
-
-## addGranularOption
-
-Adds additional key-value pairs of information to share with third parties. You can add multiple parameters by calling this method multiple times.
-
-
-
-import AddGranularOptionSig from "@android-signatures/ADJThirdPartySharing/addGranularOption.mdx"
-
-
-
-
-
-
-
-import AddGranularOption from "@android-examples/ADJThirdPartySharing/addGranularOption.mdx";
-
-
-
-You can use this method to toggle Facebook data processing options.
-
-import Facebook from "@android-examples/ADJThirdPartySharing/addGranularOptionFacebook.mdx";
-
-
-
-
-
-| Parameter | Description |
-| --------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
-| `partner_name` | Use `facebook` to toggle LDU. |
-| `data_processing_options_country` | The country in which the user is located.- `0`: Request that Facebook use geolocation.
- `1`: United States of America.
|
-| `data_processing_options_state` | Notifies Facebook in which state the user is located.- `0`: Request that Facebook use geolocation.
- `1000`: California.
|
-
-
-
-
-
-
-
-`partnerName` (String): The name of the partner you want to share information with
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
-
-
-
-## addPartnerSharingSetting
-
-Adds additional key-value pairs of settings to share with third parties. You can add multiple settings by calling this method multiple times.
-
-
-
-import AddPartnerSharingSettingSig from "@android-signatures/ADJThirdPartySharing/addPartnerSharingSetting.mdx";
-
-
-
-
-
-
-
-import AddPartnerSharingSetting from "@android-examples/ADJThirdPartySharing/addPartnerSharingSetting.mdx";
-
-
-
-
-
-
-
-`partnerName` (String): The name of the partner whose settings you want to update. See the table of available partners below
-`key` (String): The setting you want to update
-`value` (boolean): Whether the setting is enabled
-
-
-
-| Partner name | String value |
-| ----------------------- | --------------------------- |
-| AppleAds | `apple_ads` |
-| Facebook | `facebook` |
-| GoogleAds | `adwords` |
-| GoogleMarketingPlatform | `google_marketing_platform` |
-| Snapchat | `snapchat` |
-| Tencent | `tencent` |
-| TikTokSan | `tiktok_san` |
-| Twitter | `twitter` |
-| YahooGemini | `yahoo_gemini` |
-| YahooJapanSearch | `yahoo_japan_search` |
-
-
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjust/config.mdx b/src/content/docs/sdk/android/reference/adjust/config.mdx
deleted file mode 100644
index e8dfb47e3f..0000000000
--- a/src/content/docs/sdk/android/reference/adjust/config.mdx
+++ /dev/null
@@ -1,193 +0,0 @@
----
-title: Configuration methods
-description: Use these methods to update the Adjust SDK's configuration.
-slug: en/sdk/android/reference/adjust/config
-sidebar-position: 1
----
-
-Use these methods to update the Adjust SDK's configuration.
-
-
-
-## setEnabled
-
-Enable or disable the Adjust SDK. The SDK doesn't send any information while disabled.
-
-
-
-import SetEnabledSig from "@android-signatures/Adjust/setEnabled.mdx"
-
-
-
-
-
-
-
-import SetEnabled from "@android-examples/Adjust/setEnabled.mdx"
-
-
-
-
-
-
-
-`enabled` (boolean): Whether the SDK is enabled
-
-
-
-
-
-
-
-## isEnabled
-
-Call this method to check whether the Adjust SDK is enabled.
-
-
-
-import IsEnabledSig from "@android-signatures/Adjust/isEnabled.mdx"
-
-
-
-
-
-
-
-import IsEnabled from "@android-examples/Adjust/isEnabled.mdx"
-
-
-
-
-
-
-
-`enabled` (boolean): Whether the SDK is enabled
-
-
-
-
-
-
-
-## setOfflineMode
-
-Controls whether the SDK is in offline mode. When in offline mode, the SDK queues all events in a file until offline mode is disabled. When offline mode is disabled, the SDK sends all queued events.
-
-
-
-import SetOfflineModeSig from "@android-signatures/Adjust/setOfflineMode.mdx"
-
-
-
-
-
-
-
-import SetOfflineMode from "@android-examples/Adjust/setOfflineMode.mdx"
-
-
-
-
-
-
-
-`enabled` (boolean): Whether the SDK is in offline mode
-
-
-
-
-
-
-
-## setPushToken
-
-Set your [push token](https://help.adjust.com/en/article/push-notifications) to record [uninstalls and reattributions](https://help.adjust.com/en/article/uninstalls-reinstalls). You can update this value at any time.
-
-
-
-import SetPushTokenSig from "@android-signatures/Adjust/setPushToken.mdx"
-
-
-
-
-
-
-
-import SetPushToken from "@android-examples/Adjust/setPushToken.mdx"
-
-
-
-
-
-
-
-`pushToken` (String): Your push token
-
-`context` (Context): The [context](https://developer.android.com/reference/android/content/Context) the method is being called in
-
-
-
-
-
-
-
-
-## sendFirstPackages
-
-
-
-This method has an effect only if you delay the start of the Adjust SDK.
-
-
-
-The Adjust SDK sends information to Adjust's servers as soon as it starts. If you delay the start of the SDK, you can use this method to send packages before the delay ends.
-
-
-
-import SendFirstPackagesSig from "@android-signatures/Adjust/sendFirstPackages.mdx"
-
-
-
-
-
-
-
-import SendFirstPackages from "@android-examples/Adjust/sendFirstPackages.mdx"
-
-
-
-
-
-
-
-
-
-## appWillOpenUrl
-
-Processes URLs to extract deep link information.
-
-
-
-import AppWillOpenUrlSig from "@android-signatures/Adjust/appWillOpenUrl.mdx"
-
-
-
-
-
-
-
-import AppWillOpenUrl from "@android-examples/Adjust/appWillOpenUrl.mdx"
-
-
-
-
-
-
-
-`url` (Uri): The URL to extract deep link information
-
-`context` (Context): The [context](https://developer.android.com/reference/android/content/Context) the method is being called in
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjust/device-info.mdx b/src/content/docs/sdk/android/reference/adjust/device-info.mdx
deleted file mode 100644
index a7d0b6d9d2..0000000000
--- a/src/content/docs/sdk/android/reference/adjust/device-info.mdx
+++ /dev/null
@@ -1,112 +0,0 @@
----
-title: Device information methods
-description: Use these methods to retrieve device information.
-slug: en/sdk/android/reference/adjust/device-info
-sidebar-position: 2
----
-
-Use these methods to retrieve device information.
-
-
-
-## getAdid
-
-
-
-The ADID is available only after the install has been recorded.
-
-
-
-Returns the ADID (Adjust Device ID) associated with the device.
-
-
-
-import AdidSig from "@android-signatures/Adjust/adid.mdx"
-
-
-
-
-
-
-
-import Adid from "@android-examples/Adjust/adid.mdx"
-
-
-
-
-
-
-
-`adid` (String): The Adjust identifier associated with the device
-
-
-
-
-
-
-
-## getAmazonAdId
-
-Returns the Amazon Ad ID (Amazon Advertising ID) associated with the device.
-
-
-
-import GetAmazonAdIdSig from "@android-signatures/Adjust/getAmazonAdId.mdx"
-
-
-
-
-
-
-
-import GetAmazonAdId from "@android-examples/Adjust/getAmazonAdId.mdx"
-
-
-
-
-
-
-
-`context` (Context): The [context](https://developer.android.com/reference/android/content/Context) the method is being called in.
-
-
-
-
-
-`amazonAdId` (String): The device Amazon Ad ID
-
-
-
-
-
-
-
-## getGoogleAdId
-
-Returns the GPS ADID (Google Play Services Advertising ID) associated with the device. Must be called in a background thread.
-
-
-
-import GetGoogleAdIdSig from "@android-signatures/Adjust/getGoogleAdId.mdx"
-
-
-
-
-
-
-
-import GetGoogleAdId from "@android-examples/Adjust/getGoogleAdId.mdx"
-
-
-
-
-
-
-
-`context` (Context): The [context](https://developer.android.com/reference/android/content/Context) the method is being called in.
-
-`onDeviceIdsRead` (OnDeviceIdsRead): The function called when the SDK receives the ID from the device
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjust/index.mdx b/src/content/docs/sdk/android/reference/adjust/index.mdx
deleted file mode 100644
index 3f62d5e315..0000000000
--- a/src/content/docs/sdk/android/reference/adjust/index.mdx
+++ /dev/null
@@ -1,9 +0,0 @@
----
-title: Adjust class
-description: Use the Adjust class send information about your application and users to Adjust
-category-title: Adjust class
-slug: en/sdk/android/reference/adjust
-type: category
----
-
-The Adjust class can be used to send information about your application and users to Adjust. This can be used for attribution as well as recording events for analytics.
diff --git a/src/content/docs/sdk/android/reference/adjust/privacy.mdx b/src/content/docs/sdk/android/reference/adjust/privacy.mdx
deleted file mode 100644
index fe92f37fe2..0000000000
--- a/src/content/docs/sdk/android/reference/adjust/privacy.mdx
+++ /dev/null
@@ -1,128 +0,0 @@
----
-title: Privacy methods
-description: Use these methods to handle user privacy in your app.
-slug: en/sdk/android/reference/adjust/privacy
-sidebar-position: 3
----
-
-Use these methods to handle user privacy in your app.
-
-
-
-## disableThirdPartySharing
-
-Disable sharing of information with third parties for all users.
-
-
-
-import DisableThirdPartySharingSig from "@android-signatures/Adjust/disableThirdPartySharing.mdx"
-
-
-
-
-
-
-
-import DisableThirdPartySharing from "@android-examples/Adjust/disableThirdPartySharing.mdx"
-
-
-
-
-
-
-
-`context` (Context): An optional parameter to pass the app context. Defaults to the extracted app context.
-
-
-
-
-
-
-
-## trackThirdPartySharing
-
-Disable or enable sharing of information with third parties on a per-user basis. Accepts a third party sharing object initialized with a **boolean** value.
-
-
-
-import TrackThirdPartySharingSig from "@android-signatures/Adjust/trackThirdPartySharing.mdx"
-
-
-
-
-
-
-
-import TrackThirdPartySharing from "@android-examples/Adjust/trackThirdPartySharing.mdx"
-
-
-
-
-
-
-
-`adjustThirdPartySharing` (AdjustThirdPartySharing): The third party sharing object
-
-
-
-
-
-
-
-## trackMeasurementConsent
-
-Set whether [data collection and retention rules](https://help.adjust.com/en/article/manage-data-collection-and-retention) apply to a user.
-
-
-
-import TrackMeasurementConsentSig from "@android-signatures/Adjust/trackMeasurementConsent.mdx"
-
-
-
-
-
-
-
-import TrackMeasurementConsent from "@android-examples/Adjust/trackMeasurementConsent.mdx"
-
-
-
-
-
-
-
-`consentMeasurement` (boolean): Whether data collection and retention rules apply for the user
-
-
-
-
-
-
-
-## gdprForgetMe
-
-Send an RTBF (Right To Be Forgotten) request to Adjust's servers. This erases all information about the user the source app. The SDK stops sending requests for the user.
-
-
-
-import GdprForgetMeSig from "@android-signatures/Adjust/gdprForgetMe.mdx"
-
-
-
-
-
-
-
-import GdprForgetMe from "@android-examples/Adjust/gdprForgetMe.mdx"
-
-
-
-
-
-
-
-`context` (Context): An optional parameter to pass the app context. Defaults to the extracted app context.
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/adjust/recording.mdx b/src/content/docs/sdk/android/reference/adjust/recording.mdx
deleted file mode 100644
index 435ec63f27..0000000000
--- a/src/content/docs/sdk/android/reference/adjust/recording.mdx
+++ /dev/null
@@ -1,300 +0,0 @@
----
-title: Recording methods
-description: Use these methods to send information about your app to Adjust.
-slug: en/sdk/android/reference/adjust/recording
-sidebar-position: 4
----
-
-Use these methods to send information about your app to Adjust.
-
-
-
-## trackEvent
-
-Record event information using an `AdjustEvent` object and an [Adjust event token](https://help.adjust.com/en/article/add-events#add-event).
-
-
-
-import TrackEventSig from "@android-signatures/Adjust/trackEvent.mdx"
-
-
-
-
-
-
-
-import TrackEvent from "@android-examples/Adjust/trackEvent.mdx"
-
-
-
-
-
-
-
-`event` (AdjustEvent): An event object containing the information you want to send to Adjust
-
-
-
-
-
-
-
-## addSessionCallbackParameter
-
-Adds callback parameters to send with each session recorded by the Adjust SDK. You can add extra parameters by calling on this method multiple times.
-
-
-
-import AddSessionCallbackParameterSig from "@android-signatures/Adjust/addSessionCallbackParameter.mdx"
-
-
-
-
-
-
-
-import AddSessionCallbackParameter from "@android-examples/Adjust/addSessionCallbackParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
-
-
-
-## removeSessionCallbackParameter
-
-Remove a session callback parameter.
-
-
-
-import RemoveSessionCallbackParameterSig from "@android-signatures/Adjust/removeSessionCallbackParameter.mdx"
-
-
-
-
-
-
-
-import RemoveSessionCallbackParameter from "@android-examples/Adjust/removeSessionCallbackParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key of the parameter you want to remove
-
-
-
-
-
-
-
-## resetSessionCallbackParameters
-
-Removes all session callback parameters.
-
-
-
-import ResetSessionCallbackParametersSig from "@android-signatures/Adjust/resetSessionCallbackParameters.mdx"
-
-
-
-
-
-
-
-import ResetSessionCallbackParameters from "@android-examples/Adjust/resetSessionCallbackParameters.mdx"
-
-
-
-
-
-
-
-
-
-## addSessionPartnerParameter
-
-Adds partner parameters to send with each session recorded by the Adjust SDK. You can add extra parameters by calling on this method multiple times.
-
-
-
-import AddSessionPartnerParameterSig from "@android-signatures/Adjust/addSessionPartnerParameter.mdx"
-
-
-
-
-
-
-
-import AddSessionPartnerParameter from "@android-examples/Adjust/addSessionPartnerParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key
-
-`value` (String): The data value
-
-
-
-
-
-
-
-## removeSessionPartnerParameter
-
-Remove a session partner parameter.
-
-
-
-import RemoveSessionPartnerParameterSig from "@android-signatures/Adjust/removeSessionPartnerParameter.mdx"
-
-
-
-
-
-
-
-import RemoveSessionPartnerParameter from "@android-examples/Adjust/removeSessionPartnerParameter.mdx"
-
-
-
-
-
-
-
-`key` (String): The data key of the parameter you want to remove
-
-
-
-
-
-
-
-## resetSessionPartnerParameters
-
-Removes all session partner parameters.
-
-
-
-import ResetSessionPartnerParametersSig from "@android-signatures/Adjust/resetSessionPartnerParameters.mdx"
-
-
-
-
-
-
-
-import ResetSessionPartnerParameters from "@android-examples/Adjust/resetSessionPartnerParameters.mdx"
-
-
-
-
-
-
-
-
-
-## trackAdRevenue
-
-Send ad revenue information to Adjust in an AdjustAdRevenue object.
-
-
-
-import TrackAdRevenueSig from "@android-signatures/Adjust/trackAdRevenue.mdx"
-
-
-
-
-
-
-
-import TrackAdRevenue from "@android-examples/Adjust/trackAdRevenue.mdx"
-
-
-
-
-
-
-
-`adRevenue` (AdjustAdRevenue): The ad revenue object containing the revenue details
-
-
-
-
-
-
-
-## trackPlayStoreSubscription
-
-Send subscription details to Adjust in an AdjustPlayStoreSubscription object.
-
-
-
-import TrackPlayStoreSubscriptionSig from "@android-signatures/Adjust/trackPlayStoreSubscription.mdx"
-
-
-
-
-
-
-
-import TrackPlayStoreSubscription from "@android-examples/Adjust/trackPlayStoreSubscription.mdx"
-
-
-
-
-
-
-
-`subscription` (AdjustPlayStoreSubscription): The subscription object containing the purchase details
-
-
-
-
-
-
-
-## getAttribution
-
-Fetches attribution data about the device.
-
-
-
-import AttributionSig from "@android-signatures/Adjust/attribution.mdx"
-
-
-
-
-
-
-
-import Attribution from "@android-examples/Adjust/attribution.mdx"
-
-
-
-
-
-
-
-`attribution` (AdjustAttribution): An attribution object containing attribution data associated with the device
-
-
-
-
diff --git a/src/content/docs/sdk/android/reference/index.mdx b/src/content/docs/sdk/android/reference/index.mdx
deleted file mode 100644
index ec4bff2655..0000000000
--- a/src/content/docs/sdk/android/reference/index.mdx
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: SDK reference
-description: SDK reference information for the Android SDK
-category-title: Reference
-slug: en/sdk/android/reference
-type: category
----