Skip to content

Commit f632791

Browse files
author
xulinfeng
committed
Fixed ignore file.
1 parent c53d09d commit f632791

13 files changed

+296
-111
lines changed

.gitignore

+75-16
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,80 @@
1-
# See https://www.dartlang.org/guides/libraries/private-files
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
211

3-
# Files and directories created by pub
12+
# blutter
13+
blutter_tools
14+
15+
# IntelliJ related
16+
*.iml
17+
*.ipr
18+
*.iws
19+
.idea/
20+
21+
# Visual Studio Code related
22+
.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
**/doc/api/
426
.dart_tool/
27+
.flutter-plugins
528
.packages
29+
.pub-cache/
30+
.pub/
31+
.flutter-plugins-dependencies
632
build/
7-
# If you're building an application, you may want to check-in your pubspec.lock
8-
pubspec.lock
33+
coverage/
34+
artifacts/
935

10-
# Directory created by dartdoc
11-
# If you don't generate documentation locally you can remove this line.
12-
doc/api/
13-
14-
# Avoid committing generated Javascript files:
15-
*.dart.js
16-
*.info.json # Produced by the --dump-info flag.
17-
*.js # When generated by dart2js. Don't specify *.js if your
18-
# project includes source files written in JavaScript.
19-
*.js_
20-
*.js.deps
21-
*.js.map
36+
# Android related
37+
**/android/**/gradle-wrapper.jar
38+
**/android/.gradle
39+
**/android/captures/
40+
**/android/gradlew
41+
**/android/gradlew.bat
42+
**/android/local.properties
43+
**/android/**/GeneratedPluginRegistrant.java
44+
**/android/**/gen/
45+
46+
# iOS/XCode related
47+
**/ios/**/*.mode1v3
48+
**/ios/**/*.mode2v3
49+
**/ios/**/*.moved-aside
50+
**/ios/**/*.pbxuser
51+
**/ios/**/*.perspectivev3
52+
**/ios/**/*sync/
53+
**/ios/**/.sconsign.dblite
54+
**/ios/**/.tags*
55+
**/ios/**/.vagrant/
56+
**/ios/**/DerivedData/
57+
**/ios/**/Icon?
58+
**/ios/**/Pods/
59+
**/ios/**/.symlinks/
60+
**/ios/**/profile
61+
**/ios/**/xcuserdata
62+
**/ios/.generated/
63+
**/ios/Flutter/App.framework
64+
**/ios/Flutter/Flutter.framework
65+
**/ios/Flutter/Generated.xcconfig
66+
**/ios/Flutter/app.flx
67+
**/ios/Flutter/app.zip
68+
**/ios/Flutter/flutter_assets/
69+
**/ios/ServiceDefinitions.json
70+
**/ios/Runner/GeneratedPluginRegistrant.*
71+
72+
# Exceptions to above rules.
73+
!**/ios/**/default.mode1v3
74+
!**/ios/**/default.mode2v3
75+
!**/ios/**/default.pbxuser
76+
!**/ios/**/default.perspectivev3
77+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
78+
79+
pubspec.lock
80+
!**/example/pubspec.lock

.idea/.gitignore

-2
This file was deleted.

.idea/flutter_darwin_notfication.iml

-24
This file was deleted.

.idea/libraries/Dart_SDK.xml

-28
This file was deleted.

.idea/libraries/Flutter_Plugins.xml

-9
This file was deleted.

.idea/misc.xml

-6
This file was deleted.

.idea/modules.xml

-8
This file was deleted.

.idea/vcs.xml

-6
This file was deleted.

example/ios/Flutter/flutter_export_environment.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
# This is a generated file; do not edit or check into version control.
33
export "FLUTTER_ROOT=/opt/flutters/flutter"
44
export "FLUTTER_APPLICATION_PATH=/Volumes/Mac_Data/repositories/flutter_darwin_notification/example"
5-
export "FLUTTER_TARGET=lib/main.dart"
5+
export "FLUTTER_TARGET=/Volumes/Mac_Data/repositories/flutter_darwin_notification/example/lib/main.dart"
66
export "FLUTTER_BUILD_DIR=build"
77
export "SYMROOT=${SOURCE_ROOT}/../build/ios"
88
export "FLUTTER_FRAMEWORK_DIR=/opt/flutters/flutter/bin/cache/artifacts/engine/ios"
99
export "FLUTTER_BUILD_NAME=0.0.1"
1010
export "FLUTTER_BUILD_NUMBER=1"
11+
export "TRACK_WIDGET_CREATION=true"

0 commit comments

Comments
 (0)