去掉butterknife

This commit is contained in:
2024-08-26 10:37:52 +08:00
parent 6068bd4bb3
commit 84e3fa87fa
63 changed files with 933 additions and 1159 deletions

View File

@@ -32,7 +32,7 @@ import java.util.List;
public class SysSettingUtils {
private static final String TAG = SysSettingUtils.class.getSimpleName();
private static final String TAG = "SysSettingUtils";
public SysSettingUtils() {
@@ -390,9 +390,12 @@ public class SysSettingUtils {
}
int old_setting_bht = Settings.System.getInt(context.getContentResolver(), CommonConfig.AOLE_ACTION_BHT_FORBID_ON, 1);
int old_setting_bluetooth = Settings.System.getInt(context.getContentResolver(), CommonConfig.AOLE_ACTION_BT_FORBID_ON, 1);
int old_setting_bhtvideo = mmkv.decodeInt(CommonConfig.AOLE_ACTION_BHTVIDEO_FORBID_ON, 1);
int old_setting_bht = Settings.System.getInt(context.getContentResolver(), CommonConfig.AOLE_ACTION_BHT_FORBID_ON, 0);
Log.e(TAG, "setBluetooth: old_setting_bht = " + old_setting_bht);
int old_setting_bluetooth = Settings.System.getInt(context.getContentResolver(), CommonConfig.AOLE_ACTION_BT_FORBID_ON, 0);
Log.e(TAG, "setBluetooth: old_setting_bluetooth = " + old_setting_bluetooth);
int old_setting_bhtvideo = mmkv.decodeInt(CommonConfig.AOLE_ACTION_BHTVIDEO_FORBID_ON, 0);
Log.e(TAG, "setBluetooth: old_setting_bhtvideo = " + old_setting_bhtvideo);
if (old_setting_bht != setting_bht) {