Hello Harika,
with MABS 7.1 released, a new feature was added, to handle iOS Descriptions! I believe this new feature can tackle your problem.
You can simply add a new preference to the extensibilities of your Application, and this should add the proper description for the permission you choose, in your final ipa. Example:
{
"preferences": {
"ios": [
{
"name": "NSCameraUsageDescription",
"value": "This application needs access to the Camera because yada yada yada!"
},
{
"name": "NSPhotoLibraryUsageDescription",
"value": "This application needs access to your Photo Library because yada yada yada!"
}
]
}
}
Using this feature and setting the descriptions through the Extensibility of the app should override the descriptions that were set in any plugin of the application (when they are in conflict).
You can check details about the feature in the release notes of MABS 7.1.
Please let me know if this fixed your problem or if the notes/instructions are not clear!
Cheers.