Skip to content

Commit

Permalink
Fix single download (#7643)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson authored Feb 17, 2024
1 parent 8c7d4cb commit ef0b2cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ android {
// versionCode is automatically incremented in CI
versionCode 1
// Make sure this is above the currently released Android version in the play store if your changes touch native code:
versionName "1.1.412"
versionName "1.1.413"
resValue "string", "build_config_package", "co.audius.app"
resValue 'string', "CODE_PUSH_APK_BUILD_TIME", String.format("\"%d\"", System.currentTimeMillis())
resConfigs "en"
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/ios/AudiusReactNative/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.86</string>
<string>1.1.87</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
3 changes: 1 addition & 2 deletions packages/mobile/src/services/track-download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,11 @@ const download = async ({
* straight to the Downloads directory.
*/
directory: ReactNativeBlobUtil.fs.dirs.DownloadDir,
getFetchConfig: (filePath) => ({
getFetchConfig: () => ({
addAndroidDownloads: {
description: filename,
mediaScannable: true,
notification: true,
path: filePath,
storeInDownloads: true,
title: filename,
useDownloadManager: true
Expand Down

0 comments on commit ef0b2cd

Please sign in to comment.