MKR1010 OTA from android

Dear all,

(I'm new to Arduino so please bear with me :slight_smile: )
I want to make OTA from an Android device.
I managed to use ArduinoOTA from windows, and I would like to do the same from Android.
Is there a similar tool like AndroidOTA.exe for android?
If not - where can I find the AndroidOTA.exe source code? Or is what protocol is used to communicate with the OTA on the MKR? (I will try to import/implement it to Android)

Another option that I researched (which actually I prefer) is using WebUploader. I saw that option for the esp32, but as I understand it's specifically for the esp32 firmware, and not for Arduino that uses it (the MKR). Is there WebUploader for the MKR1010?

Thanks

as you can see on the server side, ArduinoOTA does a simple http upload of the bin file

Just simple Http upload sounds great. I will give it a try.
Thank you very much for the quick reply

turkelIt:
Just simple Http upload sounds great. I will give it a try.
Thank you very much for the quick reply

POST /sketch HTTP/1.1

Authorization header with Basic auth is required and Content-Length is required(chunked transfer encoding is not supported)