I am making use of the package "sms_maintained" which is only available for Android.
However, the project needs an iOS version and what I am doing currently is to remove the package when developing for iOS.
How can I keep the package in the pubspec.yaml file but disable iOS from checking into the package? The goal is to have a uniform codebase.
I have tried to exclude the package in the Podfile using
skip_line_start_symbols = ["#", "/","sms_maintained"]
which skips the package but during build a reference is made to GeneratedPluginRegistrant which is auto generated.
Any help will be appreciated, thanks.