Hi there, my Tile is showing fine on my watch but ...
# compose-wear
n
Hi there, my Tile is showing fine on my watch but on my phone it appears as a black circle that says "hello world!" on it. I can't find where to change this. Any ideas?
a
On your phone?
Can you share screenshots/code?
n
Sure
The one called Peek News
a
Is it your preview image in android manifest?
n
No, In my manifest I can see my logo
Where does this "Hello World!" image come from?
a
Is there another service in your manifest except the peek one?
n
Copy code
<service
            android:name=".tile.MainTileService"
            android:exported="true"
            android:label="@string/tile_label"
            android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER">
            <intent-filter>
                <action android:name="androidx.wear.tiles.action.BIND_TILE_PROVIDER" />
            </intent-filter>

            <meta-data
                android:name="androidx.wear.tiles.PREVIEW"
                android:resource="@drawable/tile_preview" />
        </service>
This is my tile service
I have others but they might not be relevant here.
a
I wonder if it's a cache issue. Did the tile ever start with "hello world!"
n
Could be, I was wondering the same. Yes, it was always this "hello world" one.
Maybe I should just reboot my watch?
a
Could you save the screenies on the companion app and also the tile preview on the watch? (For a bug report) and then try uninstalling and reinstalling it?
Yeah reboot first sounds good (after screenies)
n
ok will do. Shall I post them here?
a
On issue tracker please, then link here 🙂
n
ok thanks!
I tried again tonight and it worked so I am not sure about the bug tracker. Maybe something was off at my end...