Fix config encryption on Android

This commit is contained in:
albexk 2024-08-03 13:52:59 +03:00
parent ffe2314d47
commit 73516c28af

View file

@ -185,7 +185,7 @@ QByteArray SecureQSettings::decryptText(const QByteArray &ba) const
bool SecureQSettings::encryptionRequired() const
{
#ifdef Q_OS_LINUX
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
// QtKeyChain failing on Linux
return false;
#endif