Provide the caller id for incoming call from my own app

I just barely wrote a tutorial on how to get this working. Check it out here: https://simplenexus.dev/2019/08/27/android-caller-id.html The basics of how to get this working are: AndroidManifest.xml <provider android:name=”.callerid.CallerIDProvider” android:authorities=”@string/callerid_authority” android:readPermission=”android.permission.READ_CONTACTS” android:enabled=”true” android:exported=”true”> <meta-data android:name=”android.content.ContactDirectory” android:value=”true”/></provider> CallerIDProvider.kt private var userRepository: UserRepository? = null private val uriMatcher = UriMatcher(UriMatcher.NO_MATCH) override fun onCreate(): Boolean { context?.let { … Read more