.gitignore (700B)
1 # Miscellaneous 2 *.class 3 *.log 4 *.pyc 5 *.swp 6 .DS_Store 7 .atom/ 8 .buildlog/ 9 .history 10 .svn/ 11 migrate_working_dir/ 12 .vscode/ 13 14 # IntelliJ related 15 *.iml 16 *.ipr 17 *.iws 18 .idea/ 19 20 # The .vscode folder contains launch configuration and tasks you configure in 21 # VS Code which you may wish to be included in version control, so this line 22 # is commented out by default. 23 #.vscode/ 24 25 # Flutter/Dart/Pub related 26 **/doc/api/ 27 **/ios/Flutter/.last_build_id 28 .dart_tool/ 29 .flutter-plugins 30 .flutter-plugins-dependencies 31 .pub-cache/ 32 .pub/ 33 /build/ 34 35 # Symbolication related 36 app.*.symbols 37 38 # Obfuscation related 39 app.*.map.json 40 41 # Android Studio will place build artifacts here 42 /android/app/debug 43 /android/app/profile 44 /android/app/release