Skip to content

Commit

Permalink
Fix broken tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sporiff committed Feb 21, 2024
1 parent b2602e3 commit 16c6b4e
Show file tree
Hide file tree
Showing 24 changed files with 62 additions and 186 deletions.
4 changes: 1 addition & 3 deletions src/content/docs/sdk/android/integrations/admob.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ To use this feature, you need to first reach out to your Google representative a
## Examples

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
AdRequest adRequest = new AdRequest.Builder().build();
Expand Down
4 changes: 1 addition & 3 deletions src/content/docs/sdk/android/integrations/applovin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ If you have any questions about ad revenue tracking with AppLovin MAX, please co
## Examples

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
@Override
Expand Down
4 changes: 1 addition & 3 deletions src/content/docs/sdk/android/integrations/batch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ To integrate Adjust with the Batch.com SDK, you need to send attribution to the
You can set the callback method like this:

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
AdjustConfig config = new AdjustConfig(this, appToken, environment);
Expand Down
4 changes: 1 addition & 3 deletions src/content/docs/sdk/android/integrations/helium.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ If you want to measure ad revenue with the Helium by Chartboost SDK, you can use
## Example

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
public void ilrdObserver (final HeliumImpressionData impData) {
Expand Down
4 changes: 1 addition & 3 deletions src/content/docs/sdk/android/integrations/ironsource.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ If you have any questions about ad revenue measurement with ironSource, please c
## Example

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
public void onImpressionSuccess (ImpressionData impressionData) {
Expand Down
4 changes: 1 addition & 3 deletions src/content/docs/sdk/android/integrations/mixpanel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ You should send this information after receiving a response from Adjust's server
Modify your callback method to use the Mixpanel API like this:

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
public class YourApplicationClass extends Application {
Expand Down
4 changes: 1 addition & 3 deletions src/content/docs/sdk/android/integrations/unity.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ For more information, see the Unity [Mediation API](https://docs.unity.com/media
## Examples

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
// implement an impression listener
Expand Down
60 changes: 15 additions & 45 deletions src/content/docs/sdk/android/plugins/criteo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ Once you have set up your environment, you can start recording Criteo events wit
### View listing

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -49,9 +47,7 @@ Adjust.trackEvent(event);
### View product

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -67,9 +63,7 @@ Adjust.trackEvent(event);
### Cart

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -90,9 +84,7 @@ Adjust.trackEvent(event);
### Transaction confirmed

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -113,9 +105,7 @@ Adjust.trackEvent(event);
### User level

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -131,9 +121,7 @@ Adjust.trackEvent(event);
### User status

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -149,9 +137,7 @@ Adjust.trackEvent(event);
### Achievement unlocked

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -168,9 +154,7 @@ Adjust.trackEvent(event);
### Custom event

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -186,9 +170,7 @@ Adjust.trackEvent(event);
### Custom event 2

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -206,9 +188,7 @@ Adjust.trackEvent(event);
You can attach a hashed email to every Criteo event. To do this, call the `injectHashedEmailIntoCriteoEvents` method. The SDK will send a hashed email with every Criteo event throughout the app lifecycle. This means it will need to be set again when the app is re-launched. You can remove the hashed email by setting the `injectHashedEmailIntoCriteoEvents` value to `nil`.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -226,9 +206,7 @@ You can attach a check-in and check-out date to every Criteo event. To do this,
You can remove the search dates by setting the `injectViewSearchDatesIntoCriteoEvent` values to `nil`.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -246,9 +224,7 @@ You can attach a partner ID to every Criteo event. To do this, call the `injectP
You can remove the partner ID by setting the `injectPartnerIdIntoCriteoEvents` value to null.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -264,9 +240,7 @@ AdjustCriteo.injectPartnerIdIntoCriteoEvents("{CriteoPartnerId}");
You can add deep link information to Criteo events. To do this, call the `injectDeeplinkIntoEvent` method with the event and URL.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -293,9 +267,7 @@ You can attach a customer ID to every Criteo event. To do this, call the `inject
You can remove the customer ID by setting the `injectCustomerIdIntoCriteoEvents` value to nil.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand All @@ -313,9 +285,7 @@ You can attach the user segment to every Criteo event. To do this, call the `inj
You can remove the user segment by setting the `injectUserSegmentIntoCriteoEvents` value to nil.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
import com.adjust.sdk.plugin.AdjustCriteo;
Expand Down
8 changes: 2 additions & 6 deletions src/content/docs/sdk/android/plugins/imei-plugin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ The IMEI and MEID are persistent identifiers. You are responsible for ensuring t
Once you have set up the plugin, you can gather the device's IMEI and MEID. To do this, call the `AdjustImei.readImeie` method before starting the Adjust SDK.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
AdjustImei.readImei();
Expand All @@ -79,9 +77,7 @@ Adjust.onCreate(config);
If you want to prevent the SDK from reading the IMEI and MEID, call the `AdjustImei.doNotReadImei` method.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
AdjustImei.doNotReadImei();
Expand Down
8 changes: 2 additions & 6 deletions src/content/docs/sdk/android/plugins/oaid-plugin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,7 @@ If you are adding the MSA SDK AAR as a dependency, add the following rules:
Once you have set up the plugin, you can gather the device's OAID. To do this, call the `AdjustOaid.readOaid(applicationContext)` method before starting the Adjust SDK.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
AdjustOaid.readOaid(applicationContext);
Expand All @@ -141,9 +139,7 @@ Adjust.onCreate(config);
If you want to prevent the SDK from reading the OAID, call the `AdjustOaid.doNotReadOaid()` method.

<Tabs>
<Tab>

### Java
<Tab title="Java">

```java
AdjustOaid.doNotReadOaid();
Expand Down
Loading

0 comments on commit 16c6b4e

Please sign in to comment.