Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 075497b

Browse files
committedFeb 24, 2016
v2.0
completely different.
1 parent a02a157 commit 075497b

File tree

153 files changed

+2475
-1458
lines changed

Some content is hidden

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

153 files changed

+2475
-1458
lines changed
 

‎.gitignore

Lines changed: 235 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,236 @@
1-
.gradle
2-
/local.properties
3-
/.idea/workspace.xml
1+
2+
# Created by https://www.gitignore.io/api/windows,linux,osx,intellij,eclipse,java,gradle,android
3+
4+
### Windows ###
5+
# Windows image file caches
6+
Thumbs.db
7+
ehthumbs.db
8+
9+
# Folder config file
10+
Desktop.ini
11+
12+
# Recycle Bin used on file shares
13+
$RECYCLE.BIN/
14+
15+
# Windows Installer files
16+
*.cab
17+
*.msi
18+
*.msm
19+
*.msp
20+
21+
# Windows shortcuts
22+
*.lnk
23+
24+
25+
### Linux ###
26+
*~
27+
28+
# temporary files which can be created if a process still has a handle open of a deleted file
29+
.fuse_hidden*
30+
31+
# KDE directory preferences
32+
.directory
33+
34+
# Linux trash folder which might appear on any partition or disk
35+
.Trash-*
36+
37+
38+
### OSX ###
439
.DS_Store
5-
/build
40+
.AppleDouble
41+
.LSOverride
42+
43+
# Icon must end with two \r
44+
Icon
45+
46+
47+
# Thumbnails
48+
._*
49+
50+
# Files that might appear in the root of a volume
51+
.DocumentRevisions-V100
52+
.fseventsd
53+
.Spotlight-V100
54+
.TemporaryItems
55+
.Trashes
56+
.VolumeIcon.icns
57+
58+
# Directories potentially created on remote AFP share
59+
.AppleDB
60+
.AppleDesktop
61+
Network Trash Folder
62+
Temporary Items
63+
.apdisk
64+
65+
66+
### Intellij ###
67+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
68+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
69+
70+
# User-specific stuff:
71+
.idea/workspace.xml
72+
.idea/tasks.xml
73+
.idea/dictionaries
74+
.idea/vcs.xml
75+
.idea/jsLibraryMappings.xml
76+
77+
# Sensitive or high-churn files:
78+
.idea/dataSources.ids
79+
.idea/dataSources.xml
80+
.idea/sqlDataSources.xml
81+
.idea/dynamic.xml
82+
.idea/uiDesigner.xml
83+
84+
# Gradle:
85+
.idea/gradle.xml
86+
.idea/libraries
87+
88+
# Mongo Explorer plugin:
89+
.idea/mongoSettings.xml
90+
91+
## File-based project format:
92+
*.iws
93+
94+
## Plugin-specific files:
95+
96+
# IntelliJ
97+
/out/
98+
99+
# mpeltonen/sbt-idea plugin
100+
.idea_modules/
101+
102+
# JIRA plugin
103+
atlassian-ide-plugin.xml
104+
105+
# Crashlytics plugin (for Android Studio and IntelliJ)
106+
com_crashlytics_export_strings.xml
107+
crashlytics.properties
108+
crashlytics-build.properties
109+
fabric.properties
110+
111+
112+
### Eclipse ###
113+
114+
.metadata
115+
bin/
116+
tmp/
117+
*.tmp
118+
*.bak
119+
*.swp
120+
*~.nib
121+
local.properties
122+
.settings/
123+
.loadpath
124+
125+
# Eclipse Core
126+
.project
127+
128+
# External tool builders
129+
.externalToolBuilders/
130+
131+
# Locally stored "Eclipse launch configurations"
132+
*.launch
133+
134+
# PyDev specific (Python IDE for Eclipse)
135+
*.pydevproject
136+
137+
# CDT-specific (C/C++ Development Tooling)
138+
.cproject
139+
140+
# JDT-specific (Eclipse Java Development Tools)
141+
.classpath
142+
143+
# Java annotation processor (APT)
144+
.factorypath
145+
146+
# PDT-specific (PHP Development Tools)
147+
.buildpath
148+
149+
# sbteclipse plugin
150+
.target
151+
152+
# Tern plugin
153+
.tern-project
154+
155+
# TeXlipse plugin
156+
.texlipse
157+
158+
# STS (Spring Tool Suite)
159+
.springBeans
160+
161+
# Code Recommenders
162+
.recommenders/
163+
164+
165+
### Java ###
166+
*.class
167+
168+
# Mobile Tools for Java (J2ME)
169+
.mtj.tmp/
170+
171+
# Package Files #
172+
*.jar
173+
*.war
174+
*.ear
175+
176+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
177+
hs_err_pid*
178+
179+
180+
### Gradle ###
181+
.gradle
182+
build/
183+
184+
# Ignore Gradle GUI config
185+
gradle-app.setting
186+
187+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
188+
!gradle-wrapper.jar
189+
190+
# Cache of project
191+
.gradletasknamecache
192+
193+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
194+
# gradle/wrapper/gradle-wrapper.properties
195+
196+
197+
### Android ###
198+
# Built application files
199+
*.apk
200+
*.ap_
201+
202+
# Files for the Dalvik VM
203+
*.dex
204+
205+
# Java class files
206+
*.class
207+
208+
# Generated files
209+
bin/
210+
gen/
211+
out/
212+
213+
# Gradle files
214+
.gradle/
215+
build/
216+
217+
# Local configuration file (sdk path, etc)
218+
local.properties
219+
220+
# Proguard folder generated by Eclipse
221+
proguard/
222+
223+
# Log Files
224+
*.log
225+
226+
# Android Studio Navigation editor temp files
227+
.navigation/
228+
229+
# Android Studio captures folder
230+
captures/
231+
232+
# Intellij
233+
*.iml
234+
235+
### Android Patch ###
236+
gen-external-apklibs

‎.idea/.name

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.