-
-
Notifications
You must be signed in to change notification settings - Fork 518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trust user added CA certificates #4397
base: master
Are you sure you want to change the base?
Conversation
@@ -49,7 +49,8 @@ | |||
android:largeHeap="true" | |||
android:supportsRtl="true" | |||
android:theme="@style/Theme.Jellyfin" | |||
android:usesCleartextTraffic="true"> | |||
android:usesCleartextTraffic="true" |
Check warning
Code scanning / Android Lint
Attribute unused on older versions Warning
@@ -49,7 +49,8 @@ | |||
android:largeHeap="true" | |||
android:supportsRtl="true" | |||
android:theme="@style/Theme.Jellyfin" | |||
android:usesCleartextTraffic="true"> | |||
android:usesCleartextTraffic="true" | |||
android:networkSecurityConfig="@xml/network_security_config"> |
Check warning
Code scanning / Android Lint
Attribute unused on older versions Warning
@@ -0,0 +1,9 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<network-security-config> | |||
<base-config cleartextTrafficPermitted="true"> |
Check warning
Code scanning / Android Lint
Insecure Base Configuration Warning
<base-config cleartextTrafficPermitted="true"> | ||
<trust-anchors> | ||
<certificates src="system" /> | ||
<certificates src="user" /> |
Check warning
Code scanning / Android Lint
Allowing User Certificates Warning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add appropriate tools:ignore attributes for the various lint issues
Trust user added CA certificates. I added a CA root certificate on Fire TV stick, and the Amazon Silk Browser trusts the certificate but Jellyfin app shows "Unable to connect" when using the https URL
Changes
Trust both system (default behavior) and also user added CA root certificates
Issues