Skip to content

Commit 6c66d5c

Browse files
updated gitignore
1 parent 870bdea commit 6c66d5c

File tree

8 files changed

+91
-165
lines changed

8 files changed

+91
-165
lines changed

.gitignore

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@
1616
*.iws
1717
.idea/
1818

19+
# Visual Studio Code related
20+
.classpath
21+
.project
22+
.settings/
23+
.vscode/*
24+
.ccls-cache
25+
1926
# The .vscode folder contains launch configuration and tasks you configure in
2027
# VS Code which you may wish to be included in version control, so this line
2128
# is commented out by default.
@@ -45,3 +52,87 @@ app.*.map.json
4552
/android/app/debug
4653
/android/app/profile
4754
/android/app/release
55+
56+
# Android related
57+
**/android/**/gradle-wrapper.jar
58+
.gradle/
59+
**/android/captures/
60+
**/android/gradlew
61+
**/android/gradlew.bat
62+
**/android/**/GeneratedPluginRegistrant.java
63+
**/android/key.properties
64+
*.jks
65+
local.properties
66+
**/.cxx/
67+
68+
# iOS/XCode related
69+
**/ios/**/*.mode1v3
70+
**/ios/**/*.mode2v3
71+
**/ios/**/*.moved-aside
72+
**/ios/**/*.pbxuser
73+
**/ios/**/*.perspectivev3
74+
**/ios/**/*sync/
75+
**/ios/**/.sconsign.dblite
76+
**/ios/**/.tags*
77+
**/ios/**/.vagrant/
78+
**/ios/**/DerivedData/
79+
**/ios/**/Icon?
80+
**/ios/**/Pods/
81+
**/ios/**/.symlinks/
82+
**/ios/**/profile
83+
**/ios/**/xcuserdata
84+
**/ios/.generated/
85+
**/ios/Flutter/.last_build_id
86+
**/ios/Flutter/App.framework
87+
**/ios/Flutter/Flutter.framework
88+
**/ios/Flutter/Flutter.podspec
89+
**/ios/Flutter/Generated.xcconfig
90+
**/ios/Flutter/ephemeral
91+
**/ios/Flutter/app.flx
92+
**/ios/Flutter/app.zip
93+
**/ios/Flutter/flutter_assets/
94+
**/ios/Flutter/flutter_export_environment.sh
95+
**/ios/ServiceDefinitions.json
96+
**/ios/Runner/GeneratedPluginRegistrant.*
97+
98+
# macOS
99+
**/Flutter/ephemeral/
100+
**/Pods/
101+
**/macos/Flutter/GeneratedPluginRegistrant.swift
102+
**/macos/Flutter/ephemeral
103+
**/xcuserdata/
104+
105+
# Windows
106+
**/windows/flutter/ephemeral/
107+
**/windows/flutter/generated_plugin_registrant.cc
108+
**/windows/flutter/generated_plugin_registrant.h
109+
**/windows/flutter/generated_plugins.cmake
110+
111+
# Linux
112+
**/linux/flutter/ephemeral/
113+
**/linux/flutter/generated_plugin_registrant.cc
114+
**/linux/flutter/generated_plugin_registrant.h
115+
**/linux/flutter/generated_plugins.cmake
116+
117+
# Coverage
118+
coverage/
119+
120+
# Symbols
121+
app.*.symbols
122+
123+
# Exceptions to above rules.
124+
!**/ios/**/default.mode1v3
125+
!**/ios/**/default.mode2v3
126+
!**/ios/**/default.pbxuser
127+
!**/ios/**/default.perspectivev3
128+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
129+
!/dev/ci/**/Gemfile.lock
130+
!.vscode/settings.json
131+
132+
# Monorepo
133+
.cipd
134+
.gclient
135+
.gclient_entries
136+
.python-version
137+
.gclient_previous_custom_vars
138+
.gclient_previous_sync_commits

linux/flutter/generated_plugin_registrant.cc

Lines changed: 0 additions & 23 deletions
This file was deleted.

linux/flutter/generated_plugin_registrant.h

Lines changed: 0 additions & 15 deletions
This file was deleted.

linux/flutter/generated_plugins.cmake

Lines changed: 0 additions & 26 deletions
This file was deleted.

macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 0 additions & 32 deletions
This file was deleted.

windows/flutter/generated_plugin_registrant.cc

Lines changed: 0 additions & 26 deletions
This file was deleted.

windows/flutter/generated_plugin_registrant.h

Lines changed: 0 additions & 15 deletions
This file was deleted.

windows/flutter/generated_plugins.cmake

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)