> For the complete documentation index, see [llms.txt](https://docs.drivequant.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.drivequant.com/driver-data/user-interface/android/my-synthesis.md).

# My Synthesis

My synthesis screen contains two very interesting insights for the driver:

* His level against a reference scale that tells him whether he needs to make efforts and progress ;
* His level in regard to the performance of other drivers belonging to the same organisation as him. The comparison is an interesting lever to motivate the driver to improve his driving.

For each selectable period, the driver will be able to view his average score computed by services that run on the DriveQuant platform.

The user can easily navigate to consult:

* The evolution of his driving scores by theme compared to the previous active period ;&#x20;
* His driving score compared to the community thanks to the minimal, median and max community scores ;
* How many trips and total distance he made during the selected period.

<figure><img src="/files/hu9bcQbom5BodD9Mfmg7" alt=""><figcaption></figcaption></figure>

​​To display the “My Synthesis” screen into your app, call the following method:

{% tabs %}
{% tab title="Kotlin" %}

```kotlin
DriveKitNavigationController.driverDataUIEntryPoint?.startMySynthesisActivity(context)
```

{% endtab %}

{% tab title="Java" %}

```java
DriveKitNavigationController.INSTANCE.getDriverDataUIEntryPoint().startMySynthesisActivity(context);
```

{% endtab %}
{% endtabs %}

## Configure scores themes to display

You can select which scores you want to display on the screen as well as the scores ordering, by calling the following method:

{% tabs %}
{% tab title="DriverKitUI" %}

```kotlin
var scores: List<DKScoreType> = DKScoreType.values().toList()
```

{% endtab %}
{% endtabs %}

Default and accepted values are:

```
[SAFETY, ECO_DRIVING, DISTRACTION, SPEEDING]
```

{% hint style="warning" %}
For `DISTRACTION` and `SPEEDING` scores, make sure that the services are activated on your DriveQuant account or the SDK will filter them out and they will not be displayed in the UI even if you add them here.
{% endhint %}


---

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

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

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

```
GET https://docs.drivequant.com/driver-data/user-interface/android/my-synthesis.md?ask=<question>&goal=<endgoal>
```

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

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

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