Android解决设备ID获取异常 java.lang.SecurityException: getDeviceId: The user 10612 does not meet the require

问题还原

今天搭建一个新的项目采用了compileSdkVersion 为29的开发版本,同时也targetSdkVersion调整为29,在调用设备ID时发生闪退的异常,查看日志如下:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.smart.artifact.sdk/com.smart.artifact.sdk.MainActivity}: java.lang.SecurityException: getDeviceId: The user 10612 does not meet the requirements to access device identifiers.
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3308)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3457)
        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2044)
        at android.os.Handler.dispatchMessage(Handler.java:107)
        at android.os.Looper.loop(Looper.java:223)
        at android.app.ActivityThread.main(ActivityThread.java:7562)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:539)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:950)
     Caused by: java.lang.SecurityException: getDeviceId: The user 10612 does not meet the requirements to access device identifiers.
        at android.os.Parcel.createException(Parcel.java:2074)
        at android.os.Parcel.readException(Parcel.java:2042)
        at android.os.Parcel.readException(Parcel.java:1990)
        at com.android.internal.telephony.ITelephony$Stub$Proxy.getDeviceId(ITelephony.java:10389)
        at android.telephony.TelephonyManager.getDeviceId(TelephonyManager.java:1631)

 定位错误位置发现是在获取设备ID时引发异常闪退,我的设备ID获取代码如下:

TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
            if (tm!=null) {
                if (TextUtils.isEmpty(tm.getDeviceId())==false)
                    deviceId= tm.getDeviceId();
                 else
                    deviceId= Settings.Secure.getString(context.getApplicationContext().getContentResolver(),
                            Settings.Secure.ANDROID_ID);
            }
            else
                deviceId= Settings.Secure.getString(context.getApplicationContext().getContentResolver(),
                        Settings.Secure.ANDROID_ID);

 这里我用不同版本的手机获取设备ID号结果是不一样的,在小于Android10的低版本设备上用这段代码获取设备ID是不会发生上述异常,但是在Android10及以上版本用这段代码获取设备ID是会发生闪退异常,百度搜索相关资料后发现,Android在10以后的版本通过TelephonyManager 获取设备ID需要应用必须具有READ_PRIVILEGED_PHONE_STATE特权,才能访问设备的不可重置标识符,包括IMEI和序列号,否则将会引发系统安全异常并闪退。
这里解释一下READ_PRIVILEGED_PHONE_STATE这个权限,这个叫读取特权电话权限,添加方式和大部分权限一样,但是需要注意的是必须是系统应用才可以添加这个权限,所以大部分第三方应用都无法成功添加这个权限。

 受此影响,在Android10以及之后的版本想通上述代码获取设备ID或者IMEI号都无法实现,这里我们总结一下具体有哪些API无法调用
,参考Google官方文档如下:

Build
getSerial()

TelephonyManager
getImei()
getDeviceId()
getMeid()
getSimSerialNumber()
getSubscriberId()

解决问题
这里看了一下网上的解决方案,有人说将targetSdkVersion降为28就可以了,事实上降为28后确实不会闪退了,但是也带了一些问题,首先,如果你的项目中用到了很多29的API后,你降为28就需要手动去调整这些代码模块,这花点时间到也不难,问题的关键是在Android10以及以上版本的设备中tm.getDeviceId()获取的值还是为空,原因之前讲过了,这是谷歌的限制,降为28只是说我们Android10的设备上调用的SDK版本为28的API,这样避免的闪退。这里我们在来解释一下minSdkVersion、compileSdkVersion、targetSdkVersion三个版本代表什么?

1. minSdkVersion
这是代表开发的应用最低支持的手机系统的版本号,如果手机系统的版本号低于minSdkVersion则会使用不了。

2. compileSdkVersion
这个表示当前开发编译使用的SDK版本号,比如compileSdkVersion 29表示我们可以使用SDK 29中的API和相应的方法属性。

3. targetSdkVersion
这个表示系统目标兼容版本号,怎么理解了?我们从两个方面去理解,首先是高版本的手机运行低版本的SDK,比如你的手机是Android 10(SDK 29) ,而targetSdkVersion设置为20,则在设备上调用的还是SDK 20的API特性,这里就解释了在Android 10的手机上当我targetSdkVersion降为28为什么不会发生闪退的原因了,因为调用的是SDK 28的API,即使是同一个方法名称,但是版本的处理是不一样的。其次是,在低版本上运行高版本的SDK,比如在Android8(SDK 27) 上设置targetSdkVersion设置为29,这个是时候就需要去处理相关兼容的问题,比如f( Build.VERSION.SDK_INT<29){…}else{…}。 

那么到最后我贴出我的解决方案如下:

public static String getDeviceId(Context context) {
        String deviceId="";
        try {
        if(Build.VERSION.SDK_INT<29) {
            TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
            if (tm!=null) {
                if (TextUtils.isEmpty(tm.getDeviceId())==false)
                    deviceId= tm.getDeviceId();
                 else
                    deviceId= Settings.Secure.getString(context.getApplicationContext().getContentResolver(),
                            Settings.Secure.ANDROID_ID);
            }
            else
                deviceId= Settings.Secure.getString(context.getApplicationContext().getContentResolver(),
                        Settings.Secure.ANDROID_ID);
        }
        else
            deviceId=Settings.Secure.getString(context.getApplicationContext().getContentResolver(),
                    Settings.Secure.ANDROID_ID);
        }catch (Exception e)
        {e.printStackTrace();}
       return deviceId;
    }

Android 10以后的版本我将用Settings.Secure.getString(context.getApplicationContext().getContentResolver(),
Settings.Secure.ANDROID_ID)代替。

你可能感兴趣的:(Android,android)