Is it possible to have a notification that shows a different text (content title and content text) in the Android wear device and in the mobile device?
Not at the moment. However, you can achieve this effect in the following way:
setLocalOnly(true)DataItem using a DataAPI that describes the notification and changed textDataItem, post the notification with different text, again setting setLocalOnly(true)setDeleteIntent so you know, when there are dismissedDataItem from point 2.DataItem gets deleted, you will receive a callback; delete the remaining notificationThere might be some corner cases here I don't see immediately, but the general approach should allow you to achieve what you want.