Skip to content

Commit 619fe02

Browse files
committed
[lib-bug] Updated gitignore and buildsystem to the latest version.
1 parent 4b54c5a commit 619fe02

File tree

2 files changed

+85
-37
lines changed

2 files changed

+85
-37
lines changed

.gitignore

Lines changed: 84 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# Built application files
2-
*.apk
3-
*.ap_
1+
################################################
2+
#### Java
3+
hs_err_pid*
44

5-
# Files for the ART/Dalvik VM
6-
*.dex
7-
8-
# Java class files
9-
*.class
5+
################################################
6+
#### Android
107

118
# Generated files
129
bin/
1310
gen/
14-
out/
1511

1612
# Gradle files
17-
.gradle/
13+
.gradle
14+
gradle-app.setting
1815
build/
16+
captures/
17+
.externalNativeBuild
18+
gradle.propierties
1919

2020
# Local configuration file (sdk path, etc)
2121
local.properties
@@ -29,38 +29,86 @@ proguard/
2929
# Android Studio Navigation editor temp files
3030
.navigation/
3131

32-
# Android Studio captures folder
33-
captures/
34-
35-
# IntelliJ
32+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
33+
!gradle-wrapper.jar
34+
35+
# Espresso
36+
*.esproj
37+
38+
# Android Studio and Intellij and Android in general
39+
android/libs/armeabi/
40+
android/libs/armeabi-v7a/
41+
android/libs/x86/
42+
android/gen/
43+
/*/.idea
44+
/.idea
45+
*.ipr
46+
*.iws
3647
*.iml
37-
.idea/
48+
out/
49+
50+
# Avoid ignoring Project Code Style Settings
51+
!.idea/codeStyles/Project.xml
52+
!.idea/codeStyleSettings.xml
3853
!.idea/modules.xml
39-
!.idea/codeStyles
40-
!.idea/codeStyles/**
4154

42-
# Keystore files
43-
# Uncomment the following line if you do not want to check your keystore files in.
44-
#*.jks
55+
# Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
56+
.idea/tasks.xml
57+
.idea/datasources.xml
58+
.idea/dataSources.ids
4559

46-
# External native build folder generated in Android Studio 2.2 and later
47-
.externalNativeBuild
4860

49-
# Google Services (e.g. APIs or Firebase)
50-
google-services.json
61+
################################################
62+
#### OSX
63+
64+
.DS_Store
65+
.AppleDouble
66+
.LSOverride
67+
68+
# Icon must end with two \r
69+
Icon
70+
71+
# Thumbnails
72+
._*
73+
74+
# Files that might appear in the root of a volume
75+
.DocumentRevisions-V100
76+
.fseventsd
77+
.Spotlight-V100
78+
.TemporaryItems
79+
.Trashes
80+
.VolumeIcon.icns
81+
82+
# Directories potentially created on remote AFP share
83+
.AppleDB
84+
.AppleDesktop
85+
Network Trash Folder
86+
Temporary Items
87+
.apdisk
88+
89+
90+
################################################
91+
#### Windows
92+
93+
# Windows image file caches
94+
Thumbs.db
95+
ehthumbs.db
96+
97+
# Folder config file
98+
Desktop.ini
99+
100+
# Recycle Bin used on file shares
101+
$RECYCLE.BIN/
51102

52-
# Freeline
53-
freeline.py
54-
freeline/
55-
freeline_project_description.json
103+
# Windows Installer files
104+
*.cab
105+
*.msi
106+
*.msm
107+
*.msp
56108

57-
# fastlane
58-
fastlane/report.xml
59-
fastlane/Preview.html
60-
fastlane/screenshots
61-
fastlane/test_output
62-
fastlane/readme.md
109+
# Windows shortcuts
110+
*.lnk
63111

64-
#Custom
112+
## Custom
65113
version.properties
66-
*/**/version.properties
114+
/*/version.properties

buildsystem

0 commit comments

Comments
 (0)