version:1.0.0

update:增加混淆,优化其他包名
bugfixes:
This commit is contained in:
2024-07-11 17:12:25 +08:00
parent 986bebfea4
commit ef836554ad
17 changed files with 488 additions and 40 deletions

View File

@@ -244,7 +244,7 @@ public class AppListFragment extends BaseFragment {
ApkUtils.openApp(mContext, "com.uiui.videoplayer");
break;
case "aios.appstore":
ApkUtils.openApp(mContext, "com.uiuios.appstore");
ApkUtils.openApp(mContext, "com.xxpatx.store");
break;
case "com.android.dialer":
// int aole_call_forbid = Settings.System.getInt(mContext.getContentResolver(), "aole_call_forbid", 0);
@@ -259,8 +259,8 @@ public class AppListFragment extends BaseFragment {
// }
break;
case "com.xxpatx.os":
case "com.uiuios.sn":
case "com.uiuios.appstore":
case "com.xxpatx.sn":
case "com.xxpatx.store":
case "com.uiuios.browser":
ApkUtils.openPackage(v.getContext(), desktopIcon.getPackage(), desktopIcon.getClazz());
AppUsedTimeUtils.getInstance().setAppPackageName(desktopIcon.getPackage());
@@ -295,7 +295,7 @@ public class AppListFragment extends BaseFragment {
}
switch (pkg) {
case "aios.exit":
case "com.uiuios.sn":
case "com.xxpatx.sn":
case "aios.daily.app":
case "aios.appstore":
break;

View File

@@ -511,7 +511,7 @@ public class CustomFragment extends BaseMvvmFragment<CustomViewModel, FragmentCu
mViewDataBinding.clActivation.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
ApkUtils.openPackage(mContext, "com.uiuios.sn");
ApkUtils.openPackage(mContext, "com.xxpatx.sn");
}
});
mViewDataBinding.clControl.setOnClickListener(new View.OnClickListener() {

View File

@@ -543,7 +543,7 @@ public class HomeFragment extends BaseMvvmFragment<HomeViewModel, FragmentHomeBi
}
public void toAppstore(View view) {
if (!ApkUtils.openPackage(mContext, "com.uiuios.appstore")) {
if (!ApkUtils.openPackage(mContext, "com.xxpatx.store")) {
Toaster.show("打开失败,请检查应用是否安装");
}
}

View File

@@ -255,7 +255,7 @@ public class SettingsFragment extends BaseMvvmFragment<SettingsViewModel, Fragme
public class BtnClick {
public void toSn(View view) {
if (!ApkUtils.openPackage(mContext, "com.uiuios.sn")) {
if (!ApkUtils.openPackage(mContext, "com.xxpatx.sn")) {
Toaster.show("打开失败,请检查应用是否安装");
}
}