Skip to content

Commit 8582db3

Browse files
Add Clean Architecture ,DataStore & DI using Hilt
Add Clean Architecture ,DataStore & DI using Hilt
2 parents 135391a + c3adcc0 commit 8582db3

File tree

115 files changed

+4115
-3235
lines changed

Some content is hidden

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

115 files changed

+4115
-3235
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
## PR type
2+
What kind of change does this PR introduce?
3+
4+
<!-- Please check the one that applies to this PR using "x". -->
5+
6+
- [ ] Bugfix
7+
- [ ] Feature
8+
- [ ] Code style update
9+
- [ ] Refactoring (no functional changes, no api changes)
10+
- [ ] Build related changes
11+
- [ ] Documentation content changes
12+
- [ ] Other... Please describe:
13+
14+
## PR checklist
15+
16+
Please check if your PR fulfills the following requirements:
17+
18+
- [ ] I have read the CONTRIBUTING.md doc
19+
- [ ] I have added necessary documentation (if appropriate)
20+
- [ ] The Git workflow follows our guidelines: CONTRIBUTING.md#git
21+
22+
## What is the current behavior?
23+
24+
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
25+
26+
Issue number: N/A
27+
28+
## What is the new behavior?
29+
30+
## Does this PR introduce a breaking change?
31+
32+
- [ ] Yes
33+
- [ ] No
34+
35+
<!-- If this PR contains a breaking change, please describe the impact it has for existing app version. -->
36+
37+
## Other information

.gitignore

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,34 @@
1+
# Gradle files
12
.gradle/
2-
/build/
3-
app/build/
3+
build/
4+
.kotlin
5+
# Local configuration file (sdk path, etc)
46
local.properties
7+
8+
# Log/OS Files
9+
*.log
10+
11+
# Android Studio generated files and folders
12+
captures/
13+
.externalNativeBuild/
14+
.cxx/
15+
*.aab
16+
*.apk
17+
output-metadata.json
18+
19+
# IntelliJ
20+
*.iml
521
.idea/
6-
/.idea/caches
7-
.idea/libraries
8-
.idea/modules.xml
9-
.idea/workspace.xml
10-
.idea/navEditor.xml
11-
.idea/assetWizardSettings.xml
12-
.kotlinc/
13-
.kotlinc_caches/
14-
.DS_Store
15-
/captures
16-
.externalNativeBuild
17-
.cxx
18-
*.iml
22+
misc.xml
23+
deploymentTargetDropDown.xml
24+
render.experimental.xml
25+
26+
# Keystore files
27+
*.jks
28+
*.keystore
29+
30+
# Google Services (e.g. APIs or Firebase)
31+
google-services.json
32+
33+
# Android Profiling
34+
*.hprof

AUTHORS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This is the official list of ConvertIt authors
2+
3+
# Names should be added to this file as
4+
# Name <email address>
5+
6+
7+
# Individual Persons
8+
9+
Tamim Hossain <[email protected]>
10+
11+
# Organizations
12+
13+
The Byte Array LTD

CHANGELOG.md

Lines changed: 0 additions & 56 deletions
This file was deleted.

F-DROID.md

Lines changed: 0 additions & 111 deletions
This file was deleted.

0 commit comments

Comments
 (0)