Error: com.google.firebase.FirebaseException: No AppCheckProvider installed
i need to delete a file from firebase storage, i am following this code:
static deleteFile(String urlFile) async {
try {
final ref = FirebaseStorage.instance.refFromURL(urlFile);
await ref.delete();
} catch (e) {
if (kDebugMode) {
print(e.toString());
}
}
}
the file is deleted, but the console displays this error:
W/StorageUtil(13434): Error getting App Check token; using placeholder token instead. Error: com.google.firebase.FirebaseException: No AppCheckProvider installed.
the user is successfully authenticated.