Skip to content Skip to sidebar Skip to footer

How Do I Add Itelephony.aidl To Eclipse?

This is no doubt a very simple question, but unfortunately I have looked around and haven't found a solution. I would like to import ITelephony.aidl so that I can use import com.a

Solution 1:

You can download ITelephony.aidl from here and Create com/android/internal/telephony package in your project src and copy past downloaded ITelephony.AIDL with in com/android/internal/telephony in your package as ITelephony.AIDL

for more information Blocking Incoming call

Solution 2:

It is not a public API you have to include it yourself from here. For further reference check this answer.

Solution 3:

  1. Download the ITelephony.java file from here
  2. Create the folder structure src/com/android/internal/telephony and copy the above ITelephony.java file into this folder.
  3. Now import the com.android.internal.telephony.ITelephony class into your project.

Cheers!!! Chanaka

Post a Comment for "How Do I Add Itelephony.aidl To Eclipse?"