Data Privacy

Identification of the device

Whenever a request is sent from the library, the device ID of the handheld will be read, encrypted and the first 64 bit are transmitted.

This identifier is recalculated at each request and will not be saved.

Information obligation

The user has to be informed at some point that the application monitors the user actions and transmits them to a measuring system. Furthermore, the user must be informed that he has the possibility to switch of the tracking in the application and can contradict this way. (see: ~anja:Opt-Out)

For this purpose, please include the following text in German language in an appropriate place in your app implementation:

Unsere App nutzt den „Mobile App Sensor“ der Fa. spring GmbH & Co. KG, Saarlouis für die Ermittlung statistischer Kennwerte zur Nutzung unserer Angebote. Dabei werden anonyme Messwerte erhoben.

Diese Messung der mobilen Nutzung verwendet zur Wiedererkennung von mobilen Endgeräten die anonymisierte Kennung Ihres Endgerätes. Um sicherzustellen, dass Ihre Gerätekennung in unseren Systemen nicht eindeutig ermittelt werden kann, wird diese verschlüsselt und um die Hälfte gekürzt. Lediglich die auf diese Weise anonymisierte Gerätekennung wird als Messgrundlage herangezogen.

Diese Reichweitenmessung für mobile Werbeträger wurde unter der Beachtung des Datenschutzes entwickelt. Ziel der Messung ist es, die Nutzungsintensität, den Nutzungsumfang und die Anzahl der Nutzer einer mobile Applikation statistisch zu bestimmen. Zu keinem Zeitpunkt werden einzelne Nutzer identifiziert. Ihre Identität bleibt immer geschützt. Sie erhalten über das System keine Werbung.

Sie können der Datenverarbeitung durch unsere App durch Aktivierung folgenden Schalters widersprechen. Bitte beachten Sie, dass nur die Messung unserer App deaktiviert wird. Es kann sein, dass Sie weiterhin von anderen Anbietern unter Verwendung des „Mobile App Sensors“ gemessen werden.

Mobile App Sensor Measurement: |On/Off|

Opt-Out

The application developer has to give users the ability to stop the further tracking of the user actions. For this purpose the library offers the following methods:

/**
 * When the value <code>false</code> is specified, the sending of
 * requests to the measuring system is switched off.
 * This value is <code>true</code> by default.
 */
public void setTracking(boolean tracking) { }
/**
 * Delivers the value <code>true</code> when the tracking
 * is activated otherwise the value is <code>false</code>.
 */
public boolean isTracking() { }

A persistent saving of the opt-out decision in the library is not provided and needs to be implemented by the app developer.