TileView is a subclass of android.view.ViewGroup that asynchronously displays, pans and zooms tile-based images. Plugins are available for features like markers, hotspots, and path drawing.
There appears to be an incompatibility with the new Android BoxInsetLayout:
android.support.wear.widget.BoxInsetLayout
According to the Android documentation, I am supposed to include the following statement in my module grade build file in order to use the BoxInsetLayout:
compile 'com.android.support:wear:26.0.0'
When I do that, I get the error:
"All com.android.support libraries must use the exact same version specification"
If I then remove the tile view library from the gradle file, the error disappears.
I am currently using the "padding" attribute as a workaround.
There appears to be an incompatibility with the new Android BoxInsetLayout:
android.support.wear.widget.BoxInsetLayout
According to the Android documentation, I am supposed to include the following statement in my module grade build file in order to use the BoxInsetLayout:
compile 'com.android.support:wear:26.0.0'
When I do that, I get the error:
"All com.android.support libraries must use the exact same version specification"
If I then remove the tile view library from the gradle file, the error disappears.
I am currently using the "padding" attribute as a workaround.