I am just stuck.
I wanted to Download MP3 file to my app.
I am able to download the same in browser while working on it,
As we know, there we need to provide WRITE_EXTERNAL_STORAGE permission.
To do so what I did is as below-
- Opened
platforms/android/AndroidManifest.xml added
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
But its not working for me. Let me share my Machine Setup-cli packages: (/usr/local/lib/node_modules)
@ionic/cli-utils : 1.12.0 ionic (Ionic CLI) : 3.12.0global packages:
cordova (Cordova CLI) : 7.0.1local packages:
@ionic/app-scripts : 2.1.4 Cordova Platforms : android 6.2.3 ios 4.4.0 Ionic Framework : ionic-angular 3.6.0I try for this https://ionicframework.com/docs/native/android-permissions/
Also try https://github.com/dpa99c/cordova-custom-config-example/blob/master/config.xml
There is a way for cordova and another way to provide permissions How do I add "uses-permissions" tags to AndroidManifest.xml for a Cordova project? I am unable to write it.
Help me plz...