Fix duplicate netcipher classes error

Exclude netcipher from netcipher-webkit to avoid duplicate R classes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-05 19:26:45 +01:00
parent 1d2b6f2d87
commit e9093b2822

View File

@@ -102,7 +102,9 @@ dependencies {
// Tor (Orbot integration) // Tor (Orbot integration)
implementation("info.guardianproject.netcipher:netcipher:2.1.0") 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 // Testing
testImplementation("junit:junit:4.13.2") testImplementation("junit:junit:4.13.2")