Commit c0024bba5753a45b5334589ad191c1bc76cf3d24
1 parent
2a29701f
feat:更新忽略文件
Showing
1 changed file
with
42 additions
and
11 deletions
.gitignore
... | ... | @@ -14,6 +14,7 @@ |
14 | 14 | *.ipr |
15 | 15 | *.iws |
16 | 16 | .idea/ |
17 | +*.dart_tool/build | |
17 | 18 | |
18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in |
19 | 20 | # VS Code which you may wish to be included in version control, so this line |
... | ... | @@ -22,25 +23,55 @@ |
22 | 23 | |
23 | 24 | # Flutter/Dart/Pub related |
24 | 25 | **/doc/api/ |
25 | -**/ios/Flutter/.last_build_id | |
26 | 26 | .dart_tool/ |
27 | 27 | .flutter-plugins |
28 | -.flutter-plugins-dependencies | |
29 | 28 | .packages |
30 | 29 | .pub-cache/ |
31 | 30 | .pub/ |
32 | 31 | /build/ |
33 | 32 | |
34 | -# Web related | |
35 | -lib/generated_plugin_registrant.dart | |
33 | +# Android related | |
34 | +**/android/.gradle | |
35 | +**/android/captures/ | |
36 | +**/android/gradlew | |
37 | +**/android/gradlew.bat | |
38 | +**/android/local.properties | |
39 | +**/android/**/GeneratedPluginRegistrant.java | |
36 | 40 | |
37 | -# Symbolication related | |
38 | -app.*.symbols | |
39 | - | |
40 | -# Obfuscation related | |
41 | -app.*.map.json | |
41 | +# iOS/XCode related | |
42 | +**/ios/**/*.mode1v3 | |
43 | +**/ios/**/*.mode2v3 | |
44 | +**/ios/**/*.moved-aside | |
45 | +**/ios/**/*.pbxuser | |
46 | +**/ios/**/*.perspectivev3 | |
47 | +**/ios/**/*sync/ | |
48 | +**/ios/**/.sconsign.dblite | |
49 | +**/ios/**/.tags* | |
50 | +**/ios/**/.vagrant/ | |
51 | +**/ios/**/DerivedData/ | |
52 | +**/ios/**/Icon? | |
53 | +**/ios/**/Pods/ | |
54 | +**/ios/**/.symlinks/ | |
55 | +**/ios/**/profile | |
56 | +**/ios/**/xcuserdata | |
57 | +**/ios/.generated/ | |
58 | +**/ios/Flutter/App.framework | |
59 | +**/ios/Flutter/Flutter.framework | |
60 | +**/ios/Flutter/Generated.xcconfig | |
61 | +**/ios/Flutter/app.flx | |
62 | +**/ios/Flutter/app.zip | |
63 | +**/ios/Flutter/flutter_assets/ | |
64 | +**/ios/ServiceDefinitions.json | |
65 | +**/ios/Runner/GeneratedPluginRegistrant.* | |
42 | 66 | |
43 | 67 | # Exceptions to above rules. |
68 | +!**/ios/**/default.mode1v3 | |
69 | +!**/ios/**/default.mode2v3 | |
70 | +!**/ios/**/default.pbxuser | |
71 | +!**/ios/**/default.perspectivev3 | |
44 | 72 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages |
45 | -/pubspec.lock | |
46 | -/ios/Podfile.lock | |
73 | +/.gradle/ | |
74 | +/android/gradle/ | |
75 | +/gen/ | |
76 | +/gradle/ | |
77 | +#local.properties | ... | ... |