Browse Source

1.删除x6e6f无障碍服务

2.添加6e6f缺少方法的注释。
20241218TB223FC(测试jar包)
wangwanlei 5 months ago
parent
commit
1806ae554f
1 changed files with 9 additions and 5 deletions
  1. 9
    5
      app/src/main/java/com/xhly/manageapp/ManageApplication.kt

+ 9
- 5
app/src/main/java/com/xhly/manageapp/ManageApplication.kt View File

@@ -425,11 +425,11 @@ class ManageApplication : MultiDexApplication() {
425 425
             if (ModelNameUtils.IS_LianxX505f()) {
426 426
                 //csdkManager?.enableAccessibility("com.xhly.manageapp","com.xhly.manageapp.service.TestService",true)
427 427
             } else if (ModelNameUtils.IS_LianxX6e6f()) {
428
-                csdkManager?.enableAccessibility(
428
+               /* csdkManager?.enableAccessibility(
429 429
                     "com.xhkjedu.manageapp",
430 430
                     "com.xhkjedu.manageapp.service.ManageAccessibilityService",
431 431
                     true
432
-                )
432
+                )*/
433 433
             }
434 434
         }
435 435
 
@@ -682,10 +682,12 @@ class ManageApplication : MultiDexApplication() {
682 682
          */
683 683
         //TODO 6E6F可能不存在这个方法
684 684
         fun clearAppData(pkgList: ArrayList<String>) {
685
-            if (ModelNameUtils.IS_LianxX505f() || ModelNameUtils.IS_LianxX6e6f()) {
685
+            if (ModelNameUtils.IS_LianxX505f()) {
686 686
                 pkgList.forEach {
687 687
                     csdkManager?.clearAppData(it)
688 688
                 }
689
+            }else if (ModelNameUtils.IS_LianxX6e6f()){
690
+
689 691
             }
690 692
         }
691 693
 
@@ -775,11 +777,13 @@ class ManageApplication : MultiDexApplication() {
775 777
         }
776 778
 
777 779
         /**
778
-         * 505f设置护眼模式
780
+         * 505f设置护眼模式   6E6F可能不存在这个方法
779 781
          */
780 782
         fun setEnabledEyeMode(enableFlag: Boolean) {
781
-            if (ModelNameUtils.IS_LianxX505f() || ModelNameUtils.IS_LianxX6e6f()) {
783
+            if (ModelNameUtils.IS_LianxX505f()) {
782 784
                 csdkManager?.setEnabledEyeMode(enableFlag)
785
+            }else if (ModelNameUtils.IS_LianxX6e6f()){
786
+
783 787
             }
784 788
         }
785 789
 

Loading…
Cancel
Save