Skip to content

Commit 72cc44a

Browse files
committed
Merge pull request jingle1267#7 from kibotu/master
updated the project so it can be included with jitpack
2 parents ef7da38 + fc6365e commit 72cc44a

File tree

136 files changed

+1307
-2529
lines changed

Some content is hidden

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

136 files changed

+1307
-2529
lines changed

.classpath

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitignore

Lines changed: 272 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,276 @@
1+
2+
# Created by https://www.gitignore.io/api/android,jetbrains,eclipse,jetbrains,windows,osx,gradle
3+
4+
.idea
5+
6+
### Android ###
7+
# Built application files
8+
*.apk
9+
*.ap_
10+
11+
# Files for the Dalvik VM
12+
*.dex
13+
14+
# Java class files
115
*.class
216

3-
# Mobile Tools for Java (J2ME)
4-
.mtj.tmp/
17+
# Generated files
18+
bin/
19+
gen/
20+
out/
21+
22+
# Gradle files
23+
.gradle/
24+
build/
25+
26+
# Local configuration file (sdk path, etc)
27+
local.properties
28+
29+
# Proguard folder generated by Eclipse
30+
proguard/
31+
32+
# Log Files
33+
*.log
34+
35+
# Android Studio Navigation editor temp files
36+
.navigation/
37+
38+
# Android Studio captures folder
39+
captures/
40+
41+
# Intellij
42+
*.iml
43+
44+
# Keystore files
45+
*.jks
46+
47+
### Android Patch ###
48+
gen-external-apklibs
49+
50+
51+
### JetBrains ###
52+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
53+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
54+
55+
# User-specific stuff:
56+
.idea/workspace.xml
57+
.idea/tasks.xml
58+
.idea/dictionaries
59+
.idea/vcs.xml
60+
.idea/jsLibraryMappings.xml
61+
62+
# Sensitive or high-churn files:
63+
.idea/dataSources.ids
64+
.idea/dataSources.xml
65+
.idea/dataSources.local.xml
66+
.idea/sqlDataSources.xml
67+
.idea/dynamic.xml
68+
.idea/uiDesigner.xml
69+
70+
# Gradle:
71+
.idea/gradle.xml
72+
.idea/libraries
73+
74+
# Mongo Explorer plugin:
75+
.idea/mongoSettings.xml
76+
77+
## File-based project format:
78+
*.iws
79+
80+
## Plugin-specific files:
81+
82+
# IntelliJ
83+
/out/
84+
85+
# mpeltonen/sbt-idea plugin
86+
.idea_modules/
87+
88+
# JIRA plugin
89+
atlassian-ide-plugin.xml
90+
91+
# Crashlytics plugin (for Android Studio and IntelliJ)
92+
com_crashlytics_export_strings.xml
93+
crashlytics.properties
94+
crashlytics-build.properties
95+
fabric.properties
96+
97+
### JetBrains Patch ###
98+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
99+
100+
# *.iml
101+
# modules.xml
102+
103+
104+
### Eclipse ###
105+
106+
.metadata
107+
bin/
108+
tmp/
109+
*.tmp
110+
*.bak
111+
*.swp
112+
*~.nib
113+
local.properties
114+
.settings/
115+
.loadpath
116+
.recommenders
117+
118+
# Eclipse Core
119+
.project
120+
121+
# External tool builders
122+
.externalToolBuilders/
123+
124+
# Locally stored "Eclipse launch configurations"
125+
*.launch
126+
127+
# PyDev specific (Python IDE for Eclipse)
128+
*.pydevproject
129+
130+
# CDT-specific (C/C++ Development Tooling)
131+
.cproject
132+
133+
# JDT-specific (Eclipse Java Development Tools)
134+
.classpath
135+
136+
# Java annotation processor (APT)
137+
.factorypath
138+
139+
# PDT-specific (PHP Development Tools)
140+
.buildpath
141+
142+
# sbteclipse plugin
143+
.target
144+
145+
# Tern plugin
146+
.tern-project
147+
148+
# TeXlipse plugin
149+
.texlipse
150+
151+
# STS (Spring Tool Suite)
152+
.springBeans
153+
154+
# Code Recommenders
155+
.recommenders/
156+
157+
158+
### JetBrains ###
159+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
160+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
161+
162+
# User-specific stuff:
163+
.idea/workspace.xml
164+
.idea/tasks.xml
165+
.idea/dictionaries
166+
.idea/vcs.xml
167+
.idea/jsLibraryMappings.xml
168+
169+
# Sensitive or high-churn files:
170+
.idea/dataSources.ids
171+
.idea/dataSources.xml
172+
.idea/dataSources.local.xml
173+
.idea/sqlDataSources.xml
174+
.idea/dynamic.xml
175+
.idea/uiDesigner.xml
176+
177+
# Gradle:
178+
.idea/gradle.xml
179+
.idea/libraries
180+
181+
# Mongo Explorer plugin:
182+
.idea/mongoSettings.xml
183+
184+
## File-based project format:
185+
*.iws
186+
187+
## Plugin-specific files:
188+
189+
# IntelliJ
190+
/out/
191+
192+
# mpeltonen/sbt-idea plugin
193+
.idea_modules/
194+
195+
# JIRA plugin
196+
atlassian-ide-plugin.xml
197+
198+
# Crashlytics plugin (for Android Studio and IntelliJ)
199+
com_crashlytics_export_strings.xml
200+
crashlytics.properties
201+
crashlytics-build.properties
202+
fabric.properties
203+
204+
### JetBrains Patch ###
205+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
206+
207+
# *.iml
208+
# modules.xml
209+
210+
211+
### Windows ###
212+
# Windows image file caches
213+
Thumbs.db
214+
ehthumbs.db
215+
216+
# Folder config file
217+
Desktop.ini
218+
219+
# Recycle Bin used on file shares
220+
$RECYCLE.BIN/
221+
222+
# Windows Installer files
223+
*.cab
224+
*.msi
225+
*.msm
226+
*.msp
227+
228+
# Windows shortcuts
229+
*.lnk
230+
231+
232+
### OSX ###
233+
.DS_Store
234+
.AppleDouble
235+
.LSOverride
236+
237+
# Icon must end with two \r
238+
Icon
239+
240+
241+
# Thumbnails
242+
._*
243+
244+
# Files that might appear in the root of a volume
245+
.DocumentRevisions-V100
246+
.fseventsd
247+
.Spotlight-V100
248+
.TemporaryItems
249+
.Trashes
250+
.VolumeIcon.icns
251+
.com.apple.timemachine.donotpresent
252+
253+
# Directories potentially created on remote AFP share
254+
.AppleDB
255+
.AppleDesktop
256+
Network Trash Folder
257+
Temporary Items
258+
.apdisk
259+
260+
261+
### Gradle ###
262+
.gradle
263+
build/
264+
265+
# Ignore Gradle GUI config
266+
gradle-app.setting
267+
268+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
269+
!gradle-wrapper.jar
270+
271+
# Cache of project
272+
.gradletasknamecache
5273

6-
# Package Files #
7-
#*.jar
8-
*.war
9-
*.ear
274+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
275+
# gradle/wrapper/gradle-wrapper.properties
10276

11-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
12-
hs_err_pid*
13-
/gen
14-
/bin

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.idea/copyright/profiles_settings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)