7.7 C
New York
Saturday, December 2, 2023

Where is the info.plist file in Flutter?

In a Flutter project, the info.plist file locates at this path:

/ios/Runner/Info.plist

If you can’t find the ios folder or have some trouble with it, just regenerate one by running the following command in your project root directory:Advertisements

flutter create -i swift .

The info.plist file of an app is used to provide the app’s metadata to the system. The syntax in the info.plist file is similar to XML. When building iOS apps with Flutter, most of the time when you need to edit the info.plist file is when you’re using a third-party package and need special permissions (such as camera access, permission to send notifications, etc.). You can see the great detail about this file in the Apple Developer documentation.

Continue learning more new and interesting stuff about Flutter by taking a look at the following articles:

You can also take a tour around our Flutter topic page and Dart topic page to see the latest tutorials and examples.

Advertisements

Related Articles

Latest Articles