Skip to content

Commit 8e2ceff

Browse files
committed
init
1 parent aa8c36c commit 8e2ceff

File tree

128 files changed

+4937
-368
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+4937
-368
lines changed

.gitignore

+33-338
Original file line numberDiff line numberDiff line change
@@ -1,349 +1,44 @@
1-
# Created by https://www.gitignore.io/api/dart,swift,xcode,android,intellij,cocoapods,objective-c,androidstudio
2-
3-
### Android ###
4-
# Built application files
5-
*.apk
6-
*.ap_
7-
8-
# Files for the ART/Dalvik VM
9-
*.dex
10-
11-
# Java class files
1+
# Miscellaneous
122
*.class
13-
14-
# Generated files
15-
bin/
16-
gen/
17-
out/
18-
19-
# Gradle files
20-
.gradle/
21-
build/
22-
23-
# Local configuration file (sdk path, etc)
24-
local.properties
25-
26-
# Proguard folder generated by Eclipse
27-
proguard/
28-
29-
# Log Files
303
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
migrate_working_dir/
3112

32-
# Android Studio Navigation editor temp files
33-
.navigation/
34-
35-
# Android Studio captures folder
36-
captures/
37-
38-
# Intellij
13+
# IntelliJ related
3914
*.iml
40-
.idea/workspace.xml
41-
.idea/tasks.xml
42-
.idea/gradle.xml
43-
.idea/dictionaries
44-
.idea/libraries
45-
46-
# External native build folder generated in Android Studio 2.2 and later
47-
.externalNativeBuild
48-
49-
# Freeline
50-
freeline.py
51-
freeline/
52-
freeline_project_description.json
53-
54-
### Android Patch ###
55-
gen-external-apklibs
56-
57-
### AndroidStudio ###
58-
# Covers files to be ignored for android development using Android Studio.
59-
60-
# Built application files
61-
62-
# Files for the ART/Dalvik VM
63-
64-
# Java class files
65-
66-
# Generated files
67-
68-
# Gradle files
69-
.gradle
70-
71-
# Signing files
72-
.signing/
73-
74-
# Local configuration file (sdk path, etc)
75-
76-
# Proguard folder generated by Eclipse
77-
78-
# Log Files
79-
80-
# Android Studio
81-
/*/build/
82-
/*/local.properties
83-
/*/out
84-
/*/*/build
85-
/*/*/production
8615
*.ipr
87-
*~
88-
*.swp
89-
90-
# Android Patch
91-
92-
# External native build folder generated in Android Studio 2.2 and later
93-
94-
# NDK
95-
obj/
96-
97-
# IntelliJ IDEA
9816
*.iws
99-
/out/
100-
101-
# User-specific configurations
102-
.idea/libraries/
103-
.idea/.name
104-
.idea/compiler.xml
105-
.idea/copyright/profiles_settings.xml
106-
.idea/encodings.xml
107-
.idea/misc.xml
108-
.idea/modules.xml
109-
.idea/scopes/scope_settings.xml
110-
.idea/vcs.xml
111-
.idea/jsLibraryMappings.xml
112-
.idea/datasources.xml
113-
.idea/dataSources.ids
114-
.idea/sqlDataSources.xml
115-
.idea/dynamic.xml
116-
.idea/uiDesigner.xml
117-
118-
# OS-specific files
119-
.DS_Store
120-
.DS_Store?
121-
._*
122-
.Spotlight-V100
123-
.Trashes
124-
ehthumbs.db
125-
Thumbs.db
126-
127-
# Legacy Eclipse project files
128-
.classpath
129-
.project
130-
131-
# Mobile Tools for Java (J2ME)
132-
.mtj.tmp/
133-
134-
# Package Files #
135-
*.war
136-
*.ear
137-
138-
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
139-
hs_err_pid*
140-
141-
## Plugin-specific files:
142-
143-
# mpeltonen/sbt-idea plugin
144-
.idea_modules/
145-
146-
# JIRA plugin
147-
atlassian-ide-plugin.xml
148-
149-
# Mongo Explorer plugin
150-
.idea/mongoSettings.xml
151-
152-
# Crashlytics plugin (for Android Studio and IntelliJ)
153-
com_crashlytics_export_strings.xml
154-
crashlytics.properties
155-
crashlytics-build.properties
156-
fabric.properties
157-
158-
### AndroidStudio Patch ###
159-
160-
!/gradle/wrapper/gradle-wrapper.jar
161-
162-
### CocoaPods ###
163-
## CocoaPods GitIgnore Template
164-
165-
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
166-
# - Also handy if you have a lage number of dependant pods
167-
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGONRE THE LOCK FILE
168-
Pods/
169-
170-
### Dart ###
171-
# See https://www.dartlang.org/tools/private-files.html
172-
173-
# Files and directories created by pub
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
**/doc/api/
26+
**/ios/Flutter/.last_build_id
27+
.dart_tool/
28+
.flutter-plugins
29+
.flutter-plugins-dependencies
17430
.packages
31+
.pub-cache/
17532
.pub/
176-
# If you're building an application, you may want to check-in your pubspec.lock
177-
pubspec.lock
178-
179-
# Directory created by dartdoc
180-
# If you don't generate documentation locally you can remove this line.
181-
doc/api/
182-
183-
### Intellij ###
184-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
185-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
186-
187-
# User-specific stuff:
188-
.idea/**/workspace.xml
189-
.idea/**/tasks.xml
190-
191-
# Sensitive or high-churn files:
192-
.idea/**/dataSources/
193-
.idea/**/dataSources.ids
194-
.idea/**/dataSources.xml
195-
.idea/**/dataSources.local.xml
196-
.idea/**/sqlDataSources.xml
197-
.idea/**/dynamic.xml
198-
.idea/**/uiDesigner.xml
199-
200-
# Gradle:
201-
.idea/**/gradle.xml
202-
.idea/**/libraries
203-
204-
# CMake
205-
cmake-build-debug/
206-
207-
# Mongo Explorer plugin:
208-
.idea/**/mongoSettings.xml
209-
210-
## File-based project format:
211-
212-
## Plugin-specific files:
213-
214-
# IntelliJ
215-
216-
# mpeltonen/sbt-idea plugin
217-
218-
# JIRA plugin
219-
220-
# Cursive Clojure plugin
221-
.idea/replstate.xml
222-
223-
# Crashlytics plugin (for Android Studio and IntelliJ)
224-
225-
### Intellij Patch ###
226-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
227-
228-
# *.iml
229-
# modules.xml
230-
# .idea/misc.xml
231-
# *.ipr
232-
233-
# Sonarlint plugin
234-
.idea/sonarlint
235-
236-
### Objective-C ###
237-
# Xcode
238-
#
239-
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
240-
241-
## Build generated
242-
DerivedData/
243-
244-
## Various settings
245-
*.pbxuser
246-
!default.pbxuser
247-
*.mode1v3
248-
!default.mode1v3
249-
*.mode2v3
250-
!default.mode2v3
251-
*.perspectivev3
252-
!default.perspectivev3
253-
xcuserdata/
254-
255-
## Other
256-
*.moved-aside
257-
*.xccheckout
258-
*.xcscmblueprint
259-
260-
## Obj-C/Swift specific
261-
*.hmap
262-
*.ipa
263-
*.dSYM.zip
264-
*.dSYM
265-
266-
# CocoaPods - Refactored to standalone file
267-
268-
269-
# Carthage - Refactored to standalone file
270-
271-
# fastlane
272-
#
273-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
274-
# screenshots whenever they are needed.
275-
# For more information about the recommended setup visit:
276-
# https://docs.fastlane.tools/best-practices/source-control/#source-control
277-
278-
fastlane/report.xml
279-
fastlane/Preview.html
280-
fastlane/screenshots
281-
fastlane/test_output
282-
283-
# Code Injection
284-
#
285-
# After new code Injection tools there's a generated folder /iOSInjectionProject
286-
# https://github.com/johnno1962/injectionforxcode
287-
288-
iOSInjectionProject/
289-
290-
### Objective-C Patch ###
291-
292-
### Swift ###
293-
# Xcode
294-
#
295-
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
296-
297-
## Build generated
298-
299-
## Various settings
300-
301-
## Other
302-
303-
## Obj-C/Swift specific
304-
305-
## Playgrounds
306-
timeline.xctimeline
307-
playground.xcworkspace
308-
309-
# Swift Package Manager
310-
#
311-
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
312-
# Packages/
313-
# Package.pins
314-
.build/
315-
316-
# CocoaPods - Refactored to standalone file
317-
318-
# Carthage - Refactored to standalone file
319-
320-
# fastlane
321-
#
322-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
323-
# screenshots whenever they are needed.
324-
# For more information about the recommended setup visit:
325-
# https://docs.fastlane.tools/best-practices/source-control/#source-control
326-
327-
328-
### Xcode ###
329-
# Xcode
330-
#
331-
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
332-
333-
## Build generated
334-
335-
## Various settings
336-
337-
## Other
33+
/build/
33834

339-
### Xcode Patch ###
340-
*.xcodeproj/*
341-
!*.xcodeproj/project.pbxproj
342-
!*.xcodeproj/xcshareddata/
343-
!*.xcworkspace/contents.xcworkspacedata
344-
/*.gcno
35+
# Symbolication related
36+
app.*.symbols
34537

346-
# Build files
347-
build/
38+
# Obfuscation related
39+
app.*.map.json
34840

349-
# End of https://www.gitignore.io/api/dart,swift,xcode,android,intellij,cocoapods,objective-c,androidstudio
41+
# Android Studio will place build artifacts here
42+
/android/app/debug
43+
/android/app/profile
44+
/android/app/release

0 commit comments

Comments
 (0)