2020-05-07 12:49:05 +05:30
|
|
|
plugins {
|
2023-09-04 14:44:59 +05:30
|
|
|
alias libs.plugins.android.application
|
2024-03-29 16:09:39 +05:30
|
|
|
alias libs.plugins.baseline.profile
|
2023-09-04 14:44:59 +05:30
|
|
|
alias libs.plugins.firebase.crashlytics
|
2023-10-27 18:45:32 +05:30
|
|
|
alias libs.plugins.firebase.perf
|
2023-09-04 14:44:59 +05:30
|
|
|
alias libs.plugins.google.services
|
|
|
|
|
alias libs.plugins.hilt.android
|
|
|
|
|
alias libs.plugins.kotlin.android
|
2024-11-09 17:22:46 +05:30
|
|
|
alias libs.plugins.kotlin.compose
|
2023-09-04 14:44:59 +05:30
|
|
|
alias libs.plugins.kotlin.kapt
|
|
|
|
|
alias libs.plugins.kotlin.parcelize
|
2025-02-03 19:29:06 +05:30
|
|
|
alias libs.plugins.kotlin.serialization
|
2023-11-28 14:20:23 +05:30
|
|
|
alias libs.plugins.ksp
|
2024-06-14 16:45:28 +05:30
|
|
|
alias libs.plugins.maven.publish
|
|
|
|
|
alias libs.plugins.facebook.react
|
2021-08-24 13:49:01 +05:30
|
|
|
}
|
|
|
|
|
|
2025-04-15 11:48:26 +05:30
|
|
|
def VERSION_CODE = 483
|
|
|
|
|
def VERSION_NAME = "5.40.2"
|
2023-02-17 17:19:54 +05:30
|
|
|
|
2020-03-31 18:19:44 +05:30
|
|
|
android {
|
2022-12-19 13:26:56 +05:30
|
|
|
namespace 'com.naviapp'
|
2024-11-26 01:50:43 +05:30
|
|
|
compileSdk 35
|
2025-04-14 15:36:47 +05:30
|
|
|
ndkVersion "26.1.10909125"
|
2024-01-30 16:26:46 +05:30
|
|
|
|
2019-10-31 15:23:40 +05:30
|
|
|
defaultConfig {
|
2020-04-02 21:17:50 +05:30
|
|
|
applicationId "com.naviapp"
|
2024-11-12 18:36:07 +05:30
|
|
|
minSdk 24
|
2024-08-13 14:30:04 +05:30
|
|
|
targetSdk 34
|
2022-12-19 13:26:56 +05:30
|
|
|
versionCode VERSION_CODE
|
2020-03-31 18:19:44 +05:30
|
|
|
versionName VERSION_NAME
|
2024-01-30 16:26:46 +05:30
|
|
|
|
2019-11-15 14:46:08 +05:30
|
|
|
multiDexEnabled true
|
2024-01-30 16:26:46 +05:30
|
|
|
resourceConfigurations += ['en']
|
2019-10-31 15:23:40 +05:30
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2020-04-29 10:41:40 +05:30
|
|
|
testInstrumentationRunnerArguments clearPackageData: 'true'
|
2024-07-04 18:31:19 +05:30
|
|
|
resValue 'string', 'build_config_package', 'com.naviapp'
|
2020-04-29 10:41:40 +05:30
|
|
|
}
|
2024-01-30 16:26:46 +05:30
|
|
|
|
2020-03-31 18:19:44 +05:30
|
|
|
signingConfigs {
|
2023-04-10 17:45:54 +05:30
|
|
|
debug {
|
2024-07-04 18:31:19 +05:30
|
|
|
if (project.hasProperty('RELEASE_STORE_PASSWORD')
|
|
|
|
|
&& project.hasProperty('RELEASE_KEY_ALIAS')
|
|
|
|
|
&& project.hasProperty('RELEASE_KEY_PASSWORD')
|
|
|
|
|
) {
|
|
|
|
|
storeFile file("navi-release-key.jks")
|
|
|
|
|
storePassword "$RELEASE_STORE_PASSWORD"
|
|
|
|
|
keyAlias "$RELEASE_KEY_ALIAS"
|
|
|
|
|
keyPassword "$RELEASE_KEY_PASSWORD"
|
|
|
|
|
} else {
|
|
|
|
|
storeFile file("../keystore/navi-non-prod-release-key.jks")
|
|
|
|
|
storePassword "tPGSdwWiUkmH0Xr2MyVHHLVkdCCMOIU97SL_HUuyATmKEMx8ys4mp_JYCuFV94G7"
|
|
|
|
|
keyAlias "key0"
|
|
|
|
|
keyPassword "At3yvOS6w-1OlNZQd1nk_5kYkPKa2lklHxHZ_FMKOGgKD28z_QMdCNjoFXWg-dRz"
|
|
|
|
|
}
|
2023-04-10 17:45:54 +05:30
|
|
|
}
|
2020-03-31 18:19:44 +05:30
|
|
|
release {
|
2023-07-20 11:13:09 +05:30
|
|
|
if (project.hasProperty('RELEASE_STORE_PASSWORD')
|
|
|
|
|
&& project.hasProperty('RELEASE_KEY_ALIAS')
|
|
|
|
|
&& project.hasProperty('RELEASE_KEY_PASSWORD')
|
|
|
|
|
) {
|
2020-03-31 18:19:44 +05:30
|
|
|
storeFile file("navi-release-key.jks")
|
|
|
|
|
storePassword "$RELEASE_STORE_PASSWORD"
|
|
|
|
|
keyAlias "$RELEASE_KEY_ALIAS"
|
2023-07-20 11:13:09 +05:30
|
|
|
keyPassword "$RELEASE_KEY_PASSWORD"
|
2024-07-04 18:31:19 +05:30
|
|
|
} else {
|
|
|
|
|
storeFile file("../keystore/navi-non-prod-release-key.jks")
|
|
|
|
|
storePassword "tPGSdwWiUkmH0Xr2MyVHHLVkdCCMOIU97SL_HUuyATmKEMx8ys4mp_JYCuFV94G7"
|
|
|
|
|
keyAlias "key0"
|
|
|
|
|
keyPassword "At3yvOS6w-1OlNZQd1nk_5kYkPKa2lklHxHZ_FMKOGgKD28z_QMdCNjoFXWg-dRz"
|
2020-03-31 18:19:44 +05:30
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-01-30 16:26:46 +05:30
|
|
|
androidResources {
|
|
|
|
|
ignoreAssetsPattern '!yolov5n_224x224_Lite.tflite'
|
|
|
|
|
}
|
|
|
|
|
buildFeatures {
|
|
|
|
|
compose true
|
|
|
|
|
dataBinding true
|
2020-04-29 10:41:40 +05:30
|
|
|
}
|
2019-10-31 15:23:40 +05:30
|
|
|
buildTypes {
|
2019-11-15 14:46:08 +05:30
|
|
|
debug {
|
|
|
|
|
versionNameSuffix "-debug"
|
2020-04-29 10:41:40 +05:30
|
|
|
testCoverageEnabled = true
|
2021-08-19 16:05:43 +05:30
|
|
|
manifestPlaceholders = [branchMode: 'true']
|
2023-10-27 18:45:32 +05:30
|
|
|
FirebasePerformance {
|
|
|
|
|
instrumentationEnabled false
|
|
|
|
|
}
|
2022-03-04 14:04:07 +05:30
|
|
|
testCoverageEnabled false
|
2023-04-10 17:45:54 +05:30
|
|
|
signingConfig signingConfigs.debug
|
2024-04-05 15:07:08 +05:30
|
|
|
matchingFallbacks = ['debug']
|
2024-07-04 18:31:19 +05:30
|
|
|
resValue 'string', 'build_config_package', 'com.naviapp.dev'
|
2019-11-15 14:46:08 +05:30
|
|
|
}
|
2024-03-29 16:09:39 +05:30
|
|
|
benchmark {
|
|
|
|
|
initWith release
|
|
|
|
|
debuggable false
|
|
|
|
|
minifyEnabled true
|
2024-11-04 17:29:19 +05:30
|
|
|
shrinkResources true
|
2024-06-26 14:45:01 +05:30
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro', 'retrofit2.pro', 'alfred.pro', 'courier.pro', 'adverse.pro'
|
2024-03-29 16:09:39 +05:30
|
|
|
matchingFallbacks = ['release']
|
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
|
manifestPlaceholders = [branchMode: 'false']
|
2024-07-04 18:31:19 +05:30
|
|
|
resValue 'string', 'build_config_package', 'com.naviapp.dev'
|
2024-03-29 16:09:39 +05:30
|
|
|
}
|
2019-10-31 15:23:40 +05:30
|
|
|
release {
|
Release 1.2.5 into master (#1025)
* Release 1.2.3 into master (#993) (#994)
* Release 1.2.3 into master (#993)
* Master(Release 1.2.1) into develop (#959)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.5 into master (#921)
* Master into develop (#899)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Feature/handle offer expiry (#900)
* Shashidhara | Add offer expiry screen
* Shashidhara | Default to loader color for offer expiry
* Shashidhara | Handle firebase failure on apply loan
* Shashidhara | Handle firebase failure on add bank detail
* Shashidhara | Avoid resetting async data
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Reposition loader
* Shashidhara | Default loan amount slider to max (#903)
* Shashidhara | Add collapsible permissions (#902)
* Shashidhara | Add collapsible permissions
* Shashidhara | Remove unused imports
* Shashidhara | Handle multiple clicks
* Feature/pg repayment enhancement (#905)
* pgrepayment enhancement started....
* pgrepayment enhancement
* updated firebase KEY
* Feature/loan closure feature (#906)
* pgrepayment enhancement started....
* added loancloser view on loandetail
* pgrepayment enhancement
* loan preclosure click open new page
* minor changes
* loan foreclosure
* crash fixes
* key changes and using firebase changes
* added type for preloan closure
* Shashidhara | Update about us and list of cities (#904)
* Shashidhara | Update about us and list of cities
* Shashidhara | Read list of states and cities from xml
* Shashidhara | Move list to arrays
* fixed (#907)
* emi calendar contract changes, ui changes (#909)
* Shashidhara | Navigate focus to dob date field post name (#908)
* crash fixes (#912)
* crash fixes
* warning screen crash fix
* minor changes
* double click on topbar: loan application journey
* minor refactoring
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue… (#910)
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue for loan eligible, gaId passing to backend
* key name change
* proguard rules for Singular
* emi calender changes
* minor changes
* dev key added
* Feature/home redesign (#914)
* Shashidhara | Update font styles for loan card
* Shashidhara | Refactor card border
* Shashidhara | Update dimens and colors
* Shashidhara | Update loan action icons
* Feature/whatsapp integration (#911)
* Shashidhara | Add whatsapp consent on phone number screen
* Shashidhara | Update consent text
* Shashidhara | Add whatsapp notifications card on home screen
* Shashidhara | Add whatsapp notifications settings
* Shashidhara | Add communication medium apis to login screen and home screen
* Shashidhara | Add communication medium apis to notificaiton settings
* Shashidhara | Add disable notifications view and refactor packaging
* Shashidhara | Add disable notifications icon
* Shashidhara | Remove redundant string
* Shashidhara | Update whatsapp notifications card title
* Shashidhara | Parameterize delay for whatsapp notifications card
* Shashidhara | Update communication mediums post otp verification
* Shashidhara | Add back button functionality and update api endpoints
* Shashidhara | Handle onResume to reflect notification settings. Enable toggle switch. Share ViewModel with disable notifications fragment.
* Shashidhara | Deinitialize async listeners post result processing
* Shashidhara | Fix notification settings header, whatsapp notifications card
* Shashidhara | Reduce margin between description and background image in whatsapp notifications card
* events tracking for loan preclosure, pg repyament, singular added session time out (#913)
* events tracking for loan preclosure, pg repyament, singular added sessiontime out
* minor chnages
* merge conflict (#915)
* release 1.1.5
* set singular external id on each time app launch (#917)
* Add analytics (#916)
* Shashidhara | Add whatsapp event tracking on login screen
* Shashidhara | Add whatsapp event tracking on home and notification settings screen
* Shashidhara | Deinitialize listeners post response processing (#918)
* loan preclosure ui issues (#919)
* designr feedback changes (#920)
* razorpay keys update (#922)
* added singular key in docker (#923)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.2.0 into master (#947)
* Master into develop (#924)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.5 into master (#921)
* Master into develop (#899)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Feature/handle offer expiry (#900)
* Shashidhara | Add offer expiry screen
* Shashidhara | Default to loader color for offer expiry
* Shashidhara | Handle firebase failure on apply loan
* Shashidhara | Handle firebase failure on add bank detail
* Shashidhara | Avoid resetting async data
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Reposition loader
* Shashidhara | Default loan amount slider to max (#903)
* Shashidhara | Add collapsible permissions (#902)
* Shashidhara | Add collapsible permissions
* Shashidhara | Remove unused imports
* Shashidhara | Handle multiple clicks
* Feature/pg repayment enhancement (#905)
* pgrepayment enhancement started....
* pgrepayment enhancement
* updated firebase KEY
* Feature/loan closure feature (#906)
* pgrepayment enhancement started....
* added loancloser view on loandetail
* pgrepayment enhancement
* loan preclosure click open new page
* minor changes
* loan foreclosure
* crash fixes
* key changes and using firebase changes
* added type for preloan closure
* Shashidhara | Update about us and list of cities (#904)
* Shashidhara | Update about us and list of cities
* Shashidhara | Read list of states and cities from xml
* Shashidhara | Move list to arrays
* fixed (#907)
* emi calendar contract changes, ui changes (#909)
* Shashidhara | Navigate focus to dob date field post name (#908)
* crash fixes (#912)
* crash fixes
* warning screen crash fix
* minor changes
* double click on topbar: loan application journey
* minor refactoring
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue… (#910)
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue for loan eligible, gaId passing to backend
* key name change
* proguard rules for Singular
* emi calender changes
* minor changes
* dev key added
* Feature/home redesign (#914)
* Shashidhara | Update font styles for loan card
* Shashidhara | Refactor card border
* Shashidhara | Update dimens and colors
* Shashidhara | Update loan action icons
* Feature/whatsapp integration (#911)
* Shashidhara | Add whatsapp consent on phone number screen
* Shashidhara | Update consent text
* Shashidhara | Add whatsapp notifications card on home screen
* Shashidhara | Add whatsapp notifications settings
* Shashidhara | Add communication medium apis to login screen and home screen
* Shashidhara | Add communication medium apis to notificaiton settings
* Shashidhara | Add disable notifications view and refactor packaging
* Shashidhara | Add disable notifications icon
* Shashidhara | Remove redundant string
* Shashidhara | Update whatsapp notifications card title
* Shashidhara | Parameterize delay for whatsapp notifications card
* Shashidhara | Update communication mediums post otp verification
* Shashidhara | Add back button functionality and update api endpoints
* Shashidhara | Handle onResume to reflect notification settings. Enable toggle switch. Share ViewModel with disable notifications fragment.
* Shashidhara | Deinitialize async listeners post result processing
* Shashidhara | Fix notification settings header, whatsapp notifications card
* Shashidhara | Reduce margin between description and background image in whatsapp notifications card
* events tracking for loan preclosure, pg repyament, singular added session time out (#913)
* events tracking for loan preclosure, pg repyament, singular added sessiontime out
* minor chnages
* merge conflict (#915)
* release 1.1.5
* set singular external id on each time app launch (#917)
* Add analytics (#916)
* Shashidhara | Add whatsapp event tracking on login screen
* Shashidhara | Add whatsapp event tracking on home and notification settings screen
* Shashidhara | Deinitialize listeners post response processing (#918)
* loan preclosure ui issues (#919)
* designr feedback changes (#920)
* razorpay keys update (#922)
* added singular key in docker (#923)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Handle mandate failure
* Shashidhara | Make bottom sheet indismissible
* monor changes (#926)
* Shashidhara | Add imports
* Shashidhara | Poll request details on mandate failure
* Shashidhara | Update transaction history icon (#929)
* Shashidhara | Handle digio cancel flow
* home page toolbar: add user name (#930)
* Shashidhara | Add check to ensure fragment is part of activity
* Shashidhara | Remove camera and storage permissions
* Feature/deeplink branch io (#931)
* deeplink branch io sdk integration started...
* url changes
* sdk integration, basic deeplink done
* Shashidhara | Add permission check for camera and storage on kyc
* rating widget on home page enhancement (#928)
* rating widget on home page enhancement
* added default comment
* home page user name logic modification
* Shashidhara | Handle permission result
* Shashidhara | Add analytics
* Shashidhara | Refactor analytics
* Shashidhara | Refactor analytics
* Shashidhara | Update flag for permission collapsibility (#934)
* Feature/digitap android integration (#933)
* digitap sdk integration
* renaming, contract added
* added callback response
* handled call back listeners from digitap
* removed hard coded for testing, added check for stub
* digitap proguard rule
* minor change
* unused code
* Shashidhara | Add partially paid emi status card to calendar
* Shashidhara | Update due details view
* Shashidhara | Add summary screen. Refactor whatsapp consent layout. (#927)
* Shashidhara | Add summary screen. Refactor whatsapp consent layout.
* Shashidhara | Add communication mediums api
* Shashidhara | Handle instantiation of view model
* Shashidhara | WIP: Add loan agreement screen
* Shashidhara | Add loan agreement view api and update sign loan agreement
* Shashidhara | Update loan agreement link color to red
* Shashidhara | Add loan agreement activity
* Shashidhara | Update sign loan agreement response
* Shashidhara | Add analytics
* Shashidhara | Align loan agreement text to center
* Shashidhara | Handle missing loan application id
* Shashidhara | Add enach tutorial screen (#935)
* Shashidhara | Add enach tutorial screen
* Shashidhara | Remove unused imports
* Shashidhara | Update text
* Feature/contextual faqs (#936)
* Shashidhara | Add contextual faqs
* Shashidhara | Remove sticky title
* Shashidhara | Add screen name for analytics
* Shashidhara | Add serialised name property for all emi status
* Upfront, Partial Payment complete (#937)
* started payment upfront
* renaming payment fragment
* started payment page
* renamed PaymentInitListener method
* pay now click on full screen payement page
* minor change
* merge conflicts
* custom payment
* error for custom payment
* added payable label
* loan preclose pay btn
* added currency in paynow api call, added events
* home page upfront payment changes
* rating icon changes
* rating icon changes, home page statusUi state handling
* minor change
* Feature/digitap version upgrade (#939)
* digitap version upgrade
* minor chnage
* release-1.2.0
* Bugfix/hide cta auto debit (#940)
* Shashidhara | Hide tutorial CTA post auto debit
* Shashidhara | Update padding for action button view
* Shashidhara | Update make payment button text and add divider to permission screen (#941)
* loader issue (#942)
* Shashidhara | Update whatsapp text
* Shashidhara | Refactor scroll for summary view (#943)
* loan foreclose handling based on api (#944)
* error ui in custom payment foreclose loan, other minor changes (#945)
* foreclose -ve amount issue (#946)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* conflict resolve (#948)
* Release 1.2.1 into master (#957)
* Master(Release 1.2.0) into develop (#949)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
C…
* Feature/insurance menu (#986)
* Insurance Screen First Draft
* Added decoration
* Hiding loader
* Insurance Details from Menu
* Updated assets
* Getloan chanes for Insurance
* fixed TakeInsuranceCardView
* GetLoan Summary with attachment working
* Insurance Policy Integrated + Top Margin Fix
* Take Insurance background
* Fixed textcolor for take insruacne card
* "Some UI Fixes"
* Insurance Benefits Integrated
* Insurance on Menu Integrated
* Review changes + UI Insurance changes
* Feature/new menu (#997)
* Insurance Screen First Draft
* Added decoration
* Hiding loader
* Insurance Details from Menu
* Updated assets
* Getloan chanes for Insurance
* fixed TakeInsuranceCardView
* GetLoan Summary with attachment working
* Insurance Policy Integrated + Top Margin Fix
* Take Insurance background
* Fixed textcolor for take insruacne card
* "Some UI Fixes"
* Insurance Benefits Integrated
* Insurance on Menu Integrated
* New Menu Changes
* Username hiding in Header for menu fragment
* Review changes + UI Insurance changes
* "fade greeting msg and order in loan details"
* Rebasing issue
* removed typo
* Rveiew comments + Merge issues
* Enhancement/footer layout insurance benefits (#998)
* Hidind footerLayout if insurance is already checked
* Fast animation of greeting msg
* Feature/chat support feature (#1000)
* freshchat basic setups, sdk intergration, setting keys, initialization, show and send message
* sdk integration, basic integration
* "Chat UI fixes"
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Created a common Header widget (#1002)
* Created a common Header widget
* Use app:srcCompat
* digitap crashes fixed sdk (#999)
* Feature/razorpay sdk upgrade (#1001)
* razorpay sdk upgrade
* razorpay key from buildgradle into manifest
* fix (#1004)
* Ui issue fix (#1005)
* APP-269 (#1007)
* Feature/in app playstore rating (#1009)
* in app rating started
* helper changes
* play store in-app review
* in review ktx lib
* minor changes
* Feature/chat support feature (#1008)
* freshchat basic setups, sdk intergration, setting keys, initialization, show and send message
* sdk integration, basic integration
* "Chat UI fixes"
* Chat Menu new UI
* Max 99 unread count
* string toConstant
* Changed Tag dimens
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* dynamic address on kyc (#1011)
* Insurance Policy disable padding clip (#1013)
* ndc feature (#1012)
* ui visibility fix (#1015)
* handle Chat menu feature from backend (#1016)
* Enach Tutorial (#1006)
* First Draft Enach Tutorial
* use textsize from class
* Integrated with new Enach API
* Enach Sponsor images background
* check if valid index
* Silent Location Pull (#1014)
* Draft Silent Location Pull
* Silent Location Pull
* release-1.2.5
* keys added in docker (#1017)
* Shashidhara | Do not set address if it fails quality check [APP-188] (#1018)
* Build Fix + Upgraded Digitap (#1019)
* Analytics for Coco Insurance (#1020)
* ovd kyf refresh data issue (#1021)
* Remove location update infinity (#1022)
* Remove location update infinity
* keep in try-catch
* remove call option from get loan journey, double tap on pan (#1023)
* fix (#1024)
* Feature/ovd permanent address change (#1026)
* Release 1.2.3 into master (#993)
* Master(Release 1.2.1) into develop (#959)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.5 into master (#921)
* Master into develop (#899)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Feature/handle offer expiry (#900)
* Shashidhara | Add offer expiry screen
* Shashidhara | Default to loader color for offer expiry
* Shashidhara | Handle firebase failure on apply loan
* Shashidhara | Handle firebase failure on add bank detail
* Shashidhara | Avoid resetting async data
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Reposition loader
* Shashidhara | Default loan amount slider to max (#903)
* Shashidhara | Add collapsible permissions (#902)
* Shashidhara | Add collapsible permissions
* Shashidhara | Remove unused imports
* Shashidhara | Handle multiple clicks
* Feature/pg repayment enhancement (#905)
* pgrepayment enhancement started....
* pgrepayment enhancement
* updated firebase KEY
* Feature/loan closure feature (#906)
* pgrepayment enhancement started....
* added loancloser view on loandetail
* pgrepayment enhancement
* loan preclosure click open new page
* minor changes
* loan foreclosure
* crash fixes
* key changes and using firebase changes
* added type for preloan closure
* Shashidhara | Update about us and list of cities (#904)
* Shashidhara | Update about us and list of cities
* Shashidhara | Read list of states and cities from xml
* Shashidhara | Move list to arrays
* fixed (#907)
* emi calendar contract changes, ui changes (#909)
* Shashidhara | Navigate focus to dob date field post name (#908)
* crash fixes (#912)
* crash fixes
* warning screen crash fix
* minor changes
* double click on topbar: loan application journey
* minor refactoring
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue… (#910)
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue for loan eligible, gaId passing to backend
* key name change
* proguard rules for Singular
* emi calender changes
* minor changes
* dev key added
* Feature/home redesign (#914)
* Shashidhara | Update font styles for loan card
* Shashidhara | Refactor card border
* Shashidhara | Update dimens and colors
* Shashidhara | Update loan action icons
* Feature/whatsapp integration (#911)
* Shashidhara | Add whatsapp consent on phone number screen
* Shashidhara | Update consent text
* Shashidhara | Add whatsapp notifications card on home screen
* Shashidhara | Add whatsapp notifications settings
* Shashidhara | Add communication medium apis to login screen and home screen
* Shashidhara | Add communication medium apis to notificaiton settings
* Shashidhara | Add disable notifications view and refactor packaging
* Shashidhara | Add disable notifications icon
* Shashidhara | Remove redundant string
* Shashidhara | Update whatsapp notifications card title
* Shashidhara | Parameterize delay for whatsapp notifications card
* Shashidhara | Update communication mediums post otp verification
* Shashidhara | Add back button functionality and update api endpoints
* Shashidhara | Handle onResume to reflect notification settings. Enable toggle switch. Share ViewModel with disable notifications fragment.
* Shashidhara | Deinitialize async listeners post result processing
* Shashidhara | Fix notification settings header, whatsapp notifications card
* Shashidhara | Reduce margin between description and background image in whatsapp notifications card
* events tracking for loan preclosure, pg repyament, singular added session time out (#913)
* events tracking for loan preclosure, pg repyament, singular added sessiontime out
* minor chnages
* merge conflict (#915)
* release 1.1.5
* set singular external id on each time app launch (#917)
* Add analytics (#916)
* Shashidhara | Add whatsapp event tracking on login screen
* Shashidhara | Add whatsapp event tracking on home and notification settings screen
* Shashidhara | Deinitialize listeners post response processing (#918)
* loan preclosure ui issues (#919)
* designr feedback changes (#920)
* razorpay keys update (#922)
* added singular key in docker (#923)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.2.0 into master (#947)
* Master into develop (#924)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.5 into master (#921)
* Master into develop (#899)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
* Master(Release-1.1.3) into develop (#889) (#890)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Remove last name
* Shashidhara | Extend dob layout dimensions
* Shashidhara | Add email id layout on loan agreement
* Shashidhara | Aggregate storage permission
* Feature/razorpay emandate (#893)
* dev done, api integration testing pending
* version code increased for razorpay emandate testing
* API integration for error
* soft reject etxt update, order change (#895)
* digo sdk update... (#896)
* Shashidhara | Reduce padding for verify button on otp screen
* release 1.1.4
* Shashidhara | Add error message for invalid email (#898)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Feature/handle offer expiry (#900)
* Shashidhara | Add offer expiry screen
* Shashidhara | Default to loader color for offer expiry
* Shashidhara | Handle firebase failure on apply loan
* Shashidhara | Handle firebase failure on add bank detail
* Shashidhara | Avoid resetting async data
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Handle firebase failure on loan agreement screen
* Shashidhara | Reposition loader
* Shashidhara | Default loan amount slider to max (#903)
* Shashidhara | Add collapsible permissions (#902)
* Shashidhara | Add collapsible permissions
* Shashidhara | Remove unused imports
* Shashidhara | Handle multiple clicks
* Feature/pg repayment enhancement (#905)
* pgrepayment enhancement started....
* pgrepayment enhancement
* updated firebase KEY
* Feature/loan closure feature (#906)
* pgrepayment enhancement started....
* added loancloser view on loandetail
* pgrepayment enhancement
* loan preclosure click open new page
* minor changes
* loan foreclosure
* crash fixes
* key changes and using firebase changes
* added type for preloan closure
* Shashidhara | Update about us and list of cities (#904)
* Shashidhara | Update about us and list of cities
* Shashidhara | Read list of states and cities from xml
* Shashidhara | Move list to arrays
* fixed (#907)
* emi calendar contract changes, ui changes (#909)
* Shashidhara | Navigate focus to dob date field post name (#908)
* crash fixes (#912)
* crash fixes
* warning screen crash fix
* minor changes
* double click on topbar: loan application journey
* minor refactoring
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue… (#910)
* Singular sdk integration, Event Tracking, Uninstall Tracking, Revenue for loan eligible, gaId passing to backend
* key name change
* proguard rules for Singular
* emi calender changes
* minor changes
* dev key added
* Feature/home redesign (#914)
* Shashidhara | Update font styles for loan card
* Shashidhara | Refactor card border
* Shashidhara | Update dimens and colors
* Shashidhara | Update loan action icons
* Feature/whatsapp integration (#911)
* Shashidhara | Add whatsapp consent on phone number screen
* Shashidhara | Update consent text
* Shashidhara | Add whatsapp notifications card on home screen
* Shashidhara | Add whatsapp notifications settings
* Shashidhara | Add communication medium apis to login screen and home screen
* Shashidhara | Add communication medium apis to notificaiton settings
* Shashidhara | Add disable notifications view and refactor packaging
* Shashidhara | Add disable notifications icon
* Shashidhara | Remove redundant string
* Shashidhara | Update whatsapp notifications card title
* Shashidhara | Parameterize delay for whatsapp notifications card
* Shashidhara | Update communication mediums post otp verification
* Shashidhara | Add back button functionality and update api endpoints
* Shashidhara | Handle onResume to reflect notification settings. Enable toggle switch. Share ViewModel with disable notifications fragment.
* Shashidhara | Deinitialize async listeners post result processing
* Shashidhara | Fix notification settings header, whatsapp notifications card
* Shashidhara | Reduce margin between description and background image in whatsapp notifications card
* events tracking for loan preclosure, pg repyament, singular added session time out (#913)
* events tracking for loan preclosure, pg repyament, singular added sessiontime out
* minor chnages
* merge conflict (#915)
* release 1.1.5
* set singular external id on each time app launch (#917)
* Add analytics (#916)
* Shashidhara | Add whatsapp event tracking on login screen
* Shashidhara | Add whatsapp event tracking on home and notification settings screen
* Shashidhara | Deinitialize listeners post response processing (#918)
* loan preclosure ui issues (#919)
* designr feedback changes (#920)
* razorpay keys update (#922)
* added singular key in docker (#923)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Shashidhara | Handle mandate failure
* Shashidhara | Make bottom sheet indismissible
* monor changes (#926)
* Shashidhara | Add imports
* Shashidhara | Poll request details on mandate failure
* Shashidhara | Update transaction history icon (#929)
* Shashidhara | Handle digio cancel flow
* home page toolbar: add user name (#930)
* Shashidhara | Add check to ensure fragment is part of activity
* Shashidhara | Remove camera and storage permissions
* Feature/deeplink branch io (#931)
* deeplink branch io sdk integration started...
* url changes
* sdk integration, basic deeplink done
* Shashidhara | Add permission check for camera and storage on kyc
* rating widget on home page enhancement (#928)
* rating widget on home page enhancement
* added default comment
* home page user name logic modification
* Shashidhara | Handle permission result
* Shashidhara | Add analytics
* Shashidhara | Refactor analytics
* Shashidhara | Refactor analytics
* Shashidhara | Update flag for permission collapsibility (#934)
* Feature/digitap android integration (#933)
* digitap sdk integration
* renaming, contract added
* added callback response
* handled call back listeners from digitap
* removed hard coded for testing, added check for stub
* digitap proguard rule
* minor change
* unused code
* Shashidhara | Add partially paid emi status card to calendar
* Shashidhara | Update due details view
* Shashidhara | Add summary screen. Refactor whatsapp consent layout. (#927)
* Shashidhara | Add summary screen. Refactor whatsapp consent layout.
* Shashidhara | Add communication mediums api
* Shashidhara | Handle instantiation of view model
* Shashidhara | WIP: Add loan agreement screen
* Shashidhara | Add loan agreement view api and update sign loan agreement
* Shashidhara | Update loan agreement link color to red
* Shashidhara | Add loan agreement activity
* Shashidhara | Update sign loan agreement response
* Shashidhara | Add analytics
* Shashidhara | Align loan agreement text to center
* Shashidhara | Handle missing loan application id
* Shashidhara | Add enach tutorial screen (#935)
* Shashidhara | Add enach tutorial screen
* Shashidhara | Remove unused imports
* Shashidhara | Update text
* Feature/contextual faqs (#936)
* Shashidhara | Add contextual faqs
* Shashidhara | Remove sticky title
* Shashidhara | Add screen name for analytics
* Shashidhara | Add serialised name property for all emi status
* Upfront, Partial Payment complete (#937)
* started payment upfront
* renaming payment fragment
* started payment page
* renamed PaymentInitListener method
* pay now click on full screen payement page
* minor change
* merge conflicts
* custom payment
* error for custom payment
* added payable label
* loan preclose pay btn
* added currency in paynow api call, added events
* home page upfront payment changes
* rating icon changes
* rating icon changes, home page statusUi state handling
* minor change
* Feature/digitap version upgrade (#939)
* digitap version upgrade
* minor chnage
* release-1.2.0
* Bugfix/hide cta auto debit (#940)
* Shashidhara | Hide tutorial CTA post auto debit
* Shashidhara | Update padding for action button view
* Shashidhara | Update make payment button text and add divider to permission screen (#941)
* loader issue (#942)
* Shashidhara | Update whatsapp text
* Shashidhara | Refactor scroll for summary view (#943)
* loan foreclose handling based on api (#944)
* error ui in custom payment foreclose loan, other minor changes (#945)
* foreclose -ve amount issue (#946)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* conflict resolve (#948)
* Release 1.2.1 into master (#957)
* Master(Release 1.2.0) into develop (#949)
* Master(Release-1.1.3) into develop (#889)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* merge conflicts (#880)
* permission screen move to after otp (#882)
* Bugfix/gps null issue profile (#881)
* location enable handking
* show gps dialog on work and pan page too
* fix (#883)
* Shashidhara | Add upload id photo (#867)
* Shashidhara | Add upload id photo
* Shashidhara | Handle correspondence address layout based on status update
* Shashidhara | Add fetch supported ovds
* Shashidhara | Add upload supported ovd api
* Shashidhara | Handle no internet
* Shashidhara | Update request body for submit ovd api
* Shashidhara | Remove call to bottom sheet for supported ovds
* Shashidhara | Add recommended tag
* Shashidhara | Update status indicator dimensions
* Shashidhara | Add events to be tracked and instructions for selfie
* Shashidhara | Remove tools src
* Shashidhara | Remove Kyc docs tag
* Shashidhara | Update error handling
* Shashidhara | Handle errors across multiple flows
* Shashidhara | Fix typo
* Shashidhara | Handle de initialization of polling
* Shashidhara | Handle async response for ovd
* hyperverge error handling (#884)
* Shashidhara | Handle poll timeout
* Shashidhara | Increase padding for address layout
* Shashidhara | Increase padding for divider
* Shashidhara | Remove bottom sheet error message on ovd upload
* Shashidhara | Remove unused imports
* Shashidhara | Update padding for address layout
* feature toggle for kyc other ovd (#885)
Co-authored-by: Satish Prasad <satish.prasad@navi.com>
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
* Release 1.1.4 into master (#897)
* Release 1.1.2 (#878) (#879)
* Shashidhara | Handle no internet on splash screen (#863)
* Sat | <Ch-12343> | Hyperverge Selfie (#864)
* started...
* release 1.1.1
* Shashidhara | Update find ifsc visibility based on bank name validation
* back press issue
* minor changes
* pre populate loan data from edit bank account
* added contract
* selfie hyperverge
* error handlding
* added git sttaus
* added keys into gradle
* added keys into docker file
* intro screen hide after 1st time
* removed instrauction
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
* Feature/feedback on get loan journey (#868)
* started ...
* feedback continue..
* api intgration
* feedback success added, api submit
* Shashidhara | Toggle sticky footer on permissions screen based on login settings (#865)
* Feature/permissions other tasks (#869)
* added feedback on permission screen
* tutorial page skipped
* gps full page skipped
* removed red screen from kyc and enach
* uxcam id and user peroperty
* analytics for submit feedback and api connection timeout
* Feature/bank screen enhancements (#870)
* Shashidhara | Add disclaimer
* Shashidhara | Update edit bank option visibility
* Shashidhara | Remove change bank option on mandate success
* release 1.1.2
* Shashidhara | Add firebase performance (#871)
* spalsh screen changes, feedback keys issue (#872)
* minor changes
* Mukunda | Fixing basic details and work details firebase keys (#873)
* Shashidhara | Add scroll for auto debit screen
* fix (#875)
* Shashidhara | Update edit bank message
* multiple select iusse (#877)
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>…
Co-authored-by: Shashidhara Gopal <shashidhara.gopal@navi.com>
Co-authored-by: Mukunda NS <mukunda.ns@navi.com>
Co-authored-by: rahul bhat <rahul.bhat@navi.com>
2020-09-15 11:55:38 +05:30
|
|
|
debuggable false
|
2020-04-29 10:41:40 +05:30
|
|
|
minifyEnabled true
|
2024-11-04 17:29:19 +05:30
|
|
|
shrinkResources true
|
2024-06-26 14:45:01 +05:30
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro', 'retrofit2.pro', 'alfred.pro', 'courier.pro', 'adverse.pro'
|
2020-03-31 18:19:44 +05:30
|
|
|
signingConfig signingConfigs.release
|
2021-08-19 16:05:43 +05:30
|
|
|
manifestPlaceholders = [branchMode: 'false']
|
2024-04-05 15:07:08 +05:30
|
|
|
matchingFallbacks = ['release']
|
2024-07-04 18:31:19 +05:30
|
|
|
resValue 'string', 'build_config_package', 'com.naviapp'
|
2019-10-31 15:23:40 +05:30
|
|
|
}
|
|
|
|
|
}
|
2021-08-25 16:25:09 +05:30
|
|
|
bundle {
|
2024-01-30 16:26:46 +05:30
|
|
|
abi {
|
|
|
|
|
enableSplit = true
|
2021-08-25 16:25:09 +05:30
|
|
|
}
|
|
|
|
|
density {
|
|
|
|
|
enableSplit = true
|
|
|
|
|
}
|
2024-01-30 16:26:46 +05:30
|
|
|
language {
|
|
|
|
|
enableSplit = false
|
2021-08-25 16:25:09 +05:30
|
|
|
}
|
|
|
|
|
}
|
2024-01-30 16:26:46 +05:30
|
|
|
compileOptions {
|
|
|
|
|
incremental true
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
2025-04-14 15:36:47 +05:30
|
|
|
freeCompilerArgs += ["-Xstring-concat=inline", "-Xcontext-receivers"]
|
2024-01-30 16:26:46 +05:30
|
|
|
jvmTarget = '17'
|
|
|
|
|
}
|
|
|
|
|
lint {
|
|
|
|
|
disable 'NullSafeMutableLiveData'
|
|
|
|
|
}
|
|
|
|
|
packagingOptions {
|
|
|
|
|
jniLibs {
|
2024-06-18 14:47:12 +05:30
|
|
|
pickFirsts += "**/libjsi.so"
|
2024-01-30 16:26:46 +05:30
|
|
|
useLegacyPackaging = true
|
|
|
|
|
}
|
|
|
|
|
resources {
|
|
|
|
|
excludes += ['META-INF']
|
2024-11-09 01:36:31 +05:30
|
|
|
excludes += "DebugProbesKt.bin"
|
2024-01-30 16:26:46 +05:30
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
sourceSets {
|
|
|
|
|
release {
|
|
|
|
|
java.srcDirs = ['src/main/java', 'src/release/java']
|
|
|
|
|
}
|
|
|
|
|
debug {
|
|
|
|
|
java.srcDirs = ['src/main/java', 'src/debug/java']
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
testOptions {
|
|
|
|
|
unitTests.returnDefaultValues = true
|
|
|
|
|
}
|
2023-07-20 11:13:09 +05:30
|
|
|
flavorDimensions = ["app"]
|
2019-12-03 12:07:59 +05:30
|
|
|
productFlavors {
|
2024-01-30 16:26:46 +05:30
|
|
|
qa {
|
|
|
|
|
isDefault true
|
2023-11-27 19:58:32 +05:30
|
|
|
dimension "app"
|
|
|
|
|
applicationId "com.naviapp.dev"
|
2025-02-04 23:53:35 +05:30
|
|
|
buildConfigField 'String', 'ADS_ANALYTICS_BASE_URL', formatString('https://dev-ads-janus.np.navi-sa.in/')
|
2024-01-30 16:26:46 +05:30
|
|
|
buildConfigField 'String', 'ALFRED_API_KEY', formatString('oMv77fgpBg9NFGom0Psizbf7lbrdBVJz')
|
2023-11-27 19:58:32 +05:30
|
|
|
buildConfigField 'String', 'APPSFLYER_KEY', formatString('ua6cppJ9oQx7aPQPNyHrHA')
|
2024-02-08 20:52:15 +05:30
|
|
|
buildConfigField 'String', 'PULSE_BASE_URL', formatString('https://dev-janus.np.navi-tech.in/')
|
2024-03-12 13:04:13 +05:30
|
|
|
buildConfigField 'String', 'MQTT_PASSWORD', formatString('testUser@123')
|
|
|
|
|
buildConfigField 'String', 'MQTT_USERNAME', formatString('henry')
|
2024-01-30 16:26:46 +05:30
|
|
|
buildConfigField 'String', 'SSL_PINNING_KEY', formatString('sha256/nUU7NjGrGo/mxijjsX+MHerUbpIHBidF8LAYOEPFWA8=')
|
2023-11-27 19:58:32 +05:30
|
|
|
manifestPlaceholders = [
|
2024-07-04 18:31:19 +05:30
|
|
|
FACEBOOK_APP_ID: "238258890564574",
|
2024-01-30 16:26:46 +05:30
|
|
|
TRUECALLER_KEY : "yicxl1xh6jidagslpi0h9d-uklfeinnx4a6mb6rdgyi"
|
2023-11-27 19:58:32 +05:30
|
|
|
]
|
2024-03-28 14:08:29 +05:30
|
|
|
resValue 'string', 'CodePushDeploymentKey', formatString('QLh2ypE_wVIAdp9rcSPIkbdxwKgPijXyGpKX_')
|
2024-07-04 18:31:19 +05:30
|
|
|
resValue 'string', 'build_config_package', 'com.naviapp.dev'
|
2019-12-03 12:07:59 +05:30
|
|
|
}
|
|
|
|
|
prod {
|
|
|
|
|
dimension "app"
|
2024-12-27 00:06:42 +05:30
|
|
|
if (project.hasProperty('ADS_ANALYTICS_BASE_URL')
|
|
|
|
|
&& project.hasProperty('ALFRED_API_KEY')
|
2023-07-20 11:13:09 +05:30
|
|
|
&& project.hasProperty('APPSFLYER_KEY')
|
2024-03-12 13:04:13 +05:30
|
|
|
&& project.hasProperty('MQTT_PASSWORD')
|
|
|
|
|
&& project.hasProperty('MQTT_USERNAME')
|
2024-02-08 20:52:15 +05:30
|
|
|
&& project.hasProperty('PULSE_BASE_URL')
|
2024-01-30 16:26:46 +05:30
|
|
|
&& project.hasProperty('SSL_PINNING_KEY')
|
2023-07-20 11:13:09 +05:30
|
|
|
&& project.hasProperty('FACEBOOK_APP_ID')
|
2024-01-30 16:26:46 +05:30
|
|
|
&& project.hasProperty('TRUECALLER_KEY')
|
2024-03-28 14:08:29 +05:30
|
|
|
&& project.hasProperty('CODEPUSH_DEPLOYMENT_KEY')
|
2023-07-20 11:13:09 +05:30
|
|
|
) {
|
2024-12-27 00:06:42 +05:30
|
|
|
buildConfigField 'String', 'ADS_ANALYTICS_BASE_URL', formatString("$ADS_ANALYTICS_BASE_URL")
|
2024-01-30 16:26:46 +05:30
|
|
|
buildConfigField 'String', 'ALFRED_API_KEY', formatString("$ALFRED_API_KEY")
|
2021-10-08 16:50:11 +05:30
|
|
|
buildConfigField 'String', 'APPSFLYER_KEY', formatString("$APPSFLYER_KEY")
|
2024-03-12 13:04:13 +05:30
|
|
|
buildConfigField 'String', 'MQTT_PASSWORD', formatString("$MQTT_PASSWORD")
|
|
|
|
|
buildConfigField 'String', 'MQTT_USERNAME', formatString("$MQTT_USERNAME")
|
2024-02-08 20:52:15 +05:30
|
|
|
buildConfigField 'String', 'PULSE_BASE_URL', formatString("$PULSE_BASE_URL")
|
2024-01-30 16:26:46 +05:30
|
|
|
buildConfigField 'String', 'SSL_PINNING_KEY', formatString("$SSL_PINNING_KEY")
|
2023-07-20 11:13:09 +05:30
|
|
|
manifestPlaceholders = [
|
2024-01-30 16:26:46 +05:30
|
|
|
FACEBOOK_APP_ID: "$FACEBOOK_APP_ID",
|
|
|
|
|
TRUECALLER_KEY : "$TRUECALLER_KEY"
|
2023-07-20 11:13:09 +05:30
|
|
|
]
|
2024-03-28 14:08:29 +05:30
|
|
|
resValue "string", 'CodePushDeploymentKey', formatString("$CODEPUSH_DEPLOYMENT_KEY")
|
2024-07-04 18:31:19 +05:30
|
|
|
resValue 'string', 'build_config_package', 'com.naviapp'
|
2021-10-08 16:50:11 +05:30
|
|
|
}
|
2019-12-03 12:07:59 +05:30
|
|
|
}
|
|
|
|
|
}
|
2020-03-31 18:19:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static def formatString(String value) {
|
|
|
|
|
return '"' + value + '"'
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-27 20:36:03 +05:30
|
|
|
project.ext.react = [
|
2024-12-27 00:06:42 +05:30
|
|
|
entryFile : "index.js",
|
|
|
|
|
enableHermes : true, // clean and rebuild if changing
|
2024-12-11 20:50:07 +05:30
|
|
|
newArchEnabled: false
|
2024-03-27 20:36:03 +05:30
|
|
|
]
|
|
|
|
|
|
2024-04-05 15:07:08 +05:30
|
|
|
project.ext.envConfigFiles = [
|
2024-07-04 18:31:19 +05:30
|
|
|
qa : ".env.qa",
|
|
|
|
|
benchmark : ".env.benchmark",
|
|
|
|
|
production: ".env.prod"
|
2024-04-05 15:07:08 +05:30
|
|
|
]
|
|
|
|
|
|
2022-05-19 19:46:31 +05:30
|
|
|
publishing {
|
2020-03-31 18:19:44 +05:30
|
|
|
repositories {
|
2023-07-20 11:13:09 +05:30
|
|
|
if (project.hasProperty('NEXUS_URL')
|
|
|
|
|
&& project.hasProperty('NEXUS_USERNAME')
|
|
|
|
|
&& project.hasProperty('NEXUS_PASSWORD')
|
|
|
|
|
) {
|
2022-05-25 16:20:32 +05:30
|
|
|
maven {
|
|
|
|
|
url = "$NEXUS_URL"
|
|
|
|
|
credentials {
|
|
|
|
|
username = "$NEXUS_USERNAME"
|
|
|
|
|
password = "$NEXUS_PASSWORD"
|
2020-03-31 18:19:44 +05:30
|
|
|
}
|
2022-05-25 16:08:59 +05:30
|
|
|
}
|
2022-05-25 18:38:10 +05:30
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
publications {
|
2023-07-20 11:13:09 +05:30
|
|
|
if (project.hasProperty('FLAVOR')) {
|
2022-05-25 18:38:10 +05:30
|
|
|
maven(MavenPublication) {
|
|
|
|
|
artifactId = "$FLAVOR"
|
|
|
|
|
groupId = "com.naviapp"
|
2023-07-20 11:13:09 +05:30
|
|
|
version = "navi_v$VERSION_NAME"
|
|
|
|
|
|
|
|
|
|
artifact("build/outputs/bundle/prodRelease/app-prod-release.aab")
|
2020-03-31 18:19:44 +05:30
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 15:23:40 +05:30
|
|
|
dependencies {
|
2021-09-23 18:41:59 +05:30
|
|
|
implementation project(":navi-amc")
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation project(":navi-ap")
|
|
|
|
|
implementation project(":navi-bbps")
|
|
|
|
|
implementation project(":navi-chat")
|
2023-11-15 14:46:53 +05:30
|
|
|
implementation project(":navi-coin")
|
2024-06-04 03:34:25 +05:30
|
|
|
implementation project(":navi-cycs")
|
2023-08-17 10:28:44 +05:30
|
|
|
implementation project(":navi-gold")
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation project(":navi-insurance")
|
2024-12-17 18:26:11 +05:30
|
|
|
implementation project(":navi-money-manager")
|
2024-03-12 13:04:13 +05:30
|
|
|
implementation project(":navi-mqtt")
|
2023-08-21 16:37:13 +05:30
|
|
|
implementation project(":navi-pay")
|
2024-11-04 17:29:19 +05:30
|
|
|
implementation project(":navi-payment")
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation project(":navi-rr")
|
2024-04-29 23:45:11 +05:30
|
|
|
implementation libs.accompanist.systemuicontroller
|
2025-01-19 23:56:44 +05:30
|
|
|
implementation libs.android.gms.playServicesAds
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.android.gms.playServicesAuthApiPhone
|
2025-03-25 16:15:45 +05:30
|
|
|
implementation libs.android.gms.playServicesTime
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.android.installreferrer
|
|
|
|
|
implementation libs.android.material
|
2025-01-17 18:08:52 +00:00
|
|
|
implementation libs.androidx.activity.activity
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.androidx.annotation
|
2023-09-04 14:44:59 +05:30
|
|
|
implementation libs.androidx.appcompat
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.androidx.browser
|
|
|
|
|
implementation libs.androidx.constraintlayout
|
2023-09-04 14:44:59 +05:30
|
|
|
implementation libs.androidx.core.ktx
|
2023-10-05 19:38:24 +05:30
|
|
|
implementation libs.androidx.core.splashscreen
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.androidx.fragment.ktx
|
2025-03-12 09:51:19 +05:30
|
|
|
implementation libs.androidx.glanceAppWidget
|
2024-04-29 23:45:11 +05:30
|
|
|
implementation libs.androidx.compose.runtime.livedata
|
2023-09-04 14:44:59 +05:30
|
|
|
implementation libs.androidx.lifecycle.viewmodel.ktx
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.androidx.multidex
|
2025-01-19 23:56:44 +05:30
|
|
|
implementation libs.androidx.profileinstaller
|
2024-04-29 23:45:11 +05:30
|
|
|
implementation libs.androidx.ui.viewbinding
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.androidx.work.runtimeKtx
|
|
|
|
|
implementation libs.branch
|
2024-07-01 15:40:30 +05:30
|
|
|
implementation libs.coil.svg
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.dagger.hiltAndroid
|
|
|
|
|
implementation libs.facebook.applinks
|
2025-02-03 19:29:06 +05:30
|
|
|
implementation libs.kotlinx.serialization.json
|
2025-01-16 19:04:11 +05:30
|
|
|
implementation libs.navi.traceflow
|
2024-04-10 18:22:52 +05:30
|
|
|
implementation libs.raamcosta.composeDestinations.animation.core
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation libs.truecaller
|
2020-05-29 20:50:43 +05:30
|
|
|
|
2024-01-30 16:26:46 +05:30
|
|
|
debugImplementation libs.androidx.compose.ui.test.junit4
|
|
|
|
|
debugImplementation libs.androidx.compose.ui.test.manifest
|
|
|
|
|
debugImplementation libs.androidx.test.monitor
|
2024-09-10 19:35:06 +05:30
|
|
|
debugImplementation libs.hyperion.attr
|
|
|
|
|
debugImplementation libs.hyperion.buildConfig
|
|
|
|
|
debugImplementation libs.hyperion.core
|
|
|
|
|
debugImplementation libs.hyperion.disk
|
|
|
|
|
debugImplementation libs.hyperion.geigerCounter
|
|
|
|
|
debugImplementation libs.hyperion.measurement
|
|
|
|
|
debugImplementation libs.hyperion.phoenix
|
|
|
|
|
debugImplementation libs.hyperion.recorder
|
|
|
|
|
debugImplementation libs.hyperion.sharedPreferences
|
|
|
|
|
debugImplementation libs.hyperion.simpleItem
|
|
|
|
|
debugImplementation libs.hyperion.timber
|
|
|
|
|
|
|
|
|
|
releaseImplementation libs.hyperion.coreNoOp
|
2019-11-27 19:17:35 +05:30
|
|
|
|
2024-01-30 16:26:46 +05:30
|
|
|
androidTestImplementation libs.androidx.arch.core.testing
|
2023-09-04 14:44:59 +05:30
|
|
|
androidTestImplementation(libs.androidx.test.espresso.contrib) {
|
2023-05-16 23:04:03 +05:30
|
|
|
exclude(group: "com.google.protobuf", module: "protobuf-lite")
|
|
|
|
|
}
|
2024-01-30 16:26:46 +05:30
|
|
|
androidTestImplementation libs.androidx.test.espresso.core
|
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.intents
|
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.web
|
|
|
|
|
androidTestImplementation libs.androidx.test.junit
|
|
|
|
|
androidTestImplementation libs.androidx.test.rules
|
|
|
|
|
androidTestImplementation libs.androidx.test.runner
|
2020-06-21 00:42:30 +05:30
|
|
|
|
2024-01-30 16:26:46 +05:30
|
|
|
testImplementation libs.androidx.arch.core.testing
|
2023-09-04 14:44:59 +05:30
|
|
|
testImplementation libs.junit
|
|
|
|
|
testImplementation libs.mockk
|
2023-03-13 18:51:02 +05:30
|
|
|
|
2024-11-05 17:07:24 +05:30
|
|
|
ksp libs.androidx.hilt.compiler
|
2023-11-28 14:20:23 +05:30
|
|
|
ksp libs.androidx.room.compiler
|
2024-11-05 17:07:24 +05:30
|
|
|
ksp libs.dagger.hiltCompiler
|
2024-04-10 18:22:52 +05:30
|
|
|
ksp libs.raamcosta.composeDestinations.ksp
|
2024-11-05 17:07:24 +05:30
|
|
|
|
2024-04-08 14:32:19 +05:30
|
|
|
implementation("com.facebook.react:hermes-engine:+") {
|
2024-07-04 18:31:19 +05:30
|
|
|
exclude group: 'com.facebook.fbjni'
|
2024-04-08 14:32:19 +05:30
|
|
|
}
|
2024-01-30 16:26:46 +05:30
|
|
|
}
|
2023-11-28 14:20:23 +05:30
|
|
|
|
2024-04-05 15:07:08 +05:30
|
|
|
apply from: project(':react-native-config').projectDir.getPath() + '/dotenv.gradle'
|
2024-03-27 20:36:03 +05:30
|
|
|
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
|
|
|
|
|
apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"
|
2024-11-04 17:29:19 +05:30
|
|
|
apply from: 'exec.gradle'
|