I'm writing an app using Framework7 and I need some material icons. I added in the html file the path for the material icons provided by them:
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Then i called icons using the tag:
<i class="material-icons">icon_name_here</i>
Well, when I load the app in the pc browser icons are correctly rendered, but when I upload the code to Adobe PhoneGap that builds the .apk, when I install it on a device and run it the app loads but the icons are not rendered, instead I read their names.
What do I can do to solve the prob? Thank guys!