Selaa lähdekoodia

1.添加自定义csdkmanager

20241218TB223FC(测试jar包)
wangwanlei 8 kuukautta sitten
vanhempi
commit
3caea86c73
2 muutettua tiedostoa jossa 823 lisäystä ja 1 poistoa
  1. 823
    0
      app/src/main/java/android/app/csdk/CSDKManager.java
  2. 0
    1
      corelib/build.gradle.kts

+ 823
- 0
app/src/main/java/android/app/csdk/CSDKManager.java Näytä tiedosto

@@ -0,0 +1,823 @@
1
+package android.app.csdk;
2
+
3
+import android.content.ComponentName;
4
+import android.content.Context;
5
+import android.graphics.Bitmap;
6
+
7
+import java.util.List;
8
+
9
+public class CSDKManager {
10
+    /**
11
+     * x505f的方法
12
+     */
13
+    public static final int LOCKSCREEN_MODE_NONE = 0;
14
+    public static final int LOCKSCREEN_MODE_SWIPE = 1;
15
+
16
+    public CSDKManager(Context context) {
17
+        throw new RuntimeException("Stub!");
18
+    }
19
+
20
+    public static String getLauncherPackageName(Context context, int tag) {
21
+        throw new RuntimeException("Stub!");
22
+    }
23
+
24
+    public boolean getCustomSplashPath() {
25
+        throw new RuntimeException("Stub!");
26
+    }
27
+
28
+    public void setCustomSplashPath(String path) {
29
+        throw new RuntimeException("Stub!");
30
+    }
31
+
32
+    public boolean getCustomOTG() {
33
+        throw new RuntimeException("Stub!");
34
+    }
35
+
36
+    public void setCustomOTG(boolean enable) {
37
+        throw new RuntimeException("Stub!");
38
+    }
39
+
40
+    public boolean getCustomFASTBOOT() {
41
+        throw new RuntimeException("Stub!");
42
+    }
43
+
44
+    public void setCustomFASTBOOT(boolean enable) {
45
+        throw new RuntimeException("Stub!");
46
+    }
47
+
48
+    public boolean getCustomRecovery_v3() {
49
+        throw new RuntimeException("Stub!");
50
+    }
51
+
52
+    public void setCustomRecovery_v3(boolean enable) {
53
+        throw new RuntimeException("Stub!");
54
+    }
55
+
56
+    public boolean getCustomSDUPDATE() {
57
+        throw new RuntimeException("Stub!");
58
+    }
59
+
60
+    public void setCustomSDUPDATE(boolean enable) {
61
+        throw new RuntimeException("Stub!");
62
+    }
63
+
64
+    public boolean getCustomHARDRST() {
65
+        throw new RuntimeException("Stub!");
66
+    }
67
+
68
+    public void setCustomHARDRST(boolean enable) {
69
+        throw new RuntimeException("Stub!");
70
+    }
71
+
72
+    public boolean getCustomCHARGE() {
73
+        throw new RuntimeException("Stub!");
74
+    }
75
+
76
+    public void setCustomCHARGE(boolean enable) {
77
+        throw new RuntimeException("Stub!");
78
+    }
79
+
80
+    public boolean shutdownDevice() {
81
+        throw new RuntimeException("Stub!");
82
+    }
83
+
84
+    public boolean sleepDevice() {
85
+        throw new RuntimeException("Stub!");
86
+    }
87
+
88
+    public boolean wakeupDevice() {
89
+        throw new RuntimeException("Stub!");
90
+    }
91
+
92
+    public boolean rebootDevice() {
93
+        throw new RuntimeException("Stub!");
94
+    }
95
+
96
+    public Bitmap captureScreen() {
97
+        throw new RuntimeException("Stub!");
98
+    }
99
+
100
+    public void enableCaptureScreen_v3(boolean enabled) {
101
+        throw new RuntimeException("Stub!");
102
+    }
103
+
104
+    public void setSafeModeDisabled(boolean disabled) {
105
+        throw new RuntimeException("Stub!");
106
+    }
107
+
108
+    public boolean launchFactoryReset() {
109
+        throw new RuntimeException("Stub!");
110
+    }
111
+
112
+    public void disableFactoryReset(boolean disabled) {
113
+        throw new RuntimeException("Stub!");
114
+    }
115
+
116
+    public void disallowFactoryReset_v3(boolean disallowed) {
117
+        throw new RuntimeException("Stub!");
118
+    }
119
+
120
+    public boolean unlockScreen() {
121
+        throw new RuntimeException("Stub!");
122
+    }
123
+
124
+    public boolean enableDevMode(boolean enabled) {
125
+        throw new RuntimeException("Stub!");
126
+    }
127
+
128
+    public boolean enableSystemAutoUpdate(boolean enabled) {
129
+        throw new RuntimeException("Stub!");
130
+    }
131
+
132
+    public void disableMultiUser(boolean disabled) {
133
+        throw new RuntimeException("Stub!");
134
+    }
135
+
136
+    public void disallowMultiUser_v3(boolean disallowed) {
137
+        throw new RuntimeException("Stub!");
138
+    }
139
+
140
+    public boolean disableCamera(boolean disable) {
141
+        throw new RuntimeException("Stub!");
142
+    }
143
+
144
+    public void setUserRestriction(String key, boolean value) {
145
+        throw new RuntimeException("Stub!");
146
+    }
147
+
148
+    public void disableLocation(boolean disable) {
149
+        throw new RuntimeException("Stub!");
150
+    }
151
+
152
+    public String getDeviceInfo(int type) {
153
+        throw new RuntimeException("Stub!");
154
+    }
155
+
156
+    public void removeNetworkAccessWhitelist(List<String> addrList) {
157
+        throw new RuntimeException("Stub!");
158
+    }
159
+
160
+    public void addNetworkAccessWhitelist(List<String> addrList) {
161
+        throw new RuntimeException("Stub!");
162
+    }
163
+
164
+    public List<String> getNetworkAccessWhitelist() {
165
+        throw new RuntimeException("Stub!");
166
+    }
167
+
168
+    public void addNetworkAccessBlacklist(List<String> addrList) {
169
+        throw new RuntimeException("Stub!");
170
+    }
171
+
172
+    public List<String> getNetworkAccessBlacklist() {
173
+        throw new RuntimeException("Stub!");
174
+    }
175
+
176
+    public void enableNetworkAccess(boolean enabled) {
177
+        throw new RuntimeException("Stub!");
178
+    }
179
+
180
+    public boolean isNetworkRulesEnabled() {
181
+        throw new RuntimeException("Stub!");
182
+    }
183
+
184
+    public List<String> GetAppWhiteRules() {
185
+        throw new RuntimeException("Stub!");
186
+    }
187
+
188
+    public List<String> GetAppBlackRules() {
189
+        throw new RuntimeException("Stub!");
190
+    }
191
+
192
+    public boolean setDisplayBlacklist(List<String> packageNames, boolean enable) {
193
+        throw new RuntimeException("Stub!");
194
+    }
195
+
196
+    public List<String> getDisplayBlacklist_v3() {
197
+        throw new RuntimeException("Stub!");
198
+    }
199
+
200
+    public void setDisplayBlacklist_v3(List<String> packageNames) {
201
+        throw new RuntimeException("Stub!");
202
+    }
203
+
204
+    public void removeDisplayBlacklist_v3(List<String> packageNames) {
205
+        throw new RuntimeException("Stub!");
206
+    }
207
+
208
+    public void addAppManageWhiteList_v3(List<String> packageNames) {
209
+        throw new RuntimeException("Stub!");
210
+    }
211
+
212
+    public List<String> getAppManageWhiteList_v3() {
213
+        throw new RuntimeException("Stub!");
214
+    }
215
+
216
+    public void removeAppManageWhiteList_v3(List<String> packageNames) {
217
+        throw new RuntimeException("Stub!");
218
+    }
219
+
220
+    public void addAppManageBlackList_v3(List<String> packageNames) {
221
+        throw new RuntimeException("Stub!");
222
+    }
223
+
224
+    public List<String> getAppManageBlackList_v3() {
225
+        throw new RuntimeException("Stub!");
226
+    }
227
+
228
+    public void removeAppManageBlackList_v3(List<String> packageNames) {
229
+        throw new RuntimeException("Stub!");
230
+    }
231
+
232
+    public void setRuntimePermissions(boolean enable) {
233
+        throw new RuntimeException("Stub!");
234
+    }
235
+
236
+    public boolean setlockInputMethod(String packageName) {
237
+        throw new RuntimeException("Stub!");
238
+    }
239
+
240
+    public void setAppOpsPermissions(boolean enable) {
241
+        throw new RuntimeException("Stub!");
242
+    }
243
+
244
+    public void disableInstallation(boolean enable) {
245
+        throw new RuntimeException("Stub!");
246
+    }
247
+
248
+    public void disableUnInstallation(boolean enable) {
249
+        throw new RuntimeException("Stub!");
250
+    }
251
+
252
+    public void disableApplicationManage_v3(boolean enable) {
253
+        throw new RuntimeException("Stub!");
254
+    }
255
+
256
+    public void killApplicationProcess(String packageName) {
257
+        throw new RuntimeException("Stub!");
258
+    }
259
+
260
+    public void installPackage(String packagePath) {
261
+        throw new RuntimeException("Stub!");
262
+    }
263
+
264
+    public void uninstallPackage(String packageName, boolean keepData) {
265
+        throw new RuntimeException("Stub!");
266
+    }
267
+
268
+    public void addInstallPackageWhiteList(List<String> packageNames) {
269
+        throw new RuntimeException("Stub!");
270
+    }
271
+
272
+    public List<String> getInstallPackageWhiteList() {
273
+        throw new RuntimeException("Stub!");
274
+    }
275
+
276
+    public void removeInstallPackageWhiteList(List<String> packageNames) {
277
+        throw new RuntimeException("Stub!");
278
+    }
279
+
280
+    public void addInstallPackageBlackList(List<String> packageNames) {
281
+        throw new RuntimeException("Stub!");
282
+    }
283
+
284
+    public List<String> getInstallPackageBlackList() {
285
+        throw new RuntimeException("Stub!");
286
+    }
287
+
288
+    public void removeInstallPackageBlackList(List<String> packageNames) {
289
+        throw new RuntimeException("Stub!");
290
+    }
291
+
292
+    public void addUninstallPackageWhiteList(List<String> packageNames) {
293
+        throw new RuntimeException("Stub!");
294
+    }
295
+
296
+    public List<String> getUninstallPackageWhiteList() {
297
+        throw new RuntimeException("Stub!");
298
+    }
299
+
300
+    public void removeUninstallPackageWhiteList(List<String> packageNames) {
301
+        throw new RuntimeException("Stub!");
302
+    }
303
+
304
+    public void addUninstallPackageBlackList(List<String> packageNames) {
305
+        throw new RuntimeException("Stub!");
306
+    }
307
+
308
+    public List<String> getUninstallPackageBlackList() {
309
+        throw new RuntimeException("Stub!");
310
+    }
311
+
312
+    public void removeUninstallPackageBlackList(List<String> packageNames) {
313
+        throw new RuntimeException("Stub!");
314
+    }
315
+
316
+    public void disableTabletMasterAutostart(boolean disable) {
317
+        throw new RuntimeException("Stub!");
318
+    }
319
+
320
+    public void disableAutostart(boolean disable) {
321
+        throw new RuntimeException("Stub!");
322
+    }
323
+
324
+    public void addAutostartPackageBlackList(List<String> packageNames) {
325
+        throw new RuntimeException("Stub!");
326
+    }
327
+
328
+    public List<String> getAutostartPackageBlackList() {
329
+        throw new RuntimeException("Stub!");
330
+    }
331
+
332
+    public void removeAutostartPackageBlackList(List<String> packageNames) {
333
+        throw new RuntimeException("Stub!");
334
+    }
335
+
336
+    public void setComponentEnabled(ComponentName com, int newstate, int flag) {
337
+        throw new RuntimeException("Stub!");
338
+    }
339
+
340
+    public boolean setDeviceOwner(String com) throws Exception {
341
+        throw new RuntimeException("Stub!");
342
+    }
343
+
344
+    public void removeDeviceOwner(String packageName) throws Exception {
345
+        throw new RuntimeException("Stub!");
346
+    }
347
+
348
+    public void setPackageEnabled(String packageName, boolean enabled) throws Exception {
349
+        throw new RuntimeException("Stub!");
350
+    }
351
+
352
+    public boolean hideUsbMenu(boolean enabled) {
353
+        throw new RuntimeException("Stub!");
354
+    }
355
+
356
+    public boolean enableUsbDebugging(boolean enabled) {
357
+        throw new RuntimeException("Stub!");
358
+    }
359
+
360
+    public void setCurrentUsbMode(int mode) {
361
+        throw new RuntimeException("Stub!");
362
+    }
363
+
364
+    public void setDefaultUsbMode(int mode) {
365
+        throw new RuntimeException("Stub!");
366
+    }
367
+
368
+    public boolean disableWifiDirect(boolean disable) {
369
+        throw new RuntimeException("Stub!");
370
+    }
371
+
372
+    public boolean disableBluetooth(boolean disable) {
373
+        throw new RuntimeException("Stub!");
374
+    }
375
+
376
+    public boolean disableWifi(boolean disable) {
377
+        throw new RuntimeException("Stub!");
378
+    }
379
+
380
+    public boolean enableMassStorage(boolean enabled) {
381
+        throw new RuntimeException("Stub!");
382
+    }
383
+
384
+    public void disableBluetoothShare(boolean disable) {
385
+        throw new RuntimeException("Stub!");
386
+    }
387
+
388
+    public boolean addSSID(String ssid, String password, int type, boolean connect) {
389
+        throw new RuntimeException("Stub!");
390
+    }
391
+
392
+    public boolean setHttpProxy(String host, int port, List<String> bypassList) {
393
+        throw new RuntimeException("Stub!");
394
+    }
395
+
396
+    public boolean setDefaultAPN_v3(String name) {
397
+        throw new RuntimeException("Stub!");
398
+    }
399
+
400
+    public boolean disallowAPN_v3(boolean disallowed) {
401
+        throw new RuntimeException("Stub!");
402
+    }
403
+
404
+    public boolean disallowWIFIAccessPoint_v3(boolean disallowed) {
405
+        throw new RuntimeException("Stub!");
406
+    }
407
+
408
+    public boolean disallowSIMcard_v3(boolean disallowed) {
409
+        throw new RuntimeException("Stub!");
410
+    }
411
+
412
+    public boolean disallowUsbMode_v3(boolean disallowed) {
413
+        throw new RuntimeException("Stub!");
414
+    }
415
+
416
+    public boolean disallowWifiDirect_v3(boolean disallowed) {
417
+        throw new RuntimeException("Stub!");
418
+    }
419
+
420
+    public boolean disallowBluetooth_v3(boolean disallowed) {
421
+        throw new RuntimeException("Stub!");
422
+    }
423
+
424
+    public boolean enableBluetooth_v3(boolean enabled) {
425
+        throw new RuntimeException("Stub!");
426
+    }
427
+
428
+    public boolean disallowWifi_v3(boolean disallowed) {
429
+        throw new RuntimeException("Stub!");
430
+    }
431
+
432
+    public boolean enableWifi_v3(boolean enabled) {
433
+        throw new RuntimeException("Stub!");
434
+    }
435
+
436
+    public boolean disallowWifiadvancesettings_v3(boolean disallowed) {
437
+        throw new RuntimeException("Stub!");
438
+    }
439
+
440
+    public boolean disallowData_v3(boolean disallowed) {
441
+        throw new RuntimeException("Stub!");
442
+    }
443
+
444
+    public boolean enableData_v3(boolean enabled) {
445
+        throw new RuntimeException("Stub!");
446
+    }
447
+
448
+    public boolean disallowBluetoothShare_v3(boolean disallowed) {
449
+        throw new RuntimeException("Stub!");
450
+    }
451
+
452
+    public boolean enableWifiHotspot_v3(boolean enabled) {
453
+        throw new RuntimeException("Stub!");
454
+    }
455
+
456
+    public boolean disallowWifiHotspot_v3(boolean disallowed) {
457
+        throw new RuntimeException("Stub!");
458
+    }
459
+
460
+    public boolean enableUSBtethering_v3(boolean enabled) {
461
+        throw new RuntimeException("Stub!");
462
+    }
463
+
464
+    public boolean disallowedUSBtethering_v3(boolean disallowed) {
465
+        throw new RuntimeException("Stub!");
466
+    }
467
+
468
+    public boolean enableBluetoothtethering_v3(boolean enabled) {
469
+        throw new RuntimeException("Stub!");
470
+    }
471
+
472
+    public boolean disallowedBluetoothtethering_v3(boolean disallowed) {
473
+        throw new RuntimeException("Stub!");
474
+    }
475
+
476
+    public boolean disallowAirplaneMode_v3(boolean disallowed) {
477
+        throw new RuntimeException("Stub!");
478
+    }
479
+
480
+    public boolean enableWIFIcaptive_v3(boolean enabled) {
481
+        throw new RuntimeException("Stub!");
482
+    }
483
+
484
+    public boolean enableLocation_v3(boolean enabled) {
485
+        throw new RuntimeException("Stub!");
486
+    }
487
+
488
+    public boolean disallowLocation_v3(boolean disallowed) {
489
+        throw new RuntimeException("Stub!");
490
+    }
491
+
492
+    public boolean hideBackSoftKey(boolean hide) {
493
+        throw new RuntimeException("Stub!");
494
+    }
495
+
496
+    public boolean hideHomeSoftKey(boolean hide) {
497
+        throw new RuntimeException("Stub!");
498
+    }
499
+
500
+    public boolean hideMenuSoftKey(boolean hide) {
501
+        throw new RuntimeException("Stub!");
502
+    }
503
+
504
+    public void hideNavigationBar(boolean hide) {
505
+        throw new RuntimeException("Stub!");
506
+    }
507
+
508
+    public void fullScreenForever(boolean hide) {
509
+        throw new RuntimeException("Stub!");
510
+    }
511
+
512
+    public void disableStatusBarNotification(boolean disable) {
513
+        throw new RuntimeException("Stub!");
514
+    }
515
+
516
+    public boolean disableLockScreenNotification(boolean disable) {
517
+        throw new RuntimeException("Stub!");
518
+    }
519
+
520
+    public boolean setCustomBootAnim(String uri) {
521
+        throw new RuntimeException("Stub!");
522
+    }
523
+
524
+    public boolean setCustomShutAnim(String uri) {
525
+        throw new RuntimeException("Stub!");
526
+    }
527
+
528
+    public boolean setCustomLogo(String path) {
529
+        throw new RuntimeException("Stub!");
530
+    }
531
+
532
+    public boolean setLauncher(String packageName) {
533
+        throw new RuntimeException("Stub!");
534
+    }
535
+
536
+    public void setCustomLauncher(String packageName, String className) {
537
+        throw new RuntimeException("Stub!");
538
+    }
539
+
540
+    public void activateLicense(String licenseKey) {
541
+        throw new RuntimeException("Stub!");
542
+    }
543
+
544
+    public boolean deactivateLicense(String licenseKey) {
545
+        throw new RuntimeException("Stub!");
546
+    }
547
+
548
+    public boolean aCLK(String lk) {
549
+        throw new RuntimeException("Stub!");
550
+    }
551
+
552
+    public boolean isLicenseKeyEnabled(String pkgName) {
553
+        throw new RuntimeException("Stub!");
554
+    }
555
+
556
+    public void setPersistValue(String name, String value) {
557
+        throw new RuntimeException("Stub!");
558
+    }
559
+
560
+    public void putSettingsValue(int settings_type, int data_type, String key, String value) {
561
+        throw new RuntimeException("Stub!");
562
+    }
563
+
564
+    public void setSysTime(long mils) {
565
+        throw new RuntimeException("Stub!");
566
+    }
567
+
568
+    public void setSysDate(int y, int m, int d) {
569
+        throw new RuntimeException("Stub!");
570
+    }
571
+
572
+    public boolean enableAutoBrightness(boolean enabled) {
573
+        throw new RuntimeException("Stub!");
574
+    }
575
+
576
+    public boolean setBrightness(int value) {
577
+        throw new RuntimeException("Stub!");
578
+    }
579
+
580
+    public boolean setLockPassword(String pwd) {
581
+        throw new RuntimeException("Stub!");
582
+    }
583
+
584
+    public void enableAirplaneMode(boolean on) {
585
+        throw new RuntimeException("Stub!");
586
+    }
587
+
588
+    public void setBootTime(boolean enabled, int hour, int minutes, int daysOfWeek, long switchTime) {
589
+        throw new RuntimeException("Stub!");
590
+    }
591
+
592
+    public void setShutDownTime(boolean enabled, int hour, int minutes, int daysOfWeek, long switchTime) {
593
+        throw new RuntimeException("Stub!");
594
+    }
595
+
596
+    public boolean disableHiddenGame(boolean disable) {
597
+        throw new RuntimeException("Stub!");
598
+    }
599
+
600
+    public boolean setLocationMode(int mode) {
601
+        throw new RuntimeException("Stub!");
602
+    }
603
+
604
+    public void setLockScreenMode(int mode) {
605
+        throw new RuntimeException("Stub!");
606
+    }
607
+
608
+    public boolean setDefaultInputMethod(String inputMethodID) {
609
+        throw new RuntimeException("Stub!");
610
+    }
611
+
612
+    public void disallowSetSysTime_v3(boolean disallow) {
613
+        throw new RuntimeException("Stub!");
614
+    }
615
+
616
+    public void disallowSetSysDate_v3(boolean disallow) {
617
+        throw new RuntimeException("Stub!");
618
+    }
619
+
620
+    public void setTimeZone_v3(String timeZone) {
621
+        throw new RuntimeException("Stub!");
622
+    }
623
+
624
+    public void disallowSetSysTimeZone_v3(boolean disallow) {
625
+        throw new RuntimeException("Stub!");
626
+    }
627
+
628
+    public void setMediaVolumeValue_v3(int value) {
629
+        throw new RuntimeException("Stub!");
630
+    }
631
+
632
+    public void disallowSetMediaVolume_v3(boolean disallow) {
633
+        throw new RuntimeException("Stub!");
634
+    }
635
+
636
+    public void setNotificationVolumeValue_v3(int value) {
637
+        throw new RuntimeException("Stub!");
638
+    }
639
+
640
+    public void disallowSetNotificationVolume_v3(boolean disallow) {
641
+        throw new RuntimeException("Stub!");
642
+    }
643
+
644
+    public void setAlarmVolumeValue_v3(int value) {
645
+        throw new RuntimeException("Stub!");
646
+    }
647
+
648
+    public void disallowSetAlarmVolume_v3(boolean disallow) {
649
+        throw new RuntimeException("Stub!");
650
+    }
651
+
652
+    public void disallowSetBrightness_v3(boolean disallow) {
653
+        throw new RuntimeException("Stub!");
654
+    }
655
+
656
+    public void setSleepTimeout_V3(int value) {
657
+        throw new RuntimeException("Stub!");
658
+    }
659
+
660
+    public void disallowSetSleepTimeout_V3(boolean disallow) {
661
+        throw new RuntimeException("Stub!");
662
+    }
663
+
664
+    public void disallowSetBootTime_V3(boolean disallow) {
665
+        throw new RuntimeException("Stub!");
666
+    }
667
+
668
+    public void disallowSetShutDownTime_V3(boolean disallow) {
669
+        throw new RuntimeException("Stub!");
670
+    }
671
+
672
+    public void disallowAutoDateAndTime_V3(boolean disallow) {
673
+        throw new RuntimeException("Stub!");
674
+    }
675
+
676
+    public boolean disableStatusBarPanel(boolean disable) {
677
+        throw new RuntimeException("Stub!");
678
+    }
679
+
680
+    public boolean hideStatusBar(boolean hide) {
681
+        throw new RuntimeException("Stub!");
682
+    }
683
+
684
+    public boolean requestKeyControl(int keycode) {
685
+        throw new RuntimeException("Stub!");
686
+    }
687
+
688
+    public boolean requestKeyControl_V3(int keycode, boolean enable) {
689
+        throw new RuntimeException("Stub!");
690
+    }
691
+
692
+    public boolean releaseKeyControl() {
693
+        throw new RuntimeException("Stub!");
694
+    }
695
+
696
+    public boolean enableSIM(boolean enable) {
697
+        throw new RuntimeException("Stub!");
698
+    }
699
+
700
+    public boolean enableData(boolean enable) {
701
+        throw new RuntimeException("Stub!");
702
+    }
703
+
704
+    public void disallowLockScreenNotification_v3(boolean disallowed) {
705
+        throw new RuntimeException("Stub!");
706
+    }
707
+
708
+    public void disallowSwitchLauncher_v3(boolean disallowed) {
709
+        throw new RuntimeException("Stub!");
710
+    }
711
+
712
+    public void disallowSetInputMethod_v3(String packageName, boolean disallowed) {
713
+        throw new RuntimeException("Stub!");
714
+    }
715
+
716
+    public boolean disallowDevMode_v3(boolean disallowed) {
717
+        throw new RuntimeException("Stub!");
718
+    }
719
+
720
+    public void enableUnkownsources_v3(String mPackageName, boolean enable) {
721
+        throw new RuntimeException("Stub!");
722
+    }
723
+
724
+    public boolean disallowUsbDebugging_v3(boolean disallowed) {
725
+        throw new RuntimeException("Stub!");
726
+    }
727
+
728
+    public void enableSearch_v3(boolean enable) {
729
+        throw new RuntimeException("Stub!");
730
+    }
731
+
732
+    public boolean disallowLockScreenMode_v3(boolean disallowed) {
733
+        throw new RuntimeException("Stub!");
734
+    }
735
+
736
+    public void enableDevMode_v3(boolean enable) {
737
+        throw new RuntimeException("Stub!");
738
+    }
739
+
740
+    public void enableAllUnkownsources_v3(boolean enable) {
741
+        throw new RuntimeException("Stub!");
742
+    }
743
+
744
+    public boolean SetEnable(boolean allow) {
745
+        throw new RuntimeException("Stub!");
746
+    }
747
+
748
+    public boolean isEnable() {
749
+        throw new RuntimeException("Stub!");
750
+    }
751
+
752
+    public boolean urlWhiteListWrite(List<String> urls) {
753
+        throw new RuntimeException("Stub!");
754
+    }
755
+
756
+    public List<String> urlWhiteListRead() {
757
+        throw new RuntimeException("Stub!");
758
+    }
759
+
760
+    public boolean urlBlackListWrite(List<String> urls) {
761
+        throw new RuntimeException("Stub!");
762
+    }
763
+
764
+    public List<String> urlBlackListRead() {
765
+        throw new RuntimeException("Stub!");
766
+    }
767
+
768
+    public boolean ClearIpHostRules() {
769
+        throw new RuntimeException("Stub!");
770
+    }
771
+
772
+    public boolean AddAppWhiteRule(String pkgName) {
773
+        throw new RuntimeException("Stub!");
774
+    }
775
+
776
+    public boolean AddAppBlackRule(String pkgName) {
777
+        throw new RuntimeException("Stub!");
778
+    }
779
+
780
+    public List<String> getAppWhiteRules() {
781
+        throw new RuntimeException("Stub!");
782
+    }
783
+
784
+    public List<String> getAppBlackRules() {
785
+        throw new RuntimeException("Stub!");
786
+    }
787
+
788
+    public boolean ClearAppRules() {
789
+        throw new RuntimeException("Stub!");
790
+    }
791
+
792
+    public boolean ClearRules() {
793
+        throw new RuntimeException("Stub!");
794
+    }
795
+
796
+    public boolean WriteToFile() {
797
+        throw new RuntimeException("Stub!");
798
+    }
799
+
800
+    public boolean setDefaultBrowser(String packagename) {
801
+        throw new RuntimeException("Stub!");
802
+    }
803
+
804
+    public boolean clearAppData(String packageName) {
805
+        throw new RuntimeException("Stub!");
806
+    }
807
+
808
+    public void addWifiWhiteList(List<String> macs) {
809
+        throw new RuntimeException("Stub!");
810
+    }
811
+
812
+    public void removeWifiWhiteList(List<String> macs) {
813
+        throw new RuntimeException("Stub!");
814
+    }
815
+
816
+    public List<String> getWifiWhiteList() {
817
+        throw new RuntimeException("Stub!");
818
+    }
819
+
820
+    public void setWifiWhiteList(List<String> wifiList) {
821
+        throw new RuntimeException("Stub!");
822
+    }
823
+}

+ 0
- 1
corelib/build.gradle.kts Näytä tiedosto

@@ -43,7 +43,6 @@ dependencies {
43 43
     implementation(libs.core.ktx)
44 44
     implementation(libs.appcompat)
45 45
     implementation(libs.material)
46
-    api(files("libs\\CSDK_XHLY_240412.jar"))
47 46
     testImplementation(libs.junit)
48 47
     androidTestImplementation(libs.androidx.test.ext.junit)
49 48
     androidTestImplementation(libs.espresso.core)

Loading…
Peruuta
Tallenna