this is a great question. silk doesn't provide anything built-in today, so every dev will do their o

this is a great question. silk doesn't provide anything built-in today, so every dev will do their own thing. you could use embedded resources if you only have a few small assets, but otherwise you'll probably want to use
AndroidAsset
:
<ItemGroup>
    <AndroidAsset Include="Assets\sound.mp3" />
</ItemGroup>


these can be accessed using AssetManager
Was this page helpful?