Im trying to connect to my local Geth client using Web3j Android but getting SocketTimeoutException: connect timed out
started Geth node using
geth --rpc --rpcaddr <my_ip> --rpcport <port>
Trying to connect via
Web3j web3 = Web3jFactory.build(new ttpService("http://my_ip:port"));
Geth node and my android device are on same lan and sharing same internet.
Any help is much appreciated.