chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
+48
View File
@@ -0,0 +1,48 @@
class FileSystemFile {
constructor() {
console.warn('expo-file-system is not supported on web');
}
}
class FileSystemDirectory {
constructor() {
console.warn('expo-file-system is not supported on web');
}
}
export default {
FileSystemDirectory,
FileSystemFile,
downloadFileAsync: () => {
console.warn('expo-file-system is not supported on web');
return Promise.resolve();
},
pickDirectoryAsync: () => {
console.warn('expo-file-system is not supported on web');
return Promise.resolve();
},
pickFileAsync: () => {
console.warn('expo-file-system is not supported on web');
return Promise.resolve();
},
get totalDiskSpace(): number {
console.warn('expo-file-system is not supported on web');
return 0;
},
get availableDiskSpace(): number {
console.warn('expo-file-system is not supported on web');
return 0;
},
get documentDirectory(): string {
console.warn('expo-file-system is not supported on web');
return '';
},
get cacheDirectory(): string {
console.warn('expo-file-system is not supported on web');
return '';
},
get bundleDirectory(): string {
console.warn('expo-file-system is not supported on web');
return '';
},
};