Creo un archivo .csv para descargarlo. En windows todo funciona bien, pero en android, al compartir el archivo se descarga con otro nombre como "share9457849389.csv"
const file = new File([text], 'myFile.csv', { type: 'text/csv' }) if (navigator.canShare && navigator.canShare({ files: [file] })) { navigator .share({ files: [file], text: 'Some text', title: `The title` }) .then(() => resolve('')) .catch((e: any) => reject(e)) } else reject('Bad news')¿Cómo puedo solucionar este problema?