访问siminfo表需要特殊权限,我怎么绕过特殊权限,拿到siminfo表里的数据呢

通过这个URI"content://telephony/siminfo",访问siminfo表需要特殊权限,我怎么绕过特殊权限,拿到siminfo表里的数据呢

Uri uri = Uri.parse("content://telephony/siminfo");
String[] projection = new String[]{"_id", "icc_id", "sim_id", "display_name", "carrier_name", "number"};
 String where = "_id = " + id;
Cursor cursor = resolver.query(uri, projection, where, null, null);

这段代码需要特殊权限才能访问。我如何绕过这个权限就能访问呢?
或者不绕过,用其他办法访问也行。

https://blog.csdn.net/cui130/article/details/80772186