Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
a9a445b1
Commit
a9a445b1
authored
Feb 10, 2016
by
Devon Carew
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1743 from devoncarew/ignore_io_build
ignore derived resources in ios/build
parents
8baffeb9
427bc1e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
create.dart
packages/flutter_tools/lib/src/commands/create.dart
+8
-1
No files found.
packages/flutter_tools/lib/src/commands/create.dart
View file @
a9a445b1
...
...
@@ -140,12 +140,13 @@ abstract class Template {
class
FlutterSimpleTemplate
extends
Template
{
FlutterSimpleTemplate
()
:
super
(
'flutter-simple'
,
'A minimal Flutter project.'
)
{
files
[
'.analysis_options'
]
=
_analysis_options
;
files
[
'.gitignore'
]
=
_gitignore
;
files
[
'flutter.yaml'
]
=
_flutterYaml
;
files
[
'pubspec.yaml'
]
=
_pubspec
;
files
[
'README.md'
]
=
_readme
;
files
[
'lib/main.dart'
]
=
_libMain
;
files
[
'apk/AndroidManifest.xml'
]
=
_apkManifest
;
files
[
'lib/main.dart'
]
=
_libMain
;
}
}
...
...
@@ -157,6 +158,12 @@ String _normalizeProjectName(String name) {
return
name
;
}
const
String
_analysis_options
=
r''
'
analyzer:
exclude:
- '
ios
/
build
/**
'
'''
;
const
String
_gitignore
=
r''
'
.DS_Store
.atom/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment