Skip to content

Commit 52291a1

Browse files
committedAug 16, 2021
Initial commit
0 parents  commit 52291a1

File tree

109 files changed

+4162
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+4162
-0
lines changed
 

‎.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

‎.gitignore

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
*.aab
5+
6+
# Files for the ART/Dalvik VM
7+
*.dex
8+
9+
# Java class files
10+
*.class
11+
12+
# Generated files
13+
bin/
14+
gen/
15+
out/
16+
17+
# Gradle files
18+
.gradle/
19+
build/
20+
21+
# Local configuration file (sdk path, etc)
22+
local.properties
23+
24+
# Proguard folder generated by Eclipse
25+
proguard/
26+
27+
# Log Files
28+
*.log
29+
30+
# Android Studio Navigation editor temp files
31+
.navigation/
32+
33+
# Android Studio captures folder
34+
captures/
35+
36+
# IntelliJ
37+
*.iml
38+
.idea/workspace.xml
39+
.idea/tasks.xml
40+
.idea/gradle.xml
41+
.idea/assetWizardSettings.xml
42+
.idea/dictionaries
43+
.idea/libraries
44+
.idea/caches
45+
46+
# Keystore files
47+
# Uncomment the following lines if you do not want to check your keystore files in.
48+
#*.jks
49+
#*.keystore
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

0 commit comments

Comments
 (0)
Please sign in to comment.