Device

Device is a static utility class that can be used to vibrate the device, or share links with other apps such as WhatsApp or other installed apps such as a notepad app.

Examples:

// Vibriere 1 mal für 1 Sekunde
Device.vibrate(1000);

// Vibriere 5 mal für 250 Millisekunden und pausiere dazwischen 4 mal für 251 Millisekunden
Device.vibrate(250, 251, 250, 251, 250, 251, 250, 251, 250);

// Öffnet ein Dialog, mit welchen der Benutzer den Link teilen kann
Device.shareUrl("https://www.rapidclipse.com/", "Share RapidClipse.com", "Check out rapidclipse.com! It is my favourite website!");