Arti Mobile on Android
Using Tor's new Rust-based runtime in your Android app
To build for Android
Sample Project for Android
Arti.init(this);Proxy proxy = new Proxy(Proxy.Type.SOCKS, new InetSocketAddress(proxyHost, proxyPort));
HttpURLConnection connection = null;
URL url = new URL(targetURL);
connection = (HttpURLConnection)url.openConnection(proxy);
connection.setRequestMethod("GET");Last updated