Skip to content

Commit ef8e511

Browse files
Merged in uat (pull request #238)
MRN-429, MRN-778 Approved-by: vanitha.g
2 parents d53e8a9 + 06daf11 commit ef8e511

32 files changed

+280
-170
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ android {
9898
minSdkVersion rootProject.ext.minSdkVersion
9999
targetSdkVersion rootProject.ext.targetSdkVersion
100100
versionCode 1
101-
versionName "3.2.7"
101+
versionName "3.3.3"
102102
/** Add this for react-native-camera */
103103
missingDimensionStrategy 'react-native-camera', 'general'
104104
multiDexEnabled true

android/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ platform :android do
5454
firebase_app_distribution(
5555
app: "1:235373697524:android:8b3becf8d8ff9be3a0c1a1",
5656
groups: "reactnative",
57-
release_notes: "React-Native ios build for MRN-947",
57+
release_notes: "React-Native ios build for MRN-908, MRN-901",
5858
apk_path: "../android/app/build/outputs/apk/release/app-release.apk",
5959
firebase_cli_token: "1//0gfTJ_oWJ0mHNCgYIARAAGBASNwF-L9IrYZM4cUIV5EB8gVnSvtMC6Q7aAtgrgG8R1ybhSY1Np_5r5UuZu28N144_weOQDyONcW4",
6060
)

ios/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ lane :qa_firebase do
2828
firebase_app_distribution(
2929
app: "1:235373697524:ios:0e9bd66b524978a0a0c1a1",
3030
groups: "reactnative",
31-
release_notes: "React-Native ios build for MRN-947",
31+
release_notes: "React-Native ios build for MRN-908, MRN-901",
3232
firebase_cli_path: "/usr/local/bin/firebase",
3333
firebase_cli_token: "1//0g53oUKW5j5bJCgYIARAAGBASNwF-L9Ir7Ei_6NzWEsyHOMMXytlesfgXShhLeJWRwbcf2MC3e7BaC5dwYlUZB-_osuQFsxy0Du0"
3434
)

ios/mirrorfly_rn.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@
674674
"$(inherited)",
675675
"@executable_path/Frameworks",
676676
);
677-
MARKETING_VERSION = 3.2.7;
677+
MARKETING_VERSION = 3.3.3;
678678
OTHER_LDFLAGS = (
679679
"$(inherited)",
680680
"-ObjC",
@@ -707,14 +707,14 @@
707707
"$(inherited)",
708708
"@executable_path/Frameworks",
709709
);
710-
MARKETING_VERSION = 3.2.7;
710+
MARKETING_VERSION = 3.3.3;
711711
OTHER_LDFLAGS = (
712712
"$(inherited)",
713713
"-ObjC",
714714
"-lc++",
715715
);
716716
PRODUCT_BUNDLE_IDENTIFIER = com.mirrorfly.reactnativeuikit.qa;
717-
PRODUCT_NAME = mirrorfly_rn;
717+
PRODUCT_NAME = mirrorfly_rn;
718718
PROVISIONING_PROFILE_SPECIFIER = "";
719719
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "ReactNative Adhoc";
720720
SWIFT_OBJC_BRIDGING_HEADER = "mirrorfly_rn-Bridging-Header.h";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirrorfly-uikit-react-native",
3-
"version": "1.5.0",
3+
"version": "2.1.0",
44
"description": "React-Native based UI kit for Mirrorfly",
55
"main": "dist/index.js",
66
"module": "dist/index.js",

rollup.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ export default {
6060
'react-native-progress',
6161
'react-native-safe-area-context',
6262
'react-native-screens',
63-
'react-native-simple-toast',
6463
'react-native-sound',
6564
'react-native-svg',
6665
'react-native-svg-transformer',
@@ -82,7 +81,6 @@ export default {
8281
'react-native-material-menu',
8382
'react-native-keyevent',
8483
'react-native-ringer-mode',
85-
'react-native-simple-toast',
8684
],
8785
plugins: [
8886
replace({

src/Navigation/stackNavigation.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { createNativeStackNavigator } from '@react-navigation/native-stack';
22
import React from 'react';
33
import { Provider } from 'react-redux';
44
import VideoPlayer from '../Media/VideoPlayer';
5+
import AlertModalRoot from '../common/AlertModalRoot';
6+
import ToastMessage from '../common/ToastMessage';
57
import store from '../redux/store';
68
import ArchivedScreen from '../screens/ArchivedScreen';
79
import BlockedContactListScreen from '../screens/BlockedContactListScreen';
@@ -71,7 +73,6 @@ import {
7173
VIEWALLMEDIA,
7274
} from '../screens/constants';
7375
import { getCurrentScreen } from '../uikitMethods';
74-
import ToastMessage from '../common/ToastMessage';
7576

7677
const Stack = createNativeStackNavigator();
7778

@@ -182,6 +183,7 @@ function StackNavigationPage() {
182183
<Stack.Screen name={GROUP_STACK}>{prop => <GroupScreenStackNavigation {...prop} />}</Stack.Screen>
183184
</Stack.Navigator>
184185
<ToastMessage />
186+
<AlertModalRoot />
185187
</Provider>
186188
);
187189
}

src/SDK/SDK.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import './index';
1+
import 'mirrorfly-reactnative-sdk';
22

33
const SDK = global.SDK;
44

src/SDK/index.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/SDK/sdkCallBacks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ export const callBacks = {
709709
store.dispatch(addChatMessageItem(res));
710710
}
711711

712-
if (isShowNotification) {
712+
if (isShowNotification && !res?.editMessageId) {
713713
pushNotify(res.msgId, getNotifyNickName(res), getNotifyMessage(res), res?.fromUserJid);
714714
}
715715
break;

0 commit comments

Comments
 (0)