* TP-22237 | Added payment module * TP-22237 | Added base classes * TP-22237 | Refector old razorpay codebase * TP-22029 | added repo * TP-19047 | PS | added cashfree integration * TP-22029 | added repo * TP-19047 | PS | added cashfree environment * TP-19047 | PS | added network layer in payment sdk * TP-19047 | PS | cashfree integration (#5873) * TP-19047 | PS | added cashfree integration * TP-22029 | added repo * TP-19047 | PS | added cashfree environment * TP-19047 | PS | added network layer in payment sdk Co-authored-by: Shankar Yadav <shankar.yadav@navi.com> * TP-23556 | PS | added api layer in navi-payment * TP-23556 | PS | change api call method * TP-23556 | PS | Payment sdk api layer (#5967) * TP-19047 | PS | added cashfree integration * TP-22029 | added repo * TP-19047 | PS | added cashfree environment * TP-19047 | PS | added network layer in payment sdk * TP-23556 | PS | added api layer in navi-payment Co-authored-by: Shankar Yadav <shankar.yadav@navi.com> * TP-23556 | PS | amc syc flow in paymentSummary * TP-23556 | PS | amc syc flow in otp, orderstatus and auto pay * TP-23556 | PS | razopay sync flow common sdk * TP-23556 | PS | updated proguard for razorpay and moved juspay to navi-common * TP-23556 | PS | removed unused files * TP-23556 | PS | added payment processing event name * TP-23556 | PS | resolved comments, error handling * TP-23556 | PS | added analytics events * TP-23556 | PS | fix sip first payment * TP-23556 | PS | fix complie error * TP-23556 | PS | fix analytics event Co-authored-by: Shankar Yadav <shankar.yadav@navi.com>
32 lines
839 B
Groovy
32 lines
839 B
Groovy
include ':app', ':digio-gateway-4.0.3', ':digio-kyc-workflow-4.0.3', ':digio-esign-4.0.3', ':pulse'
|
|
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-payment'
|