Skip to content

Commit 48dd8fd

Browse files
committed
add back files
1 parent 9d44ea5 commit 48dd8fd

File tree

190 files changed

+9155
-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.

190 files changed

+9155
-0
lines changed

.gitignore

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
.gradle
2+
.idea
3+
.DS_Store
4+
/build
5+
*/build
6+
/captures
7+
.cxx
8+
local.properties
9+
10+
# Built application files
11+
*.apk
12+
*.aar
13+
*.ap_
14+
*.aab
15+
!androidApp-release.apk
16+
17+
# Files for the ART/Dalvik VM
18+
*.dex
19+
20+
# Java class files
21+
*.class
22+
23+
# Generated files
24+
bin/
25+
gen/
26+
out/
27+
# Uncomment the following line in case you need and you don't have the release build type files in your app
28+
# release/
29+
30+
# Gradle files
31+
.gradle/
32+
build/
33+
34+
# Local configuration file (sdk path, etc)
35+
/local.properties
36+
37+
# Proguard folder generated by Eclipse
38+
proguard/
39+
40+
# Log Files
41+
*.log
42+
43+
# Android Studio Navigation editor temp files
44+
.navigation/
45+
46+
# Android Studio captures folder
47+
captures/
48+
49+
# IntelliJ
50+
*.iml
51+
.idea/workspace.xml
52+
.idea/tasks.xml
53+
.idea/gradle.xml
54+
.idea/assetWizardSettings.xml
55+
.idea/dictionaries
56+
.idea/libraries
57+
# Android Studio 3 in .gitignore file.
58+
.idea/caches
59+
.idea/modules.xml
60+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
61+
.idea/navEditor.xml
62+
63+
# Keystore files
64+
# Uncomment the following lines if you do not want to check your keystore files in.
65+
*.jks
66+
*.keystore
67+
68+
# External native build folder generated in Android Studio 2.2 and later
69+
.externalNativeBuild
70+
.cxx/
71+
72+
# Google Services (e.g. APIs or Firebase)
73+
google-services.json
74+
75+
# Freeline
76+
freeline.py
77+
freeline/
78+
freeline_project_description.json
79+
80+
# fastlane
81+
fastlane/report.xml
82+
fastlane/Preview.html
83+
fastlane/screenshots
84+
fastlane/test_output
85+
fastlane/readme.md
86+
87+
# Version control
88+
vcs.xml
89+
90+
# lint
91+
lint/intermediates/
92+
lint/generated/
93+
lint/outputs/
94+
lint/tmp/
95+
# lint/reports/
96+

CONTRIBUTING.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## 🤝 Contributing
2+
3+
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any
4+
contributions you make are **greatly appreciated**.
5+
6+
1. Open an issue first to discuss what you would like to change.
7+
1. Fork the Project
8+
1. Create your feature branch (`git checkout -b feature/1/amazing-feature`)
9+
1. Commit your changes (`git commit -m 'Add some amazing feature'`)
10+
1. Push to the branch (`git push origin feature/1/amazing-feature`)
11+
1. Open a pull request
12+
13+
(Here, `1` = issue number)

0 commit comments

Comments
 (0)