diff --git a/packages/device_info/android/src/main/java/io/flutter/plugins/deviceinfo/DeviceInfoPlugin.java b/packages/device_info/android/src/main/java/io/flutter/plugins/deviceinfo/DeviceInfoPlugin.java index cfad4d3efa14..3f826c009cbe 100644 --- a/packages/device_info/android/src/main/java/io/flutter/plugins/deviceinfo/DeviceInfoPlugin.java +++ b/packages/device_info/android/src/main/java/io/flutter/plugins/deviceinfo/DeviceInfoPlugin.java @@ -6,10 +6,10 @@ import android.annotation.SuppressLint; import android.app.Activity; -import android.provider.Settings; import android.os.Build; import android.os.Build.VERSION; import android.os.Build.VERSION_CODES; +import android.provider.Settings; import io.flutter.plugin.common.MethodCall; import io.flutter.plugin.common.MethodChannel; import io.flutter.plugin.common.MethodChannel.MethodCallHandler; @@ -87,9 +87,11 @@ public void onMethodCall(MethodCall call, Result result) { } /** - * Simple call to get the android hardware device Id that is unique between the device + user and app signing. - * This key will change if the app is uninstalled or its data is cleared. Device factory reset will also result in a value change - * @return + * Simple call to get the android hardware device Id that is unique between the device + user and + * app signing. This key will change if the app is uninstalled or its data is cleared. Device + * factory reset will also result in a value change + * + * @return The device ID */ @SuppressLint("HardwareIds") private String getDeviceId() {