For example I would like to try out android.widget.Space. After including it in my layout like this
<Space
app:layout_constraintTop_toBottomOf="@id/theoneabove"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorPrimaryDark"/>
I get the error
Didn't find class "android.support.v7.widget.Space"
How can I work out what library and which version apart from the API version to include in my gradle dependencies?
There doesn't seem to be any pointers on the documentation page or on these pages which at least removes some of the guesswork for some other things.