1.4.0708 优化默认桌面

This commit is contained in:
2024-07-10 18:46:43 +08:00
parent 343700837e
commit 6068bd4bb3
2 changed files with 4 additions and 2 deletions

View File

@@ -29,8 +29,8 @@ android {
defaultConfig { defaultConfig {
applicationId "com.aoleyun.sn" applicationId "com.aoleyun.sn"
versionCode 153 versionCode 154
versionName "1.4.0705" versionName "1.4.0708"
//There are no CERT files because If the mini sdk version is 23+, the AGP will ignore the V1 scheme signature. //There are no CERT files because If the mini sdk version is 23+, the AGP will ignore the V1 scheme signature.
minSdkVersion 24 minSdkVersion 24

View File

@@ -2434,6 +2434,8 @@ public class JGYUtils {
public String getDefaultDesktop() { public String getDefaultDesktop() {
String defaultDesktop = mMMKV.decodeString(CommonConfig.DEFAULT_DESKTOP_PACKAGE_NAME, ""); String defaultDesktop = mMMKV.decodeString(CommonConfig.DEFAULT_DESKTOP_PACKAGE_NAME, "");
String defaultLauncher = mMMKV.decodeString(CommonConfig.DEFAULT_LAUNCHER_PACKAGE_NAME, ""); String defaultLauncher = mMMKV.decodeString(CommonConfig.DEFAULT_LAUNCHER_PACKAGE_NAME, "");
Log.e(TAG, "getDefaultDesktop: defaultDesktop = " + defaultDesktop);
Log.e(TAG, "getDefaultDesktop: defaultLauncher = " + defaultLauncher);
if (TextUtils.isEmpty(defaultDesktop)) { if (TextUtils.isEmpty(defaultDesktop)) {
if (TextUtils.isEmpty(defaultLauncher)) { if (TextUtils.isEmpty(defaultLauncher)) {
return ""; return "";