|
@@ -2883,6 +2883,7 @@ public class MainActivity extends WpadActivity {
|
|
|
|
|
|
case define.NOTIFY_DEVICE_INIT_COMPLETION:
|
|
|
Log.i(TAG, "[mWallPadNotifyBR] NOTIFY_DEVICE_INIT_COMPLETION: bLCDKeeperUsage [" + bLCDKeeperUsage +"]");
|
|
|
+ Common.setDeviceServeiceLoadComplite();
|
|
|
if (bLCDKeeperUsage) registerLCDKeeper();
|
|
|
if (getStrangerRecordingManagerSetting() && getStrangerRecordingUserSetting()) {
|
|
|
registerNoticeStrangerRecord();
|
|
@@ -3844,6 +3845,7 @@ public class MainActivity extends WpadActivity {
|
|
|
|
|
|
private void registerBroadcastReceiver() {
|
|
|
try {
|
|
|
+ Log.i(TAG, "[registerBroadcastReceiver] start");
|
|
|
IntentFilter mIntentFilter = new IntentFilter();
|
|
|
mIntentFilter.addAction("WALLPAD_ALERT");
|
|
|
registerReceiver(mWallPadAlertBR, mIntentFilter);
|
|
@@ -3854,10 +3856,11 @@ public class MainActivity extends WpadActivity {
|
|
|
mIntentFilter.addAction(Common.BR_MAIN_NOTI.ACNAME_MAIN_NOTI); // ACC 꺼와 구분되는 Noti 추가
|
|
|
mIntentFilter.addAction(BR_MAIN_LIVE_CHECKER.ACNAME_MAIN_LIVE_CHECKER);
|
|
|
mIntentFilter.addAction(Common.BR_ACK_WALLPADCALL_LIVE);
|
|
|
+ mIntentFilter.addAction(define.NOTIFY_ACNAME);
|
|
|
registerReceiver(mWallPadNotifyBR, mIntentFilter);
|
|
|
|
|
|
registerMainActivityBR();
|
|
|
-
|
|
|
+ Log.i(TAG, "[registerBroadcastReceiver] end");
|
|
|
} catch (RuntimeException re) {
|
|
|
LogUtil.errorLogInfo("", TAG, re);
|
|
|
}
|
|
@@ -11212,7 +11215,7 @@ public class MainActivity extends WpadActivity {
|
|
|
}
|
|
|
|
|
|
String myIP = "NONE";
|
|
|
- int ho = 0;
|
|
|
+ public static int ho = 0;
|
|
|
|
|
|
public void requestMultiControl(Handler handler, int menu, int reason, int position) {
|
|
|
if(position!=ho) {
|