1

I came across an issue is I noticed not all website link can be shown on the Pepper Tablet, is that right? for example, I want to show this link: "https://rt-webchatapp-v5.netlify.app/" which I developed for users to register, but on the tablet, it is always white screen. Can anyone explain it? how can I show above link on Pepper Tablet?

Thanks in advance.

this website is I developed for my research, I have been used for at least 6 months, I am hopeing I can use on Pepper robot directly.

Na Li
  • 27
  • 6
  • 1
    Can you show your piece of code(WebView part)? – androider Nov 18 '21 at 09:27
  • @androider The web application I used Reactjs + nodejs – Na Li Nov 18 '21 at 10:04
  • 1
    I can confirm this behavior (independent on the question author, just run `qicli call ALTabletService.showWebview "https://rt-webchatapp-v5.netlify.app/" `). However, I assume, this is not Pepper related, but influenced by the old Android on the Pepper's tablet. – Ales Horak Nov 19 '21 at 13:34
  • 1
    The webview there is pretty old and might not support something from your page, but I'm not sure how to collect the error. Can you find `adb` on the robot? If yes try running `adb logcat` to collect all the logs, and try again and look for errors. – Victor Paléologue Nov 26 '21 at 14:00
  • 2
    It could be due to pepper running an old browser version, for example the browser of the pepper im working with uses javascript 1.7. If the webpage you want to display uses any new javascript features, pepper won't be able to display it. – J7bits Dec 04 '21 at 14:21
  • I think so, thank you everyone to answer my question. – Na Li Dec 08 '21 at 12:35

1 Answers1

0

The webview on Pepper's tablet is old. It uses Javascript 1.7 and might not support newest javascript features.

Victor Paléologue
  • 2,025
  • 1
  • 17
  • 27