Package and asset updates before expo upgrade.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import React from "react";
|
||||
import { View, Text } from "react-native";
|
||||
import * as FileSystem from "expo-file-system";
|
||||
|
||||
export default function ScreenMediaCache() {
|
||||
console.log("DocDir", FileSystem.documentDirectory);
|
||||
|
||||
FileSystem.readDirectoryAsync(FileSystem.documentDirectory).then((p) => {
|
||||
console.log(p);
|
||||
});
|
||||
return (
|
||||
<View>
|
||||
<Text>This is the media cache screen.</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user