Skip to content

Commit b6af134

Browse files
committed
some fixes
1 parent 3825edc commit b6af134

File tree

3 files changed

+42
-3
lines changed

3 files changed

+42
-3
lines changed

.DS_Store

8 KB
Binary file not shown.

.gitignore

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,34 @@
1-
.DS_Store
1+
# Flutter/Dart/Pub related
22
.dart_tool/
3-
.idea
43
.packages
4+
.pub-cache/
55
.pub/
6-
76
build/
7+
8+
# Android
9+
**/android/**/gradle-wrapper.jar
10+
**/android/.gradle/
11+
**/android/captures/
12+
**/android/gradlew
13+
**/android/gradlew.bat
14+
**/android/local.properties
15+
**/android/.idea/
16+
17+
# iOS
18+
**/ios/Pods/
19+
**/ios/.symlinks/
20+
**/ios/Flutter/Flutter.framework
21+
**/ios/Flutter/Flutter.podspec
22+
**/ios/Flutter/Generated.xcconfig
23+
**/ios/Flutter/ephemeral/
24+
**/ios/.generated/
25+
26+
# VS Code
27+
.vscode/
28+
29+
# IntelliJ / Android Studio
30+
*.iml
831
.idea/
32+
33+
# Misc
34+
*.log

.pubignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Exclude IDE and system files from package
2+
.idea/
3+
.vscode/
4+
*.iml
5+
6+
# Exclude test artifacts (if not meant for users)
7+
test_driver/
8+
integration_test/
9+
coverage/
10+
11+
# Exclude build outputs
12+
build/
13+
.dart_tool/

0 commit comments

Comments
 (0)