fix: use ffmpegkit fork

This commit is contained in:
sarendsen
2025-04-07 12:44:39 +02:00
parent db527311d6
commit 8b3f950bc5
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import { FilterButton } from "@/components/filters/FilterButton";
import { LogLevel, useLog, writeErrorLog } from "@/utils/log";
import * as FileSystem from "expo-file-system";
import { useNavigation } from "expo-router";
import * as Sharing from "expo-sharing";
//import * as Sharing from "expo-sharing";
import React, { useCallback, useEffect, useMemo, useState } from "react";
import { useTranslation } from "react-i18next";
import { ScrollView, TouchableOpacity, View } from "react-native";
@@ -48,7 +48,7 @@ export default function page() {
FileSystem.writeAsStringAsync(uri, JSON.stringify(filteredLogs))
.then(() => {
setLoading(false);
Sharing.shareAsync(uri, { mimeType: "txt", UTI: "txt" });
//Sharing.shareAsync(uri, { mimeType: "txt", UTI: "txt" });
})
.catch((e) =>
writeErrorLog("Something went wrong attempting to export", e),

View File

@@ -64,7 +64,7 @@
"expo-task-manager": "~12.0.5",
"expo-updates": "~0.26.17",
"expo-web-browser": "~14.0.2",
"ffmpeg-kit-react-native": "https://github.com/RebootMotion/ffmpeg-kit-react-native.git",
"ffmpeg-kit-react-native": "git+https://github.com/lufinkey/ffmpreg-kit-react-native",
"i18next": "^24.2.2",
"jotai": "^2.11.3",
"lodash": "^4.17.21",