Fortyseven / ToneDef

ToneDef is a small, but powerful tone dialer application for Android featuring DTMF, bluebox, and redbox tone generation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

support for tel:number data scheme

opened this issue · comments

Hi, the "tel:0123456789" data scheme is used for example to embed phone number in web pages, could it be added? The intent can be matched for example as

<intent-filter>
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <action android:name="android.intent.action.VIEW" />

                <data android:scheme="tel" />
</intent-filter>

Implemented; will be in the next release!