1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-01 09:16:00 +00:00

Disabled DNSSEC for Play Store release

This commit is contained in:
M66B 2024-06-10 08:07:58 +02:00
parent b04a7873cd
commit 02882a953e

View file

@ -461,6 +461,8 @@ public class DnsHelper {
} }
static boolean hasDnsSec() { static boolean hasDnsSec() {
if (BuildConfig.PLAY_STORE_RELEASE)
return false;
// DNSSEC causes crashes in libc // DNSSEC causes crashes in libc
return (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O); return (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O);
} }