From e9093b2822bbdd762811fff7d77a491087ce003f Mon Sep 17 00:00:00 2001 From: SysAdmin Date: Sun, 5 Oct 2025 19:26:45 +0100 Subject: [PATCH] Fix duplicate netcipher classes error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Exclude netcipher from netcipher-webkit to avoid duplicate R classes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index abaab13..3f7dcef 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -102,7 +102,9 @@ dependencies { // Tor (Orbot integration) implementation("info.guardianproject.netcipher:netcipher:2.1.0") - implementation("info.guardianproject.netcipher:netcipher-webkit:2.1.0") + implementation("info.guardianproject.netcipher:netcipher-webkit:2.1.0") { + exclude(group = "info.guardianproject.netcipher", module = "netcipher") + } // Testing testImplementation("junit:junit:4.13.2")