-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from nimblehq/release/3.7.0
[Release] 3.7.0
- Loading branch information
Showing
217 changed files
with
413 additions
and
238 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
# Team Lead | ||
* @Tuubz | ||
|
||
# Team Members | ||
* @AVI5HEK @chornerman @doannimble @hoangnguyen92dn @kaungkhantsoe @luongvo @lydiasama @manh-t @minhnimble @ryan-conway @sleepylee @Wadeewee | ||
# Team | ||
# @Tuubz is the Team Lead and the others are team members | ||
* @AVI5HEK @chornerman @doannimble @hoangnguyen92dn @kaungkhantsoe @luongvo @lydiasama @manh-t @minhnimble @ryan-conway @sleepylee @Tuubz @Wadeewee | ||
|
||
# Engineering Leads | ||
CODEOWNERS @nimblehq/engineering-leads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,51 @@ | ||
# Android Templates: Coroutine | ||
|
||
- Our optimized Android templates used in our android projects | ||
|
||
### Setup | ||
## Setup | ||
|
||
- Clone the project | ||
- Checkout our main development branch `kotlin` | ||
- Run the project with Android Studio | ||
|
||
### Linter and static code analysis | ||
## Linter and static code analysis | ||
|
||
1. Check Style: | ||
- Lint: | ||
|
||
``` | ||
$ ./gradlew checkStyle | ||
$ ./gradlew lint | ||
``` | ||
|
||
Report is located at: `./app/build/reports/checkstyle/` | ||
Report is located at: `./app/build/reports/lint/` | ||
|
||
2. Detekt | ||
- Detekt | ||
|
||
``` | ||
$ ./gradlew detekt | ||
``` | ||
|
||
Report is located at: `./build/reports/detekt.html` | ||
Report is located at: `./build/reports/detekt` | ||
|
||
## Testing | ||
|
||
- Run unit testing: | ||
|
||
``` | ||
$ ./gradlew app:testStagingDebugUnitTest | ||
$ ./gradlew data:testDebugUnitTest | ||
$ ./gradlew domain:test | ||
``` | ||
|
||
- Run unit testing with coverage: | ||
|
||
``` | ||
$ ./gradlew jacocoTestReport | ||
``` | ||
|
||
Report is located at: `./app/build/reports/jacoco/` | ||
|
||
## Build and deploy | ||
|
||
For `release` builds, we need to provide release keystore and signing properties: | ||
|
||
- Put the `release.keystore` file at root `config` folder. | ||
- Put keystore signing properties in [signing.properties](https://github.com/nimblehq/android-templates/blob/develop/CoroutineTemplate/signing.properties). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
CoroutineTemplate/app/src/main/java/co/nimblehq/coroutine/di/modules/RepositoryModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.