Fix: Use legacy expo-file-system API to prevent deprecation error aborting photo saving ; Bump to 23.01.6

This commit is contained in:
2026-06-13 01:44:58 +02:00
parent 9e9feff220
commit 313a69e677
6 changed files with 9 additions and 6 deletions
+2 -2
View File
@@ -92,8 +92,8 @@ android {
applicationId 'de.orfel.schnappix' applicationId 'de.orfel.schnappix'
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 4 versionCode 6
versionName "23.01.4" versionName "23.01.6"
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
} }
Binary file not shown.
Binary file not shown.
+2 -2
View File
@@ -3,7 +3,7 @@
"newArchEnabled": true, "newArchEnabled": true,
"name": "Schnappix", "name": "Schnappix",
"slug": "Schnappix", "slug": "Schnappix",
"version": "23.01.4", "version": "23.01.6",
"orientation": "landscape", "orientation": "landscape",
"icon": "./Icon.png", "icon": "./Icon.png",
"userInterfaceStyle": "dark", "userInterfaceStyle": "dark",
@@ -13,7 +13,7 @@
}, },
"android": { "android": {
"package": "de.orfel.schnappix", "package": "de.orfel.schnappix",
"versionCode": 4, "versionCode": 6,
"adaptiveIcon": { "adaptiveIcon": {
"backgroundColor": "#050510", "backgroundColor": "#050510",
"foregroundImage": "./Icon-padded.png" "foregroundImage": "./Icon-padded.png"
+1 -1
View File
@@ -11,7 +11,7 @@ import {
PermissionsAndroid, PermissionsAndroid,
} from 'react-native'; } from 'react-native';
import { CameraView, useCameraPermissions } from 'expo-camera'; import { CameraView, useCameraPermissions } from 'expo-camera';
import * as FileSystem from 'expo-file-system'; import * as FileSystem from 'expo-file-system/legacy';
import { File, Paths } from 'expo-file-system/next'; import { File, Paths } from 'expo-file-system/next';
import * as ImageManipulator from 'expo-image-manipulator'; import * as ImageManipulator from 'expo-image-manipulator';
import { LinearGradient } from 'expo-linear-gradient'; import { LinearGradient } from 'expo-linear-gradient';
+1 -1
View File
@@ -1,5 +1,5 @@
import { getPermissionsAsync, requestPermissionsAsync, createAssetAsync, getAlbumAsync, createAlbumAsync, addAssetsToAlbumAsync } from 'expo-media-library'; import { getPermissionsAsync, requestPermissionsAsync, createAssetAsync, getAlbumAsync, createAlbumAsync, addAssetsToAlbumAsync } from 'expo-media-library';
import * as FileSystem from 'expo-file-system'; import * as FileSystem from 'expo-file-system/legacy';
import { logger } from './logger'; import { logger } from './logger';
/** /**