Skip to content
Snippets Groups Projects
Commit e41a81c4 authored by Torsten Grote's avatar Torsten Grote
Browse files

Merge branch 'update-readme' into 'master'

Update README for AAB packaging issue

See merge request !11
parents b1877549 398925fb
No related branches found
No related tags found
1 merge request!11Update README for AAB packaging issue
Pipeline #14884 passed
......@@ -9,6 +9,20 @@ Binaries for Tor and pluggable transports are not included. They can be found in
Maven artifacts: `org.briarproject:{tor,obfs4proxy,snowflake}-{android,linux,windows}`. The
`obfs4proxy` artifact provides `obfs4` and `meek_lite`.
If your app is uploaded to Google Play as an app bundle (AAB), you must include the following in
`build.gradle` to ensure that the Tor and pluggable transport binaries are extracted during
installation:
```
android {
packagingOptions {
jniLibs {
useLegacyPackaging = true
}
}
}
```
On Android, the library uses
[dont-kill-me-lib](https://code.briarproject.org/briar/dont-kill-me-lib) to hold a wake lock
whenever Tor's network connection is enabled. The helper classes in `dont-kill-me-lib` can be used
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment