Problem With Rejecting Incoming Call
I try to reject incoming call bu this code: private void ignoreCallAidl(Context context) { try { tm = (TelephonyManager) context.getSystemServi
Solution 1:
I had the same problem, but I have solved it.
It's because you have proguarded the ITelephony from ITelephony.aidl
. You have to filter it in the proguard.cfg
file.
Solution 2:
Solution 3:
Follow these steps
- Download the ITelephony.aidl from android source repository.
- Rename the ITelephony.aidl to ITelephony.java
- put this file in your project src directory as /src/android/internal/telephony/ITelephony.java
It will work.
Post a Comment for "Problem With Rejecting Incoming Call"