65BDL4650D/75BDL4650D/86BDL4650D57or bootanimation WON’T work.4. Apply the custom bootanimationProcedure:(1) Place your custom bootanimztion.zip file into theexternal USB and plug the storage device into Phillips PDplatform.(2) Make sure that the Logo option is enabled.Press the Home key on the RCU: OSD menu >Configuration 2 > Logo > set “on”(3) Press the combination key “Home + 1888” on the RCUto go to Admin mode:Settings > Signage Display > GENERAL SETTINGS > BootLogo(4) The system will search the bootanimation.zip on theexternal USB automatically and copy it to /data/local(5) Once the step 1~4 are complete, restart the system.The new customized boot animation should be displayedduring boot time.6.2.3. How to Install Android app?There are 3 ways to install your own Android App.(a) Via File Manager in Admin Mode1. If you have apk already1.1 Copy your APK to the USB disk, and plug the storagedevice into Philips Android Signage Display.1.2 Go to Admin Mode > Apps > File Manager1.3 Use File Manager to find your APK to be installed.Simply press “OK” on the selected APK.2. Download an APK using the Chromium browser,then go to /Download/ by FileManager.2.1 The next steps are the same as described above.Please note, each model may have different storage path>.(b) Via Adb Shell1. Make sure that your PC can connect to Philips AndroidSignage Display using adb.2. Prepare your apk in a folder (for example, C:\apkfolder)on your PC.3. Execute the following instruction using command linetool.C:\apkfolder> adb install -r apk_name.apk(c) Via Customized Intent1. If you develop an apk that can download any AndroidApp, then your APK can issue a customized intent.2. Giving that the apk name and the path have beenstored., the system will help you to install by program.Description Intent ParametersSw Updatephp.intent.action.UPDATE_APKfilePathThe absolute file pathincluding the file name.Please make sure that thefile access permission is664 at least.keepIndicate that you want tokeep the file or not afterupdating. The defaultvalue is false.packageNameThe target packageyou want to launchautomatically afterupdating.activityNameThe target activityyou want to launchautomatically afterupdating. But if currenttop activity is notactivityName, nothinghappened.isAllowDowngrade"true: update apk nomatter the version oftarget apk is lower thanthe verion of current oneor not.false: stop install if it isdowngrade."For example,Intent intent = new Intent();intent.setAction(“php.intent.action.UPDATE_APK”);intent.putExtra(“filePath”, “/Download/sample.apk”);intent.putExtra(“keep”, true);intent.putExtra(“packageName”, “com.tpv.example”);intent.putExtra(“activityName”, “com.tpv.example.MainActivity”);intent.putExtra(“isAllowDowngrade”, true); // allowdowngradesendBroadcast(intent);