SERIAL ID device identifier in android 1.6

How can I get the serial number at API level 3?

+4
source share
2 answers
TelephonyManager manager = (TelephonyManager) yourActivity.getSystemService(Context.TELEPHONY_SERVICE); String uid = manager.getDeviceId(); 

This works from API level 1.

+2
source

Depending on what you want to do, there are several options:

More on the topic: http://android-developers.blogspot.com/2011/03/identifying-app-installations.html

+3
source

Source: https://habr.com/ru/post/1346523/


All Articles