-
Notifications
You must be signed in to change notification settings - Fork 201
/
.gitignore
45 lines (35 loc) · 850 Bytes
/
.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
# Temp files
*~
*.class
*.pyc
.DS_Store
# Make sure keystore.jks never gets added to source control, it's SEKRET!
keystore.jks
signing.properties
# These are generated from the .proto files.
common/src/main/java/au/com/codeka/warworlds/common/proto/
# A bunch of data files.
server/src/main/data/cache/*
server/src/main/data/store/*
server/src/main/data/config-debug.json
server/src/main/data/firebase.json
client/signing.properties
client/*.apk
server/src/main/data/logs/
# Android Studio/gradle files and directories
.gradle
.idea/*
!.idea/codeStyleSettings.xml
!.idea/dictionaries/
local.properties
captures/
*.iml
# No idea why these are being created
common/.attach_pid*
# Ignore build directory in top-level folder and the first child. This is where
# build artifacts go.
/build
/*/build/
# Ignore generated android code
** gen/
gen/