Skip to content

Instantly share code, notes, and snippets.

View bbcsolution's full-sized avatar
🌎
Working from Office

S.N BHAWANI bbcsolution

🌎
Working from Office
View GitHub Profile
@gavelez
gavelez / AndroidManifest.xml
Created April 20, 2020 16:10
How to detect call state Android
<receiver android:name=".CallReceiver" >
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter>
</receiver>