Alex

Results 43 comments of Alex

> Deleting the Cache from Google Chrome fixed this issue for me. > > `Settings -> More Tools -> Clear browsing data` > > Make sure to select "All time"...

> Same error here, any update? i couldn't solve it, i get one successful app launch every 10-15 times. It looks like the only successful option is to update react-native.

You can use this: ``` import * as FileSystem from 'expo-file-system'; import {StorageAccessFramework} from 'expo-file-system'; try { const content = 'DATA'; const permissions_ = await StorageAccessFramework.requestDirectoryPermissionsAsync(); if (!permissions_.granted) { return;...

You should include env.d.ts to your tsconfig.ts file, like this: ``` { "extends": "@tsconfig/react-native/tsconfig.json", .... "include": [ .... "./env.d.ts" ], "exclude": ["node_modules"] } ```

@rodrigodiasf1984 try to delete `/* eslint-disable @typescript-.... ` on the first line and then restart IDE with reset cache. And about `className`— React Native haven't got this property.

@rodrigodiasf1984 @ser-emejia try to add this: ``` "include": [ "src/**/*.ts",