Hi, I'm developing an application which is almost finished. My application uses an "intent-filter" (manifest.xml) that makes my app appear in the app selection list when the user makes a call from the dialer, the menu has title: "Complete action using...". The "intent-filter" works perfectly in Android 4.1 and worked perfectly in Android 4.2.2 too, but it no longer works(?) I guess Google updated Android 4.2.2...
I've tested my app in 3 different 4.2.2 devices and I get the same response in all 3 devices...
I use this code, which works in Android 4.1 and used to work in Android 4.2.2:
Does anyone know what happened? Does anyone know how to make it work? Thanks!!!
I've tested my app in 3 different 4.2.2 devices and I get the same response in all 3 devices...
I use this code, which works in Android 4.1 and used to work in Android 4.2.2:
Code:
<intent-filter>
<action android:name="android.intent.action.CALL" />
<categoryandroid:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.CALL_PRIVILEGED" />
<data android:scheme="tel" />
</intent-filter>
Does anyone know what happened? Does anyone know how to make it work? Thanks!!!