Merge pull request #544 from navi-medici/version-bump/17July

TP-0 | version bump 17th July release
This commit is contained in:
Aman Chaturvedi
2023-07-19 14:24:04 +05:30
committed by GitHub
4 changed files with 13 additions and 16 deletions

View File

@@ -131,8 +131,8 @@ def reactNativeArchitectures() {
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
}
def VERSION_CODE = 70
def VERSION_NAME = "2.2.9"
def VERSION_CODE = 72
def VERSION_NAME = "2.2.11"
android {
ndkVersion rootProject.ext.ndkVersion

View File

@@ -1,6 +1,6 @@
{
"name": "AV_APP",
"version": "2.2.9",
"version": "2.2.11",
"private": true,
"scripts": {
"android:dev": "yarn move:dev && react-native run-android",

View File

@@ -27,10 +27,12 @@ const NudgeSuspiciousFeedbackBottomSheet: React.FC<INudgeSuspiciousFeedbackBotto
const height = getDynamicBottomSheetHeightPercentageFn(100, 24);
useEffect(() => {
addClickstreamEvent(CLICKSTREAM_EVENT_NAMES.FA_SUSPICIOUS_NUDGE_LANDED, {
caseId,
});
}, []);
if (openBottomSheet) {
addClickstreamEvent(CLICKSTREAM_EVENT_NAMES.FA_SUSPICIOUS_NUDGE_LANDED, {
caseId,
});
}
}, [openBottomSheet]);
const handleClose = () => {
if (successBtnLoader) return;
@@ -49,23 +51,18 @@ const NudgeSuspiciousFeedbackBottomSheet: React.FC<INudgeSuspiciousFeedbackBotto
return (
<BottomSheet
heightPercentage={height(5)}
heightPercentage={height(4.5)}
visible={openBottomSheet}
HeaderNode={() => (
<View style={[styles.headerContainer, GenericStyles.mh16, GenericStyles.mt16]}>
<WarningIcon />
<Text style={[styles.heading, GenericStyles.mh12]}>Location inconsistency !</Text>
<TouchableOpacity activeOpacity={0.7} onPress={handleClose}>
<CloseIcon color={COLORS.TEXT.LIGHT} />
</TouchableOpacity>
<Text style={[styles.heading, GenericStyles.mh12]}>Suspicious location alert!</Text>
</View>
)}
setVisible={handleClose}
>
<View style={[GenericStyles.mh16, GenericStyles.mt16]}>
<Text>
Capture accurate feedback by filling out the feedback at the customer's location.
</Text>
<Text>Please fill the feedback at the location of the address selected</Text>
</View>
<View style={[GenericStyles.m16, GenericStyles.row]}>
<Button