I'm trying to use icons on my nativescript + angular app both for iOS and Android. I tried different way to set up icons, I used this tutorial, this solution and I even tried with material plugin and nativescript-ngx-fonticon.
All these methods give me this error:
Plugin nativescript-fontawesome is not included in preview app on device [device-id] and will not work.
Now, this is my current code:
mycomponent.component.html
<Button text="" class="fa" column="0"></Button>
app.css
.fa {
font-family: 'FontAwesome', fontawesome-webfont;
}
Moreover I have in my app/fonts folder the following file :
fontawesome-webfont.ttf
So, what's wrong?
Thank you