You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-24 23:26:50 +02:00
* Allow User-added CAs in Android This will enable connecting to servers with self-signed certificates on android as per issue #680. Implemented as per: - https://android-developers.googleblog.com/2016/07/changes-to-trusted-certificate.html - https://github.com/facebook/react-native/issues/20488 * Allow User-added CAs in Android This will enable connecting to servers with self-signed certificates on android as per issue #680. Implemented as per: - https://android-developers.googleblog.com/2016/07/changes-to-trusted-certificate.html - https://github.com/facebook/react-native/issues/20488
This commit is contained in:
committed by
Laurent Cozic
parent
771975cd35
commit
7e9972d99f
@ -37,7 +37,9 @@
|
||||
android:allowBackup="true"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:theme="@style/AppTheme">
|
||||
android:theme="@style/AppTheme"
|
||||
android:networkSecurityConfig="@xml/network_security_config"
|
||||
>
|
||||
|
||||
<!-- ============================= -->
|
||||
<!-- START RN-push-notitication -->
|
||||
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<network-security-config>
|
||||
<base-config>
|
||||
<trust-anchors>
|
||||
<certificates src="system"/>
|
||||
<certificates src="user"/>
|
||||
</trust-anchors>
|
||||
</base-config>
|
||||
</network-security-config>
|
Reference in New Issue
Block a user