* Adding Timeline Checklist Widget * Text list card widget-Initial Commit * Added cardUseCompatPadding property * Added Card properties * Resolved comments * Centre title subtitle widget - Initial Commit * Added widgetLayoutParams * Added Card properties * Resolved comments * Product Info Widget V2-Initial Commit * layout changes * Added Card properties * Resolved comments * Added mock and resolved conflict * Benefit widget setup dummy * Added Benefit ViewHolder * viewholder issue pending * deserialisation pending * deserialisation not working * deserialiser fix * widget added successfully * cta handling in progress * Fragment setup done * cta added for page clicks * rebased with develop * cta handling completed * lint formatting * lint formatting * activity added * added error handling for benefit explainer * comments resolve 1.0 * events instrumention done * rebased with develop * mock done * ui fixes * backend integration wip * background changed * API integration and flow verification done * added story view * launch dummy screen * Adding Timeline Checklist Widget * Text list card widget-Initial Commit * Added cardUseCompatPadding property * Added Card properties * Resolved comments * Centre title subtitle widget - Initial Commit * Added widgetLayoutParams * Added Card properties * Resolved comments * Product Info Widget V2-Initial Commit * layout changes * Added Card properties * Resolved comments * Added mock and resolved conflict * Benefit widget setup dummy * Added Benefit ViewHolder * viewholder issue pending * deserialisation pending * deserialisation not working * deserialiser fix * widget added successfully * cta handling in progress * Fragment setup done * cta added for page clicks * rebased with develop * cta handling completed * lint formatting * lint formatting * activity added * added error handling for benefit explainer * comments resolve 1.0 * events instrumention done * rebased with develop * mock done * ui fixes * backend integration wip * background changed * API integration and flow verification done * added hls support * StoryWidget + feedbackWidget + StoryViewWithText (#4527) * removed auto launch * ui changes fixed * click handled * response deserialisation * comments resolve (#4546) * build fix * added widget support * parcelisation fix * Adding Timeline Checklist Widget * Text list card widget-Initial Commit * Added cardUseCompatPadding property * Added Card properties * Resolved comments * Centre title subtitle widget - Initial Commit * Added widgetLayoutParams * Added Card properties * Resolved comments * Product Info Widget V2-Initial Commit * layout changes * Added Card properties * Resolved comments * Added mock and resolved conflict * Benefit widget setup dummy * Added Benefit ViewHolder * viewholder issue pending * deserialisation pending * deserialisation not working * deserialiser fix * widget added successfully * cta handling in progress * Fragment setup done * cta added for page clicks * rebased with develop * cta handling completed * lint formatting * lint formatting * activity added * added error handling for benefit explainer * comments resolve 1.0 * events instrumention done * rebased with develop * mock done * ui fixes * backend integration wip * background changed * API integration and flow verification done * ui changes fixed * click handled * resolved PR commits * api changes * api changes * Resolved PR commits * Reviewd PR * removed video code and used Naviinsurancedeeplinknavigator * footer issue fix * local caching of story view state * design fixes * icon gravity fix * pre-caching videos * build fix * Mayank/benefit video integration (#4567) * benefit widget insurance dashboard mock * Select Policy Item BottomSheet * Select Policy Item BottomSheet * close icon fix * addded analytics events * feedback api integration * analytics changes * TP-13156 | Quote Screen Mock Set Up (#4698) * story bug fix * gradient added (#4740) * removed unused import * bottomsheet issue fix * deserialser issue fix * cta handling fix * TP-13851 | UI Fixes For Benefit Explainer - Video Option (#4756) * text expansion done * margin set * bottomsheet code update, learn more click area increase * mock changes (#4825) * policy benefits screen api integration * deserialisation issue fixed * version code bump * api integration * radio button bug fix versionCode rollback * resolving comments * bug fixes, api related changes * applicationType, preselect fix * singleImageWidget bug fix * minor changes * click handling done for policy benefit fragment * feedback fix * word wrap partial fix * QuoteActivity back behaviour fix * adding widgetlayoutparams support in widget * tab specific cta support * merging issues fix * arrow padding changes * unused imports removal * version code rollback * code cleanup Co-authored-by: apoorvnigam <apoorv.nigam@navi.com> Co-authored-by: shreyansuraj <shreyansu.raj@navi.com> Co-authored-by: sharma-balrambhai <sharma.balrambhai@navi.com> Co-authored-by: Rajinikanth <maila.rajanikanth@navi.com> Co-authored-by: mayank-navi <mayank.sheoran@navi.com>
51 lines
1.5 KiB
Groovy
51 lines
1.5 KiB
Groovy
ext {
|
|
|
|
android_junit_version = '1.1.4'
|
|
appcompat_version = '1.5.1'
|
|
compose_version = '1.2.0-beta03'
|
|
core_version = '1.6.0'
|
|
espresso_version = '3.5.0'
|
|
hilt_version = '2.44'
|
|
junit_version = '4.13.2'
|
|
lifecycle_version = '2.5.1'
|
|
lottie_version = '5.2.0'
|
|
material_version = '1.7.0'
|
|
room_version = '2.4.3'
|
|
work_version = '2.7.1'
|
|
nav_version = '2.5.3'
|
|
camera_version = '1.1.0'
|
|
|
|
androidX = [
|
|
workKtx : "android.arch.work:work-runtime-ktx:1.0.1",
|
|
hiltWork : "androidx.hilt:hilt-work:1.0.0",
|
|
hiltKapt : "androidx.hilt:hilt-compiler:1.0.0"
|
|
]
|
|
|
|
hiltLibs = [
|
|
implementation : "com.google.dagger:hilt-android:$hilt_version",
|
|
kapt : "com.google.dagger:hilt-compiler:$hilt_version",
|
|
androidTest : "com.google.dagger:hilt-android-testing:$hilt_version",
|
|
kaptAndroidTest : "com.google.dagger:hilt-compiler:$hilt_version",
|
|
test : "com.google.dagger:hilt-android-testing:$hilt_version",
|
|
kaptTest : "com.google.dagger:hilt-compiler:$hilt_version"
|
|
]
|
|
|
|
fragmentLibs = [
|
|
ktx : "androidx.fragment:fragment-ktx:1.5.2"
|
|
]
|
|
|
|
glideLibs = [
|
|
implementation : "com.github.bumptech.glide:glide:4.14.0",
|
|
kapt : "com.github.bumptech.glide:compiler:4.14.0"
|
|
]
|
|
|
|
playCore = [
|
|
implementation : "com.google.android.play:core-ktx:1.8.1"
|
|
]
|
|
|
|
shimmer = [
|
|
implementation : 'com.facebook.shimmer:shimmer:0.5.0'
|
|
]
|
|
|
|
}
|