I have an app that does a few FTP actions.
I am using okHTTPutils2 v2.82 and B4A 9.01
FTP.List("/images/gallery/")
The above FTP action works fine, so I know the credentials and the connection are ok.
But when I try to create a new directory using a Google Pixel phone running SDK 28, it gives a "
java.net.SocketException: Connection reset" error:
FTP.SendCommand("MKD","/images/Gallery/" & NewDirName)
It works in the emulator running SDK 28, and on a Nexus running SDK 24 and an S4 running SDK 21.
Since the "MKD" (using ".SendCommand") is a "manually-specified" action (and not a built-in action like .Upload or .List) could this have something to do with this error?