I figured it out how to use this native plugin. this is what I tried.
Installed the Plugin as mentioned in this ionic doc
then in my app.component.ts file
import { AndroidPermissions } from '@ionic-native/android-permissions';
constructor(platform: Platform, androidPermissions: AndroidPermissions) {
platform.ready().then(() => {
androidPermissions.requestPermissions(
[
androidPermissions.PERMISSION.CAMERA,
androidPermissions.PERMISSION.CALL_PHONE,
androidPermissions.PERMISSION.GET_ACCOUNTS,
androidPermissions.PERMISSION.READ_EXTERNAL_STORAGE,
androidPermissions.PERMISSION.WRITE_EXTERNAL_STORAGE
]
);
})
}
I hope this will help someone. Thanks.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…