diff --git a/android/app/build.gradle b/android/app/build.gradle index 0e6e7467..6150d8c1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -92,8 +92,8 @@ android { applicationId 'de.orfel.schnappix' minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 6 - versionName "23.01.6" + versionCode 7 + versionName "23.01.7" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" } diff --git a/apks/Schnappix_v23.01.7.aab b/apks/Schnappix_v23.01.7.aab new file mode 100644 index 00000000..8c42c320 Binary files /dev/null and b/apks/Schnappix_v23.01.7.aab differ diff --git a/apks/Schnappix_v23.01.7.apk b/apks/Schnappix_v23.01.7.apk new file mode 100644 index 00000000..2cdb83fd --- /dev/null +++ b/apks/Schnappix_v23.01.7.apk @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4a188a07113d33b323534c83899297f5e5d6ec531110002349328e76443d8a +size 122756197 diff --git a/app.json b/app.json index 316a3537..bb437fcc 100644 --- a/app.json +++ b/app.json @@ -3,7 +3,7 @@ "newArchEnabled": true, "name": "Schnappix", "slug": "Schnappix", - "version": "23.01.6", + "version": "23.01.7", "orientation": "landscape", "icon": "./Icon.png", "userInterfaceStyle": "dark", @@ -13,7 +13,7 @@ }, "android": { "package": "de.orfel.schnappix", - "versionCode": 6, + "versionCode": 7, "adaptiveIcon": { "backgroundColor": "#050510", "foregroundImage": "./Icon-padded.png" diff --git a/src/services/storage.ts b/src/services/storage.ts index 2fa4cde4..9fca556a 100644 --- a/src/services/storage.ts +++ b/src/services/storage.ts @@ -72,11 +72,11 @@ export async function saveToGallery(localUri: string, type: 'Raw' | 'Collage', e if (!album) { // 3. If it doesn't exist, create it with our asset - await createAlbumAsync(ALBUM_NAME, asset, false); + await createAlbumAsync(ALBUM_NAME, asset, true); logger.log(`Created new album "${ALBUM_NAME}" and copied photo.`); } else { // 4. If it exists, add our asset to it - await addAssetsToAlbumAsync([asset], album, false); + await addAssetsToAlbumAsync([asset], album, true); logger.log(`Copied photo to existing album "${ALBUM_NAME}".`); }