I have a parent project and a local subproject that has been added to the parent project like this
<code>- parent
- packages/subproject
</code>
<code>- parent
- packages/subproject
</code>
- parent
- packages/subproject
this subproject has some assets inside it that have been added like this
<code>- packages/subproject/lib/assets/icons
</code>
<code>- packages/subproject/lib/assets/icons
</code>
- packages/subproject/lib/assets/icons
and this is subproject pubspec.yaml
<code>assets:
- packages/messaging_core/assets/icons/
</code>
<code>assets:
- packages/messaging_core/assets/icons/
</code>
assets:
- packages/messaging_core/assets/icons/
and I also call the icons like this path
<code>packages/messaging_core/assets/icons/copy.svg
</code>
<code>packages/messaging_core/assets/icons/copy.svg
</code>
packages/messaging_core/assets/icons/copy.svg
but I cant see the icons in local package in my app
however if I send this to github and import it from there everything would be fine.
any idea what is wrong?