- get about user device information from app
import android.os.Build fun getDeviceDetails(): Map<String, String> { return mapOf( "Brand" to Build.BRAND, "Manufacturer" to Build.MANUFACTURER, "Model" to Build.MODEL, "Device" to Build.DEVICE, "Product" to Build.PRODUCT, "Hardware" to Build.HARDWARE, "SDK Version" to Build.VERSION.SDK_INT.toString(), "Release Version" to Build.VERSION.RELEASE, "Display Version" to Build.DISPLAY ) }