Skip to content

Commit 312434b

Browse files
committed
add .gitignore
1 parent 2cec3aa commit 312434b

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
.DS_Store
2+
3+
# IntelliJ Idea
4+
.idea/
5+
*.iml
6+
7+
# Gradle & Java build
8+
.gradle
9+
build/
10+
bin/
11+
gen/
12+
target/
13+
out/
14+
classes/
15+
gradle.properties
16+
17+
# Local build properties
18+
build.properties
19+
local.properties
20+
21+
### CMake build files
22+
CMakeFiles/
23+
CMakeCache.txt
24+
Makefile
25+
*.cmake
26+
.externalNativeBuild
27+
cmake-build-debug/
28+
# used by build.sh script
29+
cbuild/
30+
31+
# Native libs
32+
objectbox*.dll
33+
libobjectbox*.so
34+
35+
### Build script
36+
/Release/
37+
/Debug/
38+
39+
### Test DB files
40+
data.mdb
41+
lock.mdb
42+
test-db/
43+
jni-unit-test-db/
44+
test-db64/
45+
perf-test-db/
46+
perf-test-db64/
47+
tests/test-entity-annotations/objectbox/
48+
49+
## Backups
50+
.gitignore~
51+
*.txt~
52+
default.json.bak
53+
54+
# Java crash reports
55+
hs_err_pid*.log
56+
57+
# Misc
58+
callgrind.out.*
59+
/captures/
60+
valgrind.log

0 commit comments

Comments
 (0)