hope you are doing well, basically I want save the value unique id for device which is non-resettable Is it possible to get IMEI, Serial number for above android 11? I want to use it within organization. App won't be uploaded on play store. Is there any workaround for it?
and also you can suggest me the solution for how to find uniqueness in each devices.
thank you!
I am trying multiple solution for this but tired to get any solution for fetch the MAC Address,IME and Serail Number.
Android has become increasingly restrictive in providing access to certain device identifiers like IMEI and serial number for privacy and security reasons.
Device Fingerprinting is something we can do. We can create a device fingerprint by collecting various device attributes such as device model, OS version, Build ID (a unique identifier for the software build running on the device. It includes information about the Android version and build date.), and available sensors. This can provide a reasonably unique identifier for each device within your organization.
Here is the code
activity_main.xml
MainActivity.java
Add these permissions to the manifest
You can find the code here as well: My GitHub
I hope it helps!