diff --git a/docs/device-connect/android.md b/docs/device-connect/android.md index a0186ff5..571dca5a 100644 --- a/docs/device-connect/android.md +++ b/docs/device-connect/android.md @@ -7,8 +7,18 @@ The DeviceConnect Android SDK enables the collection of anonymized, non-PII data ## Requirements +To use the DeviceConnect Android SDK, your project must meet the following minimum setup: -DeviceConnect Android SDK works on Android 5.0+ (API level 21+), on Java 8+ and AndroidX. In addition to the changes, enable desugaring so that our SDK can run smoothly on Android 7.0 and versions below. +- Android OS: API Level 21 (Android 5.0 Lollipop) or higher +- Java Compatibility: Java 8 (language features) +- Libraries: AndroidX support libraries are required + +::: warning NOTE +The SDK uses Java 8 language features. +For devices running Android 7.0 (API level < 26) and below, you must enable Java 8 desugaring in your project setup. +This ensures compatibility, as these devices do not natively support Java 8 features. +Desugaring is not required for devices running Android 8.0 (API level 26) and above. +:::