Elvis Stansvik
Elvis Stansvik
I would paste the whole debug log, but it seems it's impossible to copy/paste from the debug log window? (It seems to be a list widget instead of e.g. a...
Ah, of course, a screenshot. Didn't think of that. Here it is:  It looks like it is finding the touch device, right? (This time I see those two keyboard...
Some more info: The phone is running Android 5.1.1 Lollipop, and I'm using client version 2.3.3.
[Here](https://paste.kde.org/pwh3tawat) is the output from `Linux/prebuilt/adb logcat` when I 1. Started the client. 2. Clicked "Start USB Service". 3. Clicked "Connect via USB". 4. Let it run for around 5...
The `logcat` output when not running the client, and doing just: ``` [estan@pyret android-sdk-linux]$ telnet 127.0.0.1 9876 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. Connection closed by foreign...
I made an interesting find. I tried starting the USB service interactively from an adb shell, and got this: ``` shell@D5803:/ $ /data/local/tmp/bbqscreen -s 50 -720 -q 4500 -i CANNOT...
I also realized I have to run `BBQScreenClient2` with the `Linux` directory as the current working directory, otherwise the `adb` command is not found since the relative path `prebuilt/adb` is...
The missing symbol seems to be part of `libmedia.so`, which is not part of the public API of NDK. So perhaps it is wrong of `bbqscreen` to link against this?...
A last update, which I think should help you fix this: Using `nm` from the Android NDK on the various `libmedia*.so` files I have in `/system/lib`, I found that on...
Sorry. I misread the output from `nm`. The 'U' means it's undefined, so `libmediaplayerservice.so` is just a user of that symbol not the provider. But I finally found which library...