NTP-8286 | Remove attempt count (#986)

This commit is contained in:
Aman Chaturvedi
2024-10-18 18:37:57 +05:30
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@@ -134,8 +134,8 @@ def reactNativeArchitectures() {
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
}
def VERSION_CODE = 203
def VERSION_NAME = "2.14.3"
def VERSION_CODE = 204
def VERSION_NAME = "2.14.4"
android {
ndkVersion rootProject.ext.ndkVersion

View File

@@ -1,7 +1,7 @@
{
"name": "AV_APP",
"version": "2.14.3",
"buildNumber": "203",
"version": "2.14.4",
"buildNumber": "204",
"private": true,
"scripts": {
"android:dev": "yarn move:dev && react-native run-android",

View File

@@ -139,11 +139,11 @@ const RenderIcons: React.FC<IRenderIcons> = ({
);
})}
</View>
{telephoneNumberMaskingEnabled ? (
{/* {telephoneNumberMaskingEnabled ? (
<Text style={styles.callAttempted}>
Attempts: {totalGenuineCallsAttempted}/{totalGenuineCallsRequired}
</Text>
) : null}
) : null} */}
</>
);
};