Skip to content

Commit a0cf2d5

Browse files
committed
chore: update gitignore
1 parent cd2ebf5 commit a0cf2d5

File tree

2 files changed

+148
-9
lines changed

2 files changed

+148
-9
lines changed

.gitignore

Lines changed: 78 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,81 @@
11
*.iml
2-
.idea
32
.gradle
4-
local.properties
3+
/local.properties
4+
/.idea/caches/build_file_checksums.ser
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
58
.DS_Store
6-
Gemfile
7-
build
8-
app/build
9-
app/release
10-
app/.cxx
11-
fastlane/Appfile
9+
/build
10+
/captures
11+
.externalNativeBuild
12+
libs/
13+
### Android template
14+
# Built application files
15+
*.apk
16+
*.ap_
17+
18+
# Files for the ART/Dalvik VM
19+
*.dex
20+
21+
# Java class files
22+
*.class
23+
24+
# Generated files
25+
bin/
26+
gen/
27+
out/
28+
29+
# Gradle files
30+
.gradle/
31+
build/
32+
33+
# Local configuration file (sdk path, etc)
34+
local.properties
35+
36+
# Proguard folder generated by Eclipse
37+
proguard/
38+
39+
# Log Files
40+
*.log
41+
42+
# Android Studio Navigation editor temp files
43+
.navigation/
44+
45+
# Android Studio captures folder
46+
captures/
47+
48+
# IntelliJ
49+
*.iml
50+
.idea/workspace.xml
51+
.idea/tasks.xml
52+
.idea/gradle.xml
53+
.idea/assetWizardSettings.xml
54+
.idea/dictionaries
55+
.idea/libraries
56+
.idea/caches
57+
58+
# Keystore files
59+
# Uncomment the following line if you do not want to check your keystore files in.
60+
#*.jks
61+
62+
# External native build folder generated in Android Studio 2.2 and later
63+
.externalNativeBuild
64+
65+
# Google Services (e.g. APIs or Firebase)
66+
google-services.json
67+
68+
# Freeline
69+
freeline.py
70+
freeline/
71+
freeline_project_description.json
72+
73+
# fastlane
74+
fastlane/report.xml
75+
fastlane/Preview.html
76+
fastlane/screenshots
77+
fastlane/test_output
78+
fastlane/readme.md
79+
fastlane/.env
80+
81+
.idea/

app/.gitignore

Lines changed: 70 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,70 @@
1-
/build
1+
/build
2+
### Android template
3+
# Built application files
4+
*.apk
5+
*.ap_
6+
7+
# Files for the ART/Dalvik VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# Generated files
14+
bin/
15+
gen/
16+
out/
17+
18+
# Gradle files
19+
.gradle/
20+
build/
21+
22+
# Local configuration file (sdk path, etc)
23+
local.properties
24+
25+
# Proguard folder generated by Eclipse
26+
proguard/
27+
28+
# Log Files
29+
*.log
30+
31+
# Android Studio Navigation editor temp files
32+
.navigation/
33+
34+
# Android Studio captures folder
35+
captures/
36+
37+
# IntelliJ
38+
*.iml
39+
.idea/workspace.xml
40+
.idea/tasks.xml
41+
.idea/gradle.xml
42+
.idea/assetWizardSettings.xml
43+
.idea/dictionaries
44+
.idea/libraries
45+
.idea/caches
46+
47+
# Keystore files
48+
# Uncomment the following line if you do not want to check your keystore files in.
49+
*.jks
50+
51+
# External native build folder generated in Android Studio 2.2 and later
52+
.externalNativeBuild
53+
54+
# Google Services (e.g. APIs or Firebase)
55+
google-services.json
56+
57+
# Freeline
58+
freeline.py
59+
freeline/
60+
freeline_project_description.json
61+
62+
# fastlane
63+
fastlane/report.xml
64+
fastlane/Preview.html
65+
fastlane/screenshots
66+
fastlane/test_output
67+
fastlane/readme.md
68+
69+
/src/main/res/values/private-strings.xml
70+
keystore.properties

0 commit comments

Comments
 (0)