For a plugin with native code, you need to configure platform-specific settings in _________ files for Android and iOS respectively.

  • android_config.yaml, ios_config.yaml
  • android_manifest.xml, Info.plist
  • platform.yaml
  • pubspec.yaml
For a Flutter plugin with native code, platform-specific settings need to be configured in the android and ios directories. Specifically, in the android directory, you would typically find an android_config.yaml file, and in the ios directory, there would be an ios_config.yaml file. These files allow you to provide platform-specific configurations and settings for your plugin, ensuring proper integration with the Android and iOS platforms.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *