socket access denied in kotlin Android
so I get this error(info) I/System.out: [socket]:check permission begin! even though I have these permissions in AndroidManifest.xml
Here is the code that causes the error (the connect() function causes the error )
connectBTN.setOnClickListener {
var fclient = FTPClient()
runCatching {
fclient.connect("192.168.1.32",21)
fclient.login(CREDENTIALS...)
}
}
I've tried many things but none of them seems to work I don't know what...