Browse Source

1.csdkmanager添加x6e6f的方法

20241218TB223FC(测试jar包)
wangwanlei 10 months ago
parent
commit
b65a775a7f
1 changed files with 722 additions and 0 deletions
  1. 722
    0
      app/src/main/java/android/app/csdk/CSDKManager.java

+ 722
- 0
app/src/main/java/android/app/csdk/CSDKManager.java View File

@@ -2,9 +2,14 @@ package android.app.csdk;
2 2
 
3 3
 import android.content.ComponentName;
4 4
 import android.content.Context;
5
+import android.content.Intent;
5 6
 import android.graphics.Bitmap;
6 7
 
8
+import androidx.annotation.NonNull;
9
+import androidx.annotation.Nullable;
10
+
7 11
 import java.util.List;
12
+import java.util.Map;
8 13
 
9 14
 public class CSDKManager {
10 15
     /**
@@ -820,4 +825,721 @@ public class CSDKManager {
820 825
     public void setWifiWhiteList(List<String> wifiList) {
821 826
         throw new RuntimeException("Stub!");
822 827
     }
828
+
829
+    /**
830
+     * 以下为x6e6f的方法
831
+     * */
832
+    public static final int LOCK_TASK_FEATURE_BLOCK_ACTIVITY_START_IN_TASK = 64;
833
+    public static final int LOCK_TASK_FEATURE_GLOBAL_ACTIONS = 16;
834
+    public static final int LOCK_TASK_FEATURE_HOME = 4;
835
+    public static final int LOCK_TASK_FEATURE_KEYGUARD = 32;
836
+    public static final int LOCK_TASK_FEATURE_NONE = 0;
837
+    public static final int LOCK_TASK_FEATURE_NOTIFICATIONS = 2;
838
+    public static final int LOCK_TASK_FEATURE_OVERVIEW = 8;
839
+    public static final int LOCK_TASK_FEATURE_SYSTEM_INFO = 1;
840
+
841
+    public boolean isCustomOtg() {
842
+        throw new RuntimeException("Stub!");
843
+    }
844
+
845
+    public void setCustomFastBoot(boolean enable) {
846
+        throw new RuntimeException("Stub!");
847
+    }
848
+
849
+    public boolean isCustomFastBoot() {
850
+        throw new RuntimeException("Stub!");
851
+    }
852
+
853
+    public void setCustomRecoveryV3(boolean enable) {
854
+        throw new RuntimeException("Stub!");
855
+    }
856
+
857
+    public boolean isCustomRecoveryV3() {
858
+        throw new RuntimeException("Stub!");
859
+    }
860
+
861
+    public void setCustomSdUpdate(boolean enable) {
862
+        throw new RuntimeException("Stub!");
863
+    }
864
+
865
+    public boolean isCustomSdUpdate() {
866
+        throw new RuntimeException("Stub!");
867
+    }
868
+
869
+    public void setCustomHardRst(boolean enable) {
870
+        throw new RuntimeException("Stub!");
871
+    }
872
+
873
+    public boolean isCustomHardRst() {
874
+        throw new RuntimeException("Stub!");
875
+    }
876
+
877
+    public void setCustomCharge(boolean enable) {
878
+        throw new RuntimeException("Stub!");
879
+    }
880
+
881
+    public boolean isCustomCharge() {
882
+        throw new RuntimeException("Stub!");
883
+    }
884
+
885
+    public void setCustomBootLogo(boolean enable) {
886
+        throw new RuntimeException("Stub!");
887
+    }
888
+
889
+    public boolean getCustomBootLogo() {
890
+        throw new RuntimeException("Stub!");
891
+    }
892
+
893
+    public void enableCaptureScreenV3(boolean enabled) {
894
+        throw new RuntimeException("Stub!");
895
+    }
896
+
897
+    public void disallowFactoryResetV3(boolean disallowed) {
898
+        throw new RuntimeException("Stub!");
899
+    }
900
+    public boolean isFactoryResetDisabled() {
901
+        throw new RuntimeException("Stub!");
902
+    }
903
+
904
+    public void disallowMultiUserV3(boolean disallowed) {
905
+        throw new RuntimeException("Stub!");
906
+    }
907
+
908
+
909
+    public void disableVibrator(boolean disable) {
910
+        throw new RuntimeException("Stub!");
911
+    }
912
+
913
+    public void disableWifiDisplay(boolean disable) {
914
+        throw new RuntimeException("Stub!");
915
+    }
916
+
917
+    public void disableOemUnLock(boolean disable) {
918
+        throw new RuntimeException("Stub!");
919
+    }
920
+
921
+    public void disallowOemUnLock(boolean disallow) {
922
+        throw new RuntimeException("Stub!");
923
+    }
924
+
925
+    public void setDisplayBlacklistV3(@Nullable List<String> packageNames) {
926
+        throw new RuntimeException("Stub!");
927
+    }
928
+
929
+    @Nullable
930
+    public List<String> getDisplayBlacklistV3() {
931
+        throw new RuntimeException("Stub!");
932
+    }
933
+
934
+    public void removeDisplayBlacklistV3(@Nullable List<String> packageNames) {
935
+        throw new RuntimeException("Stub!");
936
+    }
937
+
938
+    public void addAppManageWhiteListV3(@Nullable List<String> packageNames) {
939
+        throw new RuntimeException("Stub!");
940
+    }
941
+
942
+    @Nullable
943
+    public List<String> getAppManageWhiteListV3() {
944
+        throw new RuntimeException("Stub!");
945
+    }
946
+
947
+    public void removeAppManageWhiteListV3(@Nullable List<String> packageNames) {
948
+        throw new RuntimeException("Stub!");
949
+    }
950
+    public void addAppManageBlackListV3(@Nullable List<String> packageNames) {
951
+        throw new RuntimeException("Stub!");
952
+    }
953
+
954
+    @Nullable
955
+    public List<String> getAppManageBlackListV3() {
956
+        throw new RuntimeException("Stub!");
957
+    }
958
+
959
+
960
+    public void removeAppManageBlackListV3(@Nullable List<String> packageNames) {
961
+        throw new RuntimeException("Stub!");
962
+    }
963
+
964
+    public void disallowDozeSetting(@Nullable boolean disallowed) {
965
+        throw new RuntimeException("Stub!");
966
+    }
967
+
968
+    public void addDozeSettingWhiteList(@Nullable List<String> packageNames) {
969
+        throw new RuntimeException("Stub!");
970
+    }
971
+
972
+    @Nullable
973
+    public List<String> getDozeSettingWhiteList() {
974
+        throw new RuntimeException("Stub!");
975
+    }
976
+
977
+    public void removeDozeSettingWhiteList(@Nullable List<String> packageNames) {
978
+        throw new RuntimeException("Stub!");
979
+    }
980
+
981
+    public void disallowMultiWindow(@Nullable boolean disallowed) {
982
+        throw new RuntimeException("Stub!");
983
+    }
984
+
985
+    public void disableApplicationManageV3(boolean enable) {
986
+        throw new RuntimeException("Stub!");
987
+    }
988
+
989
+    public void addNotificationWhiteList(@Nullable List<String> packageNames) {
990
+        throw new RuntimeException("Stub!");
991
+    }
992
+
993
+    @Nullable
994
+    public List<String> getNotificationWhiteList() {
995
+        throw new RuntimeException("Stub!");
996
+    }
997
+
998
+    public void removeNotificationWhiteList(@Nullable List<String> packageNames) {
999
+        throw new RuntimeException("Stub!");
1000
+    }
1001
+
1002
+    public boolean addSsid(@Nullable String ssid, @Nullable String password, int type, boolean connect) {
1003
+        throw new RuntimeException("Stub!");
1004
+    }
1005
+
1006
+
1007
+
1008
+    public boolean setDefaultApnV3(@Nullable String name) {
1009
+        throw new RuntimeException("Stub!");
1010
+    }
1011
+
1012
+
1013
+
1014
+    public boolean disallowApnV3(boolean disallowed) {
1015
+        throw new RuntimeException("Stub!");
1016
+    }
1017
+
1018
+
1019
+
1020
+    public boolean disallowWifiAccessPointV3(boolean disallowed) {
1021
+        throw new RuntimeException("Stub!");
1022
+    }
1023
+
1024
+
1025
+
1026
+    public boolean disallowSimcardV3(boolean disallowed) {
1027
+        throw new RuntimeException("Stub!");
1028
+    }
1029
+
1030
+
1031
+
1032
+    public boolean disallowUsbModeV3(boolean disallowed) {
1033
+        throw new RuntimeException("Stub!");
1034
+    }
1035
+
1036
+
1037
+
1038
+    public boolean disallowWifiDirectV3(boolean disallowed) {
1039
+        throw new RuntimeException("Stub!");
1040
+    }
1041
+
1042
+
1043
+
1044
+    public boolean disallowBluetoothV3(boolean disallowed) {
1045
+        throw new RuntimeException("Stub!");
1046
+    }
1047
+
1048
+
1049
+
1050
+    public boolean enableBluetoothV3(boolean enabled) {
1051
+        throw new RuntimeException("Stub!");
1052
+    }
1053
+
1054
+
1055
+
1056
+    public boolean disallowWifiV3(boolean disallowed) {
1057
+        throw new RuntimeException("Stub!");
1058
+    }
1059
+
1060
+
1061
+
1062
+    public boolean enableWifiV3(boolean enabled) {
1063
+        throw new RuntimeException("Stub!");
1064
+    }
1065
+
1066
+
1067
+
1068
+    public boolean disallowWifiAdvanceSettingsV3(boolean disallowed) {
1069
+        throw new RuntimeException("Stub!");
1070
+    }
1071
+
1072
+
1073
+
1074
+    public boolean disallowDataV3(boolean disallowed) {
1075
+        throw new RuntimeException("Stub!");
1076
+    }
1077
+
1078
+
1079
+
1080
+    public boolean enableDataV3(boolean enabled) {
1081
+        throw new RuntimeException("Stub!");
1082
+    }
1083
+
1084
+
1085
+
1086
+    public boolean disallowBluetoothShareV3(boolean disallowed) {
1087
+        throw new RuntimeException("Stub!");
1088
+    }
1089
+
1090
+
1091
+
1092
+    public boolean enableWifiHotspotV3(boolean enabled) {
1093
+        throw new RuntimeException("Stub!");
1094
+    }
1095
+
1096
+
1097
+
1098
+    public boolean disallowWifiHotspotV3(boolean disallowed) {
1099
+        throw new RuntimeException("Stub!");
1100
+    }
1101
+
1102
+
1103
+
1104
+    public boolean enableUsbTetheringV3(boolean enabled) {
1105
+        throw new RuntimeException("Stub!");
1106
+    }
1107
+
1108
+
1109
+    public boolean disallowUsbTetheringV3(boolean disallowed) {
1110
+        throw new RuntimeException("Stub!");
1111
+    }
1112
+
1113
+
1114
+
1115
+    public boolean enableBluetoothTetheringV3(boolean enabled) {
1116
+        throw new RuntimeException("Stub!");
1117
+    }
1118
+
1119
+
1120
+
1121
+    public boolean disallowBluetoothTetheringV3(boolean disallowed) {
1122
+        throw new RuntimeException("Stub!");
1123
+    }
1124
+
1125
+
1126
+
1127
+    public boolean disallowAirplaneModeV3(boolean disallowed) {
1128
+        throw new RuntimeException("Stub!");
1129
+    }
1130
+
1131
+
1132
+
1133
+    public boolean enableWifiCaptiveV3(boolean enabled) {
1134
+        throw new RuntimeException("Stub!");
1135
+    }
1136
+
1137
+
1138
+
1139
+    public boolean enableLocationV3(boolean enabled) {
1140
+        throw new RuntimeException("Stub!");
1141
+    }
1142
+
1143
+
1144
+
1145
+    public boolean disallowLocationV3(boolean disallowed) {
1146
+        throw new RuntimeException("Stub!");
1147
+    }
1148
+
1149
+
1150
+
1151
+    @Nullable
1152
+    public Map<String, String> getSimContacts() {
1153
+        throw new RuntimeException("Stub!");
1154
+    }
1155
+
1156
+    public boolean removeSsid(@NonNull String ssid) {
1157
+        throw new RuntimeException("Stub!");
1158
+    }
1159
+
1160
+    public boolean activeSsid(@NonNull String ssid) {
1161
+        throw new RuntimeException("Stub!");
1162
+    }
1163
+
1164
+    public void enableWifiBlackList(boolean enable) {
1165
+        throw new RuntimeException("Stub!");
1166
+    }
1167
+
1168
+    public void addWifiBlackList(@NonNull List<String> macs) {
1169
+        throw new RuntimeException("Stub!");
1170
+    }
1171
+
1172
+    public void removeWifiBlackList(@NonNull List<String> macs) {
1173
+        throw new RuntimeException("Stub!");
1174
+    }
1175
+
1176
+    @Nullable
1177
+    public List<String> getWifiBlackList() {
1178
+        throw new RuntimeException("Stub!");
1179
+    }
1180
+
1181
+    public void enableWifiWhiteList(boolean enable) {
1182
+        throw new RuntimeException("Stub!");
1183
+    }
1184
+
1185
+    public boolean disallowStatusBarNotification(boolean disallow) {
1186
+        throw new RuntimeException("Stub!");
1187
+    }
1188
+
1189
+    public void setLockTaskPackages(@NonNull String[] packages) {
1190
+        throw new RuntimeException("Stub!");
1191
+    }
1192
+
1193
+    @NonNull
1194
+    public String[] getLockTaskPackages() {
1195
+        throw new RuntimeException("Stub!");
1196
+    }
1197
+
1198
+    public void setLockTaskFeatures(int flags) {
1199
+        throw new RuntimeException("Stub!");
1200
+    }
1201
+
1202
+    public int getLockTaskFeatures() {
1203
+        throw new RuntimeException("Stub!");
1204
+    }
1205
+
1206
+
1207
+
1208
+    public void hideResolverAlwaysButton(boolean disable) {
1209
+        throw new RuntimeException("Stub!");
1210
+    }
1211
+
1212
+
1213
+
1214
+    public void clearDefaultBrowser() {
1215
+        throw new RuntimeException("Stub!");
1216
+    }
1217
+
1218
+    public void disallowBrowserReset(boolean disallow) {
1219
+        throw new RuntimeException("Stub!");
1220
+    }
1221
+
1222
+    public void setDefaultAssistant(@NonNull String packageName) {
1223
+        throw new RuntimeException("Stub!");
1224
+    }
1225
+
1226
+    public void clearDefaultAssistant() {
1227
+        throw new RuntimeException("Stub!");
1228
+    }
1229
+
1230
+    public void setDefaultDialer(@NonNull String packageName) {
1231
+        throw new RuntimeException("Stub!");
1232
+    }
1233
+
1234
+    public void clearDefaultDialer() {
1235
+        throw new RuntimeException("Stub!");
1236
+    }
1237
+
1238
+    public void disallowDialerReset(boolean disallow) {
1239
+        throw new RuntimeException("Stub!");
1240
+    }
1241
+
1242
+    public void disallowAssistantReset(boolean disallow) {
1243
+        throw new RuntimeException("Stub!");
1244
+    }
1245
+
1246
+    public void setDefaultSms(@NonNull String packageName) {
1247
+        throw new RuntimeException("Stub!");
1248
+    }
1249
+
1250
+    public void clearDefaultSms() {
1251
+        throw new RuntimeException("Stub!");
1252
+    }
1253
+
1254
+    public void disallowSmsReset(boolean disallow) {
1255
+        throw new RuntimeException("Stub!");
1256
+    }
1257
+
1258
+    public void setDefaultIntent(@NonNull Intent intent, @NonNull String packageName) {
1259
+        throw new RuntimeException("Stub!");
1260
+    }
1261
+
1262
+    public void clearDefaultIntent(@NonNull Intent intent) {
1263
+        throw new RuntimeException("Stub!");
1264
+    }
1265
+
1266
+    public void clearDefault(@NonNull String packageName) {
1267
+        throw new RuntimeException("Stub!");
1268
+    }
1269
+
1270
+    public void setDefaultVideoPlayer(@NonNull String packageName) {
1271
+        throw new RuntimeException("Stub!");
1272
+    }
1273
+
1274
+
1275
+
1276
+    public void disallowSetSysTimeV3(boolean disallow) {
1277
+        throw new RuntimeException("Stub!");
1278
+    }
1279
+
1280
+    public void disallowSetSysDateV3(boolean disallow) {
1281
+        throw new RuntimeException("Stub!");
1282
+    }
1283
+
1284
+
1285
+
1286
+    public void setTimeZoneV3(@NonNull String timeZone) {
1287
+        throw new RuntimeException("Stub!");
1288
+    }
1289
+
1290
+
1291
+
1292
+    public void disallowSetSysTimeZoneV3(boolean disallow) {
1293
+        throw new RuntimeException("Stub!");
1294
+    }
1295
+
1296
+
1297
+
1298
+    public void setMediaVolumeValueV3(int value) {
1299
+        throw new RuntimeException("Stub!");
1300
+    }
1301
+
1302
+
1303
+
1304
+    public void disallowSetMediaVolumeV3(boolean disallow) {
1305
+        throw new RuntimeException("Stub!");
1306
+    }
1307
+
1308
+
1309
+
1310
+    public void setNotificationVolumeValueV3(int value) {
1311
+        throw new RuntimeException("Stub!");
1312
+    }
1313
+
1314
+
1315
+
1316
+    public void disallowSetNotificationVolumV3(boolean disallow) {
1317
+        throw new RuntimeException("Stub!");
1318
+    }
1319
+
1320
+
1321
+
1322
+    public void setAlarmVolumeValueV3(int value) {
1323
+        throw new RuntimeException("Stub!");
1324
+    }
1325
+
1326
+
1327
+
1328
+    public void disallowSetAlarmVolumeV3(boolean disallow) {
1329
+        throw new RuntimeException("Stub!");
1330
+    }
1331
+
1332
+
1333
+
1334
+    public void disallowSetBrightnessV3(boolean disallow) {
1335
+        throw new RuntimeException("Stub!");
1336
+    }
1337
+
1338
+
1339
+
1340
+    public void setSleepTimeoutV3(int value) {
1341
+        throw new RuntimeException("Stub!");
1342
+    }
1343
+
1344
+
1345
+
1346
+    public void disallowSetSleepTimeoutV3(boolean disallow) {
1347
+        throw new RuntimeException("Stub!");
1348
+    }
1349
+
1350
+    public boolean isdisallowSetSleepTimeout_V3() {
1351
+        throw new RuntimeException("Stub!");
1352
+    }
1353
+
1354
+
1355
+
1356
+    public void disallowSetBootTimeV3(boolean disallow) {
1357
+        throw new RuntimeException("Stub!");
1358
+    }
1359
+
1360
+
1361
+
1362
+    public void disallowSetShutDownTimeV3(boolean disallow) {
1363
+        throw new RuntimeException("Stub!");
1364
+    }
1365
+
1366
+
1367
+
1368
+    public void disallowAutoDateAndTimeV3(boolean disallow) {
1369
+        throw new RuntimeException("Stub!");
1370
+    }
1371
+
1372
+
1373
+
1374
+
1375
+
1376
+
1377
+
1378
+    public boolean enableSim(boolean enable) {
1379
+        throw new RuntimeException("Stub!");
1380
+    }
1381
+
1382
+
1383
+
1384
+
1385
+    public void disallowLockScreenNotificationV3(boolean disallowed) {
1386
+        throw new RuntimeException("Stub!");
1387
+    }
1388
+
1389
+
1390
+
1391
+    public void disallowSwitchLauncherV3(boolean disallowed) {
1392
+        throw new RuntimeException("Stub!");
1393
+    }
1394
+
1395
+
1396
+
1397
+    public void disallowSetInputMethodV3(@Nullable String packageName, boolean disallowed) {
1398
+        throw new RuntimeException("Stub!");
1399
+    }
1400
+
1401
+
1402
+
1403
+
1404
+
1405
+    public boolean disallowDevModeV3(boolean disallowed) {
1406
+        throw new RuntimeException("Stub!");
1407
+    }
1408
+
1409
+
1410
+
1411
+    public void enableUnkownsourcesV3(@Nullable String mPackageName, boolean enable) {
1412
+        throw new RuntimeException("Stub!");
1413
+    }
1414
+
1415
+
1416
+
1417
+    public boolean disallowUsbDebuggingV3(boolean disallowed) {
1418
+        throw new RuntimeException("Stub!");
1419
+    }
1420
+
1421
+
1422
+
1423
+    public void enableSearchV3(boolean enable) {
1424
+        throw new RuntimeException("Stub!");
1425
+    }
1426
+
1427
+    public void enableVPN_v3(boolean enable) {
1428
+        throw new RuntimeException("Stub!");
1429
+    }
1430
+
1431
+
1432
+
1433
+    public boolean disallowLockScreenModeV3(boolean disallowed) {
1434
+        throw new RuntimeException("Stub!");
1435
+    }
1436
+
1437
+
1438
+
1439
+    public void enableDevModeV3(boolean enable) {
1440
+        throw new RuntimeException("Stub!");
1441
+    }
1442
+
1443
+
1444
+
1445
+    public void enableAllUnkownsourcesV3(boolean enable) {
1446
+        throw new RuntimeException("Stub!");
1447
+    }
1448
+
1449
+    public void enableOverlayWindow(@Nullable String mPackageName, boolean enable) {
1450
+        throw new RuntimeException("Stub!");
1451
+    }
1452
+
1453
+    public void enablePictureInPicture(@Nullable String mPackageName, boolean enable) {
1454
+        throw new RuntimeException("Stub!");
1455
+    }
1456
+
1457
+    public void enableWriteSettings(@Nullable String mPackageName, boolean enable) {
1458
+        throw new RuntimeException("Stub!");
1459
+    }
1460
+
1461
+    public void enableUsageStats(@Nullable String mPackageName, boolean enable) {
1462
+        throw new RuntimeException("Stub!");
1463
+    }
1464
+
1465
+    public void enableWifiState(@Nullable String mPackageName, boolean enable) {
1466
+        throw new RuntimeException("Stub!");
1467
+    }
1468
+
1469
+    public void enableNotification(@Nullable String mPackageName, @Nullable String mPackageClass, boolean enable) {
1470
+        throw new RuntimeException("Stub!");
1471
+    }
1472
+
1473
+    public void enableNotDisturb(@Nullable String mPackageName, boolean enable) {
1474
+        throw new RuntimeException("Stub!");
1475
+    }
1476
+
1477
+    public void enableDeviceAdmin(@Nullable String mPackageClass, boolean enable) {
1478
+        throw new RuntimeException("Stub!");
1479
+    }
1480
+
1481
+    public void enableUsbHostPermission(boolean enable) {
1482
+        throw new RuntimeException("Stub!");
1483
+    }
1484
+
1485
+    public void enableAccessibility(@Nullable String mPackageName, @Nullable String mPackageClass, boolean enable) {
1486
+        throw new RuntimeException("Stub!");
1487
+    }
1488
+
1489
+    public void disallowApplicationPermissionsPage(boolean disallowed) {
1490
+        throw new RuntimeException("Stub!");
1491
+    }
1492
+
1493
+    public void disallowSpecialAccessPermissionsPage(boolean disallowed) {
1494
+        throw new RuntimeException("Stub!");
1495
+    }
1496
+
1497
+    public boolean isCustomized(int from) {
1498
+        throw new RuntimeException("Stub!");
1499
+    }
1500
+
1501
+
1502
+    public void addAlicePackageWhiteList(List<String> packageNames) {
1503
+        throw new RuntimeException("Stub!");
1504
+    }
1505
+
1506
+    public List<String> getAlicePackageWhiteList() {
1507
+        throw new RuntimeException("Stub!");
1508
+    }
1509
+
1510
+    public void removeAlicePackageWhiteList(List<String> packageNames) {
1511
+        throw new RuntimeException("Stub!");
1512
+    }
1513
+
1514
+    public void addSettingsUIMenuNames(List<String> packageNames) {
1515
+        throw new RuntimeException("Stub!");
1516
+    }
1517
+
1518
+    public List<String> getSettingsUIMenuNames() {
1519
+        throw new RuntimeException("Stub!");
1520
+    }
1521
+
1522
+    public void removeSettingsUIMenuNames(List<String> packageNames) {
1523
+        throw new RuntimeException("Stub!");
1524
+    }
1525
+
1526
+    public void disallowClipboard(@Nullable boolean disallowed) {
1527
+        throw new RuntimeException("Stub!");
1528
+    }
1529
+
1530
+    public void disabledSystemUpdate(@Nullable boolean disallowed) {
1531
+        throw new RuntimeException("Stub!");
1532
+    }
1533
+
1534
+    public void disableChangeWallpaper(@Nullable boolean disallowed) {
1535
+        throw new RuntimeException("Stub!");
1536
+    }
1537
+
1538
+    public void disallowBluetoothDataTransfer(@Nullable boolean disallowed) {
1539
+        throw new RuntimeException("Stub!");
1540
+    }
1541
+
1542
+    public void disabledFileShare(@Nullable boolean disallowed) {
1543
+        throw new RuntimeException("Stub!");
1544
+    }
823 1545
 }

Loading…
Cancel
Save