Skip to content

Commit 9601768

Browse files
Conflicts: .gitignore FPlib/FPlib.iml app/app.iml app/build.gradle
2 parents dac13ab + 68c852d commit 9601768

File tree

147 files changed

+3239
-1661
lines changed

Some content is hidden

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

147 files changed

+3239
-1661
lines changed

.gitignore

+238-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,242 @@
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
40+
<<<<<<< HEAD
541
/build
642
.idea/
743
*.jks
44+
=======
45+
.AppleDouble
46+
.LSOverride
47+
48+
# Icon must end with two \r
49+
Icon
50+
51+
52+
# Thumbnails
53+
._*
54+
55+
# Files that might appear in the root of a volume
56+
.DocumentRevisions-V100
57+
.fseventsd
58+
.Spotlight-V100
59+
.TemporaryItems
60+
.Trashes
61+
.VolumeIcon.icns
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
71+
### Intellij ###
72+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
73+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
74+
75+
# User-specific stuff:
76+
.idea/workspace.xml
77+
.idea/tasks.xml
78+
.idea/dictionaries
79+
.idea/vcs.xml
80+
.idea/jsLibraryMappings.xml
81+
82+
# Sensitive or high-churn files:
83+
.idea/dataSources.ids
84+
.idea/dataSources.xml
85+
.idea/sqlDataSources.xml
86+
.idea/dynamic.xml
87+
.idea/uiDesigner.xml
88+
89+
# Gradle:
90+
.idea/gradle.xml
91+
.idea/libraries
92+
93+
# Mongo Explorer plugin:
94+
.idea/mongoSettings.xml
95+
96+
## File-based project format:
97+
*.iws
98+
99+
## Plugin-specific files:
100+
101+
# IntelliJ
102+
/out/
103+
104+
# mpeltonen/sbt-idea plugin
105+
.idea_modules/
106+
107+
# JIRA plugin
108+
atlassian-ide-plugin.xml
109+
110+
# Crashlytics plugin (for Android Studio and IntelliJ)
111+
com_crashlytics_export_strings.xml
112+
crashlytics.properties
113+
crashlytics-build.properties
114+
fabric.properties
115+
116+
117+
### Eclipse ###
118+
119+
.metadata
120+
bin/
121+
tmp/
122+
*.tmp
123+
*.bak
124+
*.swp
125+
*~.nib
126+
local.properties
127+
.settings/
128+
.loadpath
129+
130+
# Eclipse Core
131+
.project
132+
133+
# External tool builders
134+
.externalToolBuilders/
135+
136+
# Locally stored "Eclipse launch configurations"
137+
*.launch
138+
139+
# PyDev specific (Python IDE for Eclipse)
140+
*.pydevproject
141+
142+
# CDT-specific (C/C++ Development Tooling)
143+
.cproject
144+
145+
# JDT-specific (Eclipse Java Development Tools)
146+
.classpath
147+
148+
# Java annotation processor (APT)
149+
.factorypath
150+
151+
# PDT-specific (PHP Development Tools)
152+
.buildpath
153+
154+
# sbteclipse plugin
155+
.target
156+
157+
# Tern plugin
158+
.tern-project
159+
160+
# TeXlipse plugin
161+
.texlipse
162+
163+
# STS (Spring Tool Suite)
164+
.springBeans
165+
166+
# Code Recommenders
167+
.recommenders/
168+
169+
170+
### Java ###
171+
*.class
172+
173+
# Mobile Tools for Java (J2ME)
174+
.mtj.tmp/
175+
176+
# Package Files #
177+
*.jar
178+
*.war
179+
*.ear
180+
181+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
182+
hs_err_pid*
183+
184+
185+
### Gradle ###
186+
.gradle
187+
build/
188+
189+
# Ignore Gradle GUI config
190+
gradle-app.setting
191+
192+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
193+
!gradle-wrapper.jar
194+
195+
# Cache of project
196+
.gradletasknamecache
197+
198+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
199+
# gradle/wrapper/gradle-wrapper.properties
200+
201+
202+
### Android ###
203+
# Built application files
204+
*.apk
205+
*.ap_
206+
207+
# Files for the Dalvik VM
208+
*.dex
209+
210+
# Java class files
211+
*.class
212+
213+
# Generated files
214+
bin/
215+
gen/
216+
out/
217+
218+
# Gradle files
219+
.gradle/
220+
build/
221+
222+
# Local configuration file (sdk path, etc)
223+
local.properties
224+
225+
# Proguard folder generated by Eclipse
226+
proguard/
227+
228+
# Log Files
229+
*.log
230+
231+
# Android Studio Navigation editor temp files
232+
.navigation/
233+
234+
# Android Studio captures folder
235+
captures/
236+
237+
# Intellij
238+
*.iml
239+
240+
### Android Patch ###
241+
gen-external-apklibs
242+
>>>>>>> 68c852d17ee457390c69f9cc460e780d04a3c0df

.idea/.name

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+8-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)