-
Notifications
You must be signed in to change notification settings - Fork 160
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
drop support for pre-android 5? #687
Comments
From what I see in that okhttp thread there is no reports of workaround not working, so we could safely implement it. And what are current stats of user's Android version? |
I mean for RadioDroid. |
on my old phone (4.4) the fix does not work :( |
i checked again, it is actually 4.2.2 |
If this really doesn't work, then from my point of view you can leave tls 1.1 enabled, we don't move any really private information around, and the clients which support tls1.2 will use it. |
i merged it, even if it does not help all people, it may help more than now |
it seems we are late to this game, i found a lot of people who did change this in 2018 :) |
i have now a working solution at least for my phone on the play store version. |
for all of you who remember the okhttp downgrade to keep android 4 working, now the story continues. (#646)
now also the server starts fu**ing us. some days ago people started noticing connection errors on older phones (#681) After investigating this, i noticed that the newest version of certbot changed the default settings of apache server in a way that it disallows even TLSv1.1
after reverting it back to the old one it worked again. the only reason the other servers still worked is, that they use the certbot provided by the distribution which basically does not get version upgrades, but for security reasons. so they did not do this change. for now it is working again, but this is no long term solution, also because it is a good thing that older unsecure tls versions get kicked out.
to play devils advocate here, we could just ignore security. we are just doing radio station lists. nobody cares about what you are listening to...
but in my opinion i would rather have a real solution, because i can't now when it will become important...
i found an article that there is a way to basically tell Google Play Services to upgrade the device to support TLS 1.2 (https://developer.android.com/training/articles/security-gms-provider)
But this is of course no solution for us, because it will not work on a lot of FDroid people out there.
I found another article that is saying that android 4 devices basically support tls1.2, but are not enabling it. we could just force enable it, but it may not work on some devices. i am currently researching how to do this.
(square/okhttp#2372)
please share your thoughts on this.
The text was updated successfully, but these errors were encountered: