diff options
| author | CrypticC3s4r <27031384+CrypticC3s4r@users.noreply.github.com> | 2024-12-28 20:12:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-28 21:12:19 +0200 |
| commit | 82f1f61c6b3dc9b4c073e57049dd46967be18013 (patch) | |
| tree | 6b9b808383653e4739ed17ce87381a9284dd0fc8 /apps/mobile/plugins/network_security_config.xml | |
| parent | a1a3a7e0f402850091885e5ac088ad7af1f5d27a (diff) | |
| download | karakeep-82f1f61c6b3dc9b4c073e57049dd46967be18013.tar.zst | |
fix(mobile): Add support for self signed certs in android. Fixes #381 (#416)
Co-authored-by: MohamedBassem <me@mbassem.com>
Diffstat (limited to 'apps/mobile/plugins/network_security_config.xml')
| -rw-r--r-- | apps/mobile/plugins/network_security_config.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/mobile/plugins/network_security_config.xml b/apps/mobile/plugins/network_security_config.xml new file mode 100644 index 00000000..bb6ab93d --- /dev/null +++ b/apps/mobile/plugins/network_security_config.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<network-security-config> + <base-config cleartextTrafficPermitted="true"> + <trust-anchors> + <certificates src="system" /> + <certificates src="user" /> + </trust-anchors> + </base-config> +</network-security-config>
\ No newline at end of file |
