Skip to content

Commit f93df44

Browse files
committed
1 parent 8c20597 commit f93df44

13 files changed

+156
-425
lines changed

.gitignore

+42-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,48 @@
11
.DS_Store
22
.atom/
3-
.idea
3+
.idea/
4+
.vscode/
5+
46
.packages
5-
.dart_tool/
67
.pub/
7-
build/
8-
ios/.generated/
9-
packages
8+
.dart_tool/
109
pubspec.lock
11-
.iml
10+
flutter_export_environment.sh
11+
12+
examples/all_plugins/pubspec.yaml
13+
14+
Podfile
1215
Podfile.lock
13-
chewie.iml
14-
example/ios/Flutter/flutter_export_environment.sh
16+
Pods/
17+
.symlinks/
18+
**/Flutter/App.framework/
19+
**/Flutter/ephemeral/
20+
**/Flutter/Flutter.framework/
21+
**/Flutter/Generated.xcconfig
22+
**/Flutter/flutter_assets/
23+
24+
ServiceDefinitions.json
25+
xcuserdata/
26+
**/DerivedData/
27+
28+
local.properties
29+
keystore.properties
30+
.gradle/
31+
gradlew
32+
gradlew.bat
33+
gradle-wrapper.jar
34+
.flutter-plugins-dependencies
35+
*.iml
36+
37+
generated_plugin_registrant.dart
38+
GeneratedPluginRegistrant.h
39+
GeneratedPluginRegistrant.m
40+
generated_plugin_registrant.cc
41+
GeneratedPluginRegistrant.java
42+
GeneratedPluginRegistrant.swift
43+
build/
44+
.flutter-plugins
45+
46+
.project
47+
.classpath
48+
.settings

android.iml

-12
This file was deleted.

example/.flutter-plugins-dependencies

-1
This file was deleted.

example/.gitignore

+114-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,120 @@
1+
# Miscellaneous
2+
*.class
3+
*.lock
4+
*.log
5+
*.pyc
6+
*.swp
17
.DS_Store
28
.atom/
3-
.idea
9+
.buildlog/
10+
.history
11+
.svn/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# Visual Studio Code related
20+
.classpath
21+
.project
22+
.settings/
423
.vscode/
24+
25+
# Flutter repo-specific
26+
/bin/cache/
27+
/bin/internal/bootstrap.bat
28+
/bin/internal/bootstrap.sh
29+
/bin/mingit/
30+
/dev/benchmarks/mega_gallery/
31+
/dev/bots/.recipe_deps
32+
/dev/bots/android_tools/
33+
/dev/devicelab/ABresults*.json
34+
/dev/docs/doc/
35+
/dev/docs/flutter.docs.zip
36+
/dev/docs/lib/
37+
/dev/docs/pubspec.yaml
38+
/dev/integration_tests/**/xcuserdata
39+
/dev/integration_tests/**/Pods
40+
/packages/flutter/coverage/
41+
version
42+
analysis_benchmark.json
43+
44+
# packages file containing multi-root paths
45+
.packages.generated
46+
47+
# Flutter/Dart/Pub related
48+
**/doc/api/
49+
.dart_tool/
50+
.flutter-plugins
51+
.flutter-plugins-dependencies
52+
**/generated_plugin_registrant.dart
553
.packages
54+
.pub-cache/
655
.pub/
756
build/
8-
ios/.generated/
9-
packages
10-
pubspec.lock
11-
.flutter-plugins
12-
Podfile.lock
13-
lib/generated_plugin_registrant.dart
57+
flutter_*.png
58+
linked_*.ds
59+
unlinked.ds
60+
unlinked_spec.ds
61+
62+
# Android related
63+
**/android/**/gradle-wrapper.jar
64+
**/android/.gradle
65+
**/android/captures/
66+
**/android/gradlew
67+
**/android/gradlew.bat
68+
**/android/local.properties
69+
**/android/**/GeneratedPluginRegistrant.java
70+
**/android/key.properties
71+
*.jks
72+
73+
# iOS/XCode related
74+
**/ios/**/*.mode1v3
75+
**/ios/**/*.mode2v3
76+
**/ios/**/*.moved-aside
77+
**/ios/**/*.pbxuser
78+
**/ios/**/*.perspectivev3
79+
**/ios/**/*sync/
80+
**/ios/**/.sconsign.dblite
81+
**/ios/**/.tags*
82+
**/ios/**/.vagrant/
83+
**/ios/**/DerivedData/
84+
**/ios/**/Icon?
85+
**/ios/**/Pods/
86+
**/ios/**/.symlinks/
87+
**/ios/**/profile
88+
**/ios/**/xcuserdata
89+
**/ios/.generated/
90+
**/ios/Flutter/.last_build_id
91+
**/ios/Flutter/App.framework
92+
**/ios/Flutter/Flutter.framework
93+
**/ios/Flutter/Flutter.podspec
94+
**/ios/Flutter/Generated.xcconfig
95+
**/ios/Flutter/app.flx
96+
**/ios/Flutter/app.zip
97+
**/ios/Flutter/flutter_assets/
98+
**/ios/Flutter/flutter_export_environment.sh
99+
**/ios/ServiceDefinitions.json
100+
**/ios/Runner/GeneratedPluginRegistrant.*
101+
102+
# macOS
103+
**/macos/Flutter/GeneratedPluginRegistrant.swift
104+
**/macos/Flutter/Flutter-Debug.xcconfig
105+
**/macos/Flutter/Flutter-Release.xcconfig
106+
**/macos/Flutter/Flutter-Profile.xcconfig
107+
108+
# Coverage
109+
coverage/
110+
111+
# Symbols
112+
app.*.symbols
113+
114+
# Exceptions to above rules.
115+
!**/ios/**/default.mode1v3
116+
!**/ios/**/default.mode2v3
117+
!**/ios/**/default.pbxuser
118+
!**/ios/**/default.perspectivev3
119+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
120+
!/dev/ci/**/Gemfile.lock

example/android.iml

-12
This file was deleted.
-52.4 KB
Binary file not shown.

example/android/gradlew

-160
This file was deleted.

0 commit comments

Comments
 (0)