Created
May 24, 2020 05:26
-
-
Save aryzae/2b2c051d4ea3f296175a29870b591125 to your computer and use it in GitHub Desktop.
.gitignore For Flutter
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
@@ -0,0 +1,72 @@ | |
# Miscellaneous | |
*.class | |
*.lock | |
*.log | |
*.pyc | |
*.swp | |
.DS_Store | |
.atom/ | |
.buildlog/ | |
.history | |
.svn/ | |
# IntelliJ related | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
# Visual Studio Code related | |
.vscode/ | |
# Flutter/Dart/Pub related | |
**/doc/api/ | |
.dart_tool/ | |
.flutter-plugins | |
.packages | |
.pub-cache/ | |
.pub/ | |
build/ | |
# Android related | |
**/android/**/gradle-wrapper.jar | |
**/android/.gradle | |
**/android/captures/ | |
**/android/gradlew | |
**/android/gradlew.bat | |
**/android/local.properties | |
**/android/**/GeneratedPluginRegistrant.java | |
# iOS/XCode related | |
**/ios/Flutter/flutter_export_environment.sh | |
**/ios/**/*.mode1v3 | |
**/ios/**/*.mode2v3 | |
**/ios/**/*.moved-aside | |
**/ios/**/*.pbxuser | |
**/ios/**/*.perspectivev3 | |
**/ios/**/*sync/ | |
**/ios/**/.sconsign.dblite | |
**/ios/**/.tags* | |
**/ios/**/.vagrant/ | |
**/ios/**/DerivedData/ | |
**/ios/**/Icon? | |
**/ios/**/Pods/ | |
**/ios/**/.symlinks/ | |
**/ios/**/profile | |
**/ios/**/xcuserdata | |
**/ios/.generated/ | |
**/ios/Flutter/App.framework | |
**/ios/Flutter/Flutter.framework | |
**/ios/Flutter/Generated.xcconfig | |
**/ios/Flutter/app.flx | |
**/ios/Flutter/app.zip | |
**/ios/Flutter/flutter_assets/ | |
**/ios/ServiceDefinitions.json | |
**/ios/Runner/GeneratedPluginRegistrant.* | |
# Exceptions to above rules. | |
!**/ios/**/default.mode1v3 | |
!**/ios/**/default.mode2v3 | |
!**/ios/**/default.pbxuser | |
!**/ios/**/default.perspectivev3 | |
!/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