Reputation: 13
Ours is android calling and SMS app. Need our app to be shown option in the "Connected Apps" list of the android's default contact app like Whatsapp, Truecaller and Teligram etc. As shown in the image. tried with ContentProvider and SyncAdapter. But couldn't to achieve. Please help me if you have any idea on this. Thank you in advance
// Tried with ContentProvider and SyncAdapter
<intent-filter>
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="tel" />
</intent-filter>
Upvotes: 0
Views: 85