Created
October 13, 2020 07:19
-
-
Save maheshj01/f62456214b2e4ba60bd65b4ce22d8161 to your computer and use it in GitHub Desktop.
flutter gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Miscellaneous | |
*.class | |
*.log | |
*.pyc | |
*.swp | |
.DS_Store | |
.atom/ | |
.buildlog/ | |
.history | |
.svn/ | |
# IntelliJ related | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
# The .vscode folder contains launch configuration and tasks you configure in | |
# VS Code which you may wish to be included in version control, so this line | |
# is commented out by default. | |
#.vscode/ | |
# Flutter/Dart/Pub related | |
**/doc/api/ | |
**/ios/Flutter/.last_build_id | |
.dart_tool/ | |
.flutter-plugins | |
.flutter-plugins-dependencies | |
.packages | |
.pubspec.lock | |
.pub-cache/ | |
.pub/ | |
/build/ | |
/android/gradle/gradle-wrapper.jar | |
/android/.gradle | |
/android/captures/ | |
/android/gradlew | |
/android/gradlew.bat | |
/android/local.properties | |
/android/GeneratedPluginRegistrant.java | |
# Remember to never publicly share your keystore. | |
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app | |
/android/key.properties | |
# Web related | |
lib/generated_plugin_registrant.dart | |
# Symbolication related | |
app.*.symbols | |
# Obfuscation related | |
app.*.map.json | |
# Exceptions to above rules. | |
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment