没有CALL_LOG权限就无法获取Android P来电号码,并且Google不允许CALL_LOG权限。如何在Android P上获取传入号码?
@Override
public void onReceive(final Context context, final Intent intent) {
this.context = context;
realm = Realm.getDefaultInstance();
TelephonyManager telephony = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
telephony.listen(new PhoneStateListener(){
@Override
public void onCallStateChanged(int state, String incomingNumber) {
super.onCallStateChanged(state, incomingNumber);}