Whenever I am using autoLink="all" in TextView, it is not properly autolinking the Mobile Number. It is autolinking the earlier Number(number from a text not mobile Number) as well.
Here is the layout
<TextView
    android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    android:autoLink="all"
    android:textIsSelectable="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />
The output is attached below
How to avoid that issue ?
