DaveTheCoder i didn't export the game directly to my phone, i copied the apk from my laptop to my phone. godot created the idsig file when i exported the game to apk, theres probably a switch to prevent godot from creating an idsig file...
after reading a bit of a rabbit hole from your reference:
if i'm understanding correctly (considaring i'm lacking knowledge and english is not my native tongue) the singing is all accross the apk-file code, and is there to 1) identify the creator, 2) to show that a certain part in the code was not tempered and is safe.
like a sticky tape on the door where your name is wrriten on, it shows you no one changed the state of the door and if someone will look at it they would know you put it there.
the idsig is just an external signature (that doesn't change the APK) and is used only on large files (2GB+) where you want to make the install faster using ADB Incremental APK installation (only on android 11+ and on v4 signature scheme), then the installer uses the idsig as reference, enabling starting the game before install is complete. (i guess idsig is short for "ID SIGnature")
so to conclude, as long as youre apps are under 2GB, the idsig file is not necessary.