* Init uiTron * Lottie support & Image loading from url (#5055) * Added lottie support from url * Added support to show image from url * Added de-serializer for lottie support * UiTron Widget in Loan Details * UiTron Widget working in Loan Details * Added support for spacing in row (#5066) * UiTron Row + Margin in ComposeView * Elevation * Working card * Added support for row vertical alignment (#5070) * Card Shadow Color Support * Header Widget Response (#5077) * Moved DeepLinkManager from navi-common to navi-base (#5076) * layoutids from slider (#5080) * UiTron Text Observer * Clickable functionality for UiTron (#5082) * Moved DeepLinkManager from navi-common to navi-base * Added support for ctaData accept & clickable * Added mock JSON data for offer card * Added functionality of content scale * Fixed issue related to cta data passing for cardRenderer * Positng slider movement to observers (#5084) * UiTron Text Observer * Tested posting value to multiple layoutids * Updated mock * Updated icon urls * Dashed line support & column background alignment support (#5085) * Added support for dashed line in dividerRenderer * Added support for dashed line & column alignment property * Added dashed atomic width property * Refresh working with new data * Text Underline/LineThrough support * Lottie Rendering (#5088) * Fixed lottie rendering issues * removed unwanted changes * Added custom size for lottie * SharedFlow CtaCallback implementation (#5090) * Added flow to pass cta data to sharedFlow of viewmodel * Call to onCtaClick callback added in ctaCallback collect * Added UiTron Support in Top-Up Loan Details * cta handling added and checked for render (#5094) * cta handling added and checked for render * removed mocked navigation * added fix (#5097) * Integrated divider (#5096) * Integrated divider issue * Added width * Info card json update (#5099) * Height width fixed, alignment issue exist * Fixed alignment issue of info card element * Removing Mock * added ripple support (#5098) * added ripple support * handled edge cases * collect cta in LoanDetailsV2Fragment.kt * Snapped Header Text Color from BE * Removed Version Bump Co-authored-by: Ujjwal Kumar <ujjwal.kumar@navi.com> Co-authored-by: shreyansu raj <shreyansu.raj@navi.com> Co-authored-by: Jegatheeswaran M <jegatheeswaran.m@navi.com> Co-authored-by: Kishan Kumar <kishan.kumar@navi.com>
33 lines
875 B
Groovy
33 lines
875 B
Groovy
include ':app', ':digio-gateway-4.0.1', ':digio-kyc-workflow-4.0.1', ':digio-esign-4.0.0', ':pulse'
|
|
include ':neoeyed-sdk-release-3.4.0'
|
|
include ':finoramic-androidx-sdk'
|
|
rootProject.name='android-customer-app'
|
|
include ':navi-amc'
|
|
include ':navi-analytics'
|
|
include ':navi-common'
|
|
include ':navi-insurance'
|
|
include ':one-money-sdk'
|
|
include ':navi-widgets'
|
|
include ':navi-design'
|
|
include ':navi-chat'
|
|
include ':navi-vkyc'
|
|
|
|
boolean isCiServer = System.getenv().getOrDefault("CI", "false") == "true"
|
|
|
|
buildCache {
|
|
local {
|
|
enabled = true
|
|
directory = new File(rootDir, 'build-cache')
|
|
removeUnusedEntriesAfterDays = 15
|
|
}
|
|
remote(HttpBuildCache) {
|
|
enabled = true
|
|
push = isCiServer
|
|
url = "https://gradle-cache.cmd.navi-tech.in/cache/"
|
|
}
|
|
}
|
|
include ':navi-base'
|
|
include ':navi-hl'
|
|
include ':navi-pl'
|
|
include ':navi-uitron'
|