Android Development
How to answer incoming call programmatically in Android
Here is example for accepting incoming calls programmatically The most stable version is using adb shell feature. Call can be answered by sending command “adb shell input keyevent 79” via Terminal Same thing can be done programmatically. But, it works good for user-driven answering and this solution good for custom Read more…