Hello,
I am trying to make a watchface, which will work for all devices and for many languages.
In order to do it I need to put some different pictures for different resolution and with different languages.
I could not find a good example or something in the documentation.
As I see when I create multilanguage project, system create some folders like
resources
resources-eng
resources-fre
resources-rus
and etc.
I have layout like this
<layout id="WatchFace">
<bitmap id="bgPicture" x="0" y="0" filename="../images/my_pic_round_watch_en.png"/>
</layout>
My question is where can I put and how can I make a relation for pictures with other languages and other devices?
In other words I need to put somewhere pictures like this
<bitmap id="bgPicture" x="0" y="0" filename="../images/my_pic_round_watch_fr.png"/>
<bitmap id="bgPicture" x="0" y="0" filename="../images/my_pic_round_watch_ru.png"/>
<bitmap id="bgPicture" x="0" y="0" filename="../images/my_pic_square_watch_en.png"/>
<bitmap id="bgPicture" x="0" y="0" filename="../images/my_pic_square_watch_fr.png"/>
<bitmap id="bgPicture" x="0" y="0" filename="../images/my_pic_square_watch_ru.png"/>
and I do not know where can I put them.