skip to Main Content

strorageException error in flutter how to fix?

when i create a new account the error occurs W/StorageUtil(22184): Error getting App Check token; using placeholder token instead. Error: com.google.firebase.FirebaseException: Error returned from API. code: 403 body: App attestation failed. W/NetworkRequest(22184): no auth token for request E/StorageException(22184): StorageException has…

VIEW QUESTION

Flutter Firebase: How to upload multiple images?

I've this Button to select images: IconButton( onPressed: () async { final results = await FilePicker.platform.pickFiles( allowMultiple: true, type: FileType.custom, allowedExtensions: ['png', 'jpg'], ); if (results == null) { ScaffoldMessenger.of(context).showSnackBar( const SnackBar( content: Text("No Image selected") ), ); return null;…

VIEW QUESTION
Back To Top
Search