-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.gitignore
102 lines (86 loc) · 1.55 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
## Gradle:
.gradle/
gradle-app.setting
local.properties
/build/
/android/*/build/
/core/build/
/lwjgl3/build/
/teavm/build/
## Java:
*.class
*.war
*.ear
hs_err_pid*
.attach_pid*
## Android:
/android/*/libs/armeabi-v7a/
/android/*/libs/arm64-v8a/
/android/*/libs/x86/
/android/*/libs/x86_64/
/android/*/gen/
/android/*/out/
/android/*/release/
local.properties
com_crashlytics_export_strings.xml
## TeaVM:
# Not sure yet...
## IntelliJ, Android Studio:
.idea/
*.ipr
*.iws
*.iml
## Eclipse:
.classpath
.project
.metadata/
/android/*/bin/
/core/bin/
/lwjgl3/bin/
/teavm/bin/
*.tmp
*.bak
*.swp
*~.nib
.settings/
.loadpath
.externalToolBuilders/
*.launch
## NetBeans:
/nbproject/private/
/android/*/nbproject/private/
/core/nbproject/private/
/lwjgl3/nbproject/private/
/teavm/nbproject/private/
/nbbuild/
/android/*/nbbuild/
/core/nbbuild/
/lwjgl3/nbbuild/
/teavm/nbbuild/
/dist/
/android/*/dist/
/core/dist/
/lwjgl3/dist/
/teavm/dist/
/nbdist/
/android/*/nbdist/
/core/nbdist/
/lwjgl3/nbdist/
/teavm/nbdist/
nbactions.xml
nb-configuration.xml
## OS-Specific:
.DS_Store
Thumbs.db
## Miscellaneous:
*~
*.*#
*#*#
/assets/assets.txt
/assets/version.txt
## Special cases:
## There is a resource-config.json file generated by nativeimage.gradle if you use Graal Native Image.
## Some usage may need extra resource configuration in a different file with the same name.
## You could also add that configuration to the text in nativeimage.gradle .
## You should delete or comment out the next line if you have configuration in a different resource-config.json .
**/resource-config.json