|
@@ -885,9 +885,12 @@ public class MainActivity extends WpadActivity {
|
|
|
Intent intent = new Intent(getApplicationContext(), iMapServer.class);
|
|
Intent intent = new Intent(getApplicationContext(), iMapServer.class);
|
|
|
startService(intent);
|
|
startService(intent);
|
|
|
|
|
|
|
|
- Intent intentMobile = new Intent(getApplicationContext(), MobileProcService.class);
|
|
|
|
|
- Log.w(TAG, "[onCreate] ========== start MobileProcServicee ========== [secondary db]");
|
|
|
|
|
- startService(intentMobile);
|
|
|
|
|
|
|
+ if (Version.getModelType() != MODEL_TYPE.IHN_1010_I_ALT) {
|
|
|
|
|
+ // IHN-1010-I-ALT는 analog 제품(IHN-1000) 대체품이므로 제휴서버 연동 모듈이 필요없음
|
|
|
|
|
+ Intent intentMobile = new Intent(getApplicationContext(), MobileProcService.class);
|
|
|
|
|
+ Log.w(TAG, "[onCreate] ========== start MobileProcServicee ========== [secondary db]");
|
|
|
|
|
+ startService(intentMobile);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
MAINStatus = MAIN_NORMAL;
|
|
MAINStatus = MAIN_NORMAL;
|
|
|
}
|
|
}
|
|
@@ -899,9 +902,12 @@ public class MainActivity extends WpadActivity {
|
|
|
Intent intent = new Intent(this, iMapServer.class);
|
|
Intent intent = new Intent(this, iMapServer.class);
|
|
|
startService(intent);
|
|
startService(intent);
|
|
|
|
|
|
|
|
- Intent intentMobile = new Intent(getApplicationContext(), MobileProcService.class);
|
|
|
|
|
- Log.w(TAG, "[onCreate] ========== start MobileProcServicee ========== [secondary db]");
|
|
|
|
|
- startService(intentMobile);
|
|
|
|
|
|
|
+ if (Version.getModelType() != MODEL_TYPE.IHN_1010_I_ALT) {
|
|
|
|
|
+ // IHN-1010-I-ALT는 analog 제품(IHN-1000) 대체품이므로 제휴서버 연동 모듈이 필요없음
|
|
|
|
|
+ Intent intentMobile = new Intent(getApplicationContext(), MobileProcService.class);
|
|
|
|
|
+ Log.w(TAG, "[onCreate] ========== start MobileProcServicee ========== [secondary db]");
|
|
|
|
|
+ startService(intentMobile);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
MAINStatus = MAIN_NORMAL;
|
|
MAINStatus = MAIN_NORMAL;
|
|
|
}
|
|
}
|
|
@@ -8440,6 +8446,7 @@ public class MainActivity extends WpadActivity {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
IMG_LCD_KEEPER = (ImageView) findViewById(R.id.view_lcdkeeper);
|
|
IMG_LCD_KEEPER = (ImageView) findViewById(R.id.view_lcdkeeper);
|
|
|
|
|
+ IMG_LCD_KEEPER.bringToFront();
|
|
|
IMG_LCD_KEEPER.setVisibility(View.INVISIBLE);
|
|
IMG_LCD_KEEPER.setVisibility(View.INVISIBLE);
|
|
|
Log.i(TAG, "[registerLCDKeeper] ===== END =====");
|
|
Log.i(TAG, "[registerLCDKeeper] ===== END =====");
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|