-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate core to 6 - Memory Leak Fixes (#302)
* Migrate dependencies - Refactor failing tests - Add support for tagging GM and Vaccine events with extra details - Migrate/Update Sample app configuration * Fix unit tests 💚 * Fix bugs - Nullify overflow menu during ondestroy - Fix details map nullPointer exception - Fixes sample app crashes if Firebase not configured * Refactors + Enhancements - BaseChildRegister updatelocation() using app-executors - Move BaseChildRegisterFragment countsearch queries to background - Move Countexecute from UIthread in BaseAdvancedSearchFragment - Add overDueCount Setter and Getter in BaseChildRegisterFragment - Add App Version Name to Event Tagging * Disable bottom nav menu items on click - Closes #301 * Automate Artifact Release via CI/CD 👷 - Add CI configuration for automated releases - Bump up version * Update Build Status & Coveralls badges * Remove use of deprecated methods * Bump up version to 1.0.0-SNAPSHOT --------- Co-authored-by: Hamza Ahmed Khan <[email protected]> Co-authored-by: hilpitome <[email protected]> Co-authored-by: Ephraim Kigamba <[email protected]> Co-authored-by: Simon Njoroge <[email protected]>
- Loading branch information
1 parent
5de53b3
commit c32aa9d
Showing
61 changed files
with
1,013 additions
and
824 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This workflow will build a Java project with Gradle | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: Snapshot Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- v[0-9]+.[0-9]+.[0-9]+-SNAPSHOT | ||
- v[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+-SNAPSHOT | ||
- v[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+-[0-9a-zA-Z]+-SNAPSHOT | ||
env: | ||
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} | ||
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel previous workflow runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Run unit tests with Gradle | ||
run: ./gradlew :opensrp-child:clean :opensrp-child:testDebugUnitTest --stacktrace | ||
|
||
- name: Generate & upload library snapshot artifact AAR (Android Archive) file | ||
run: ./gradlew :opensrp-child:uploadArchives -PmavenLocal=false --stacktrace -PsonatypeUsername=${{ secrets.NEXUS_USERNAME }} -PsonatypePassword=${{ secrets.NEXUS_PASSWORD }} | ||
|
||
- name: Github Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
prerelease: ${{ contains(github.ref, '-alpha') || contains(github.ref, '-beta') }} |
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,6 +1,6 @@ | ||
#Sun Mar 14 15:25:46 EAT 2021 | ||
#Tue Jun 14 15:00:53 EAT 2022 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME |
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.