在更低版本的安卓上启用跟随系统亮暗主题功能(#317)

This commit is contained in:
lyswhut 2023-11-14 13:30:49 +08:00
parent 3752355039
commit cb7152409a
2 changed files with 5 additions and 2 deletions

View File

@ -15,9 +15,12 @@
- 修复主题背景覆盖不全的问题
- 修复清理缓存后查看日志时会导致APP崩溃的问题
### 变更
- 在更低版本的安卓上启用跟随系统亮暗主题功能(#317
### 其他
- 移除所有内置源由于收到腾讯投诉要求停止提供软件内置的连接到他们平台的在线播放及下载服务所以从即日2023年10月18日起LX本身不再提供上述服务
- 更新许可协议的排版,使其看起来更加清晰明了,更新数据来源原理说明
- 更新 React native 到 v0.72.6

View File

@ -357,7 +357,7 @@ export const getIsSupportedAutoTheme = () => {
if (isSupportedAutoTheme == null) {
const osVerNum = parseInt(osVer)
isSupportedAutoTheme = isAndroid
? osVerNum >= 10
? osVerNum >= 5
: osVerNum >= 13
}
return isSupportedAutoTheme