Hi,
I am using FileChooser from ionic-native
I have just started my project, so there isn’t much code
But my file chooser is not giving even a file browser in my Android Emulator of Nexus 5X
This is my HTML file, which is binded to chooseFile event which has filechooser:
<ion-button (click)="chooseFile()">
Choose file
</ion-button>
Inside my TS file, the chooseFile is defined as:
chooseFile(){
this.fileChooser.open()
.then(uri => alert(uri))
.catch(e => alert(e));
}
Which produces the result as shown:
When the button is clicked it produces such an Alert message:
Is there anything I did wrong?