Menu icon is not showing in android mobile

Hello,

Developing an app using ionic. I have a issue that menu icon is showing in browser but not showing in mobile. I am using cordova to build the apk. Can anyone help me.

which icon are you using custom images or builtin icon of ionic ?

if your have using custom image icon then change image path,
like:
if existing image path is “…/…/assets/images/logo.png” change it with “./assets/images/logo.png”

I am using ionic builtin menu icon.

<ion-header>
<ion-navbar >
  <ion-title></ion-title>
  <ion-buttons end>
    <button menuToggle ion-button>
      <ion-icon name="menu"></ion-icon>
    </button>
  </ion-buttons>
</ion-navbar>
</ion-header>

Chrome Inspector can be used to debug your app on a physical Android device or emulator, just like it can be used on any web application, you can easily debug which file is missing.
Reference link blow: