From 8c9c78d2aff9d3a1805137832df4138df8b4c950 Mon Sep 17 00:00:00 2001 From: Moe Hamade Date: Fri, 16 Jan 2026 14:52:39 +0200 Subject: [PATCH] feat: Add NanoHTTPD for hotspot APK sharing This commit introduces the `nanohttpd` library, which will be used to implement an HTTP server for sharing the application's APK over a local hotspot. The specific dependency added is `org.nanohttpd:nanohttpd:2.3.1`. --- app/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 02330d6c..953a479d 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -130,6 +130,9 @@ dependencies { // WebSocket implementation(libs.okhttp) + // HTTP Server for hotspot APK sharing + implementation("org.nanohttpd:nanohttpd:2.3.1") + // Arti (Tor in Rust) Android bridge - custom build from latest source // Built with rustls, 16KB page size support, and onio//un service client // Native libraries are in src/tor/jniLibs/ (extracted from arti-custom.aar)