Skip to content

Commit c7c54cf

Browse files
Merged in feature/delete_large_file_download (pull request #211)
MRN-802 download SDK update Approved-by: vanitha.g
2 parents 0c7e74b + f544442 commit c7c54cf

File tree

8 files changed

+18
-13
lines changed

8 files changed

+18
-13
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ android {
8888
minSdkVersion rootProject.ext.minSdkVersion
8989
targetSdkVersion rootProject.ext.targetSdkVersion
9090
versionCode 1
91-
versionName "3.0.2"
91+
versionName "3.0.3"
9292
/** Add this for react-native-camera */
9393
missingDimensionStrategy 'react-native-camera', 'general'
9494
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 android build for feature MRN-429, MRN-774, MRN-351",
57+
release_notes: "React-Native android build for feature MRN-802",
5858
apk_path: "../android/app/build/outputs/apk/release/app-release.apk",
5959
firebase_cli_token: "1//0gfTJ_oWJ0mHNCgYIARAAGBASNwF-L9IrYZM4cUIV5EB8gVnSvtMC6Q7aAtgrgG8R1ybhSY1Np_5r5UuZu28N144_weOQDyONcW4",
6060
)

ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1354,7 +1354,7 @@ PODS:
13541354
- Yoga
13551355
- react-native-contacts (8.0.4):
13561356
- React-Core
1357-
- react-native-create-thumbnail (2.0.1):
1357+
- react-native-create-thumbnail (2.0.0):
13581358
- React-Core
13591359
- react-native-document-picker (9.3.1):
13601360
- DoubleConversion

ios/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ lane :qa_firebase do
2929
firebase_app_distribution(
3030
app: "1:695832127329:ios:f8b6b0fab296a800",
3131
groups: "reactnative",
32-
release_notes: "React-Native ios build for feature MRN-429, MRN-774, MRN-351",
32+
release_notes: "React-Native ios build for feature MRN-802",
3333
firebase_cli_path: "/usr/local/bin/firebase",
3434
firebase_cli_token: "1//0g53oUKW5j5bJCgYIARAAGBASNwF-L9Ir7Ei_6NzWEsyHOMMXytlesfgXShhLeJWRwbcf2MC3e7BaC5dwYlUZB-_osuQFsxy0Du0"
3535
)

ios/mirrorfly_rn.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@
660660
"$(inherited)",
661661
"@executable_path/Frameworks",
662662
);
663-
MARKETING_VERSION = 3.0.2;
663+
MARKETING_VERSION = 3.0.3;
664664
OTHER_LDFLAGS = (
665665
"$(inherited)",
666666
"-ObjC",
@@ -693,7 +693,7 @@
693693
"$(inherited)",
694694
"@executable_path/Frameworks",
695695
);
696-
MARKETING_VERSION = 3.0.2;
696+
MARKETING_VERSION = 3.0.3;
697697
OTHER_LDFLAGS = (
698698
"$(inherited)",
699699
"-ObjC",

src/SDK/index.js

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

src/Service/PushNotify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const updateProgressNotification = async (msgId, progress, type, isCancel
9393
activeDownloads.progress = activeDownloads.files > 0 ? Math.floor(totalProgress / activeDownloads.files) : 0;
9494

9595
// Update notification title
96-
const title = activeDownloads.files > 1 ? `Downloading ${activeDownloads.files} files` : `Downloading Media`;
96+
const title = activeDownloads.files > 1 ? `Downloading ${activeDownloads.files} files` : 'Downloading 1 file';
9797

9898
// If all downloads are canceled, clear notification
9999
if (activeDownloads.files === 0) {

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4350,6 +4350,11 @@ define-properties@^1.1.3, define-properties@^1.2.1:
43504350
has-property-descriptors "^1.0.0"
43514351
object-keys "^1.1.1"
43524352

4353+
delayed-stream@~1.0.0:
4354+
version "1.0.0"
4355+
resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
4356+
integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
4357+
43534358
denodeify@^1.2.1:
43544359
version "1.2.1"
43554360
resolved "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz"

0 commit comments

Comments
 (0)