Describe the bug
the ring function isn't working
Steps To Reproduce:
· Click on "Ring" on the menu
OR
· select your device from the window, open the overflow menu, click on "Ring" there too
Expected behavior
the phone shows the FOUND screen and rings
Support Log
-- Logs begin at Tue 2019-10-22 14:12:26 CDT, end at Sat 2019-11-02 23:53:09 CST. --
nov 02 23:53:08 org.clementine_player.clementine.desktop[2098]: 23:53:08.579 DEBUG MainWindow:1544 position: 30 , scrobble point: 122 , lastfm status: 0 , play count point: 122 , is local library item: true , playlist have incremented playcount: false
nov 02 23:53:09 org.gnome.Shell.Extensions.GSConnect[43653]: [/service/protocol/core.js:send:321]: Enchilada: {
"id": 1572760389218,
"type": "kdeconnect.findmyphone.request",
"body": {}
}
System Details (please complete the following information):
Hmm, not sure what to say here. It looks like GSConnect is doing everything correctly and this is the simplest plugin there is.
I guess the easiest thing to start with is double checking that the plugin is enabled on your phone (probably it is), and try force stopping the app and reopening it.
If that doesn't work, we'll have to try using adb to see if something is going wrong in the app.
@andyholmes I am also having problems with this. Made sure the plugin is enabled on both devices. Perhaps it is an android 10 issue. Both the ring and photo options work when you are in the kdeconnect app on your phone. However, they don't work if you exit out of the app on your phone and try to use those features from your pc. Maybe another change by Google?
Mm, it's quite conceivable that Android locked the permissions down so they apply only to foreground processes.
Any "find my phone" type app I've ever had always had to be configured as a Device Administrator (in the Security settings) in order to perform its function, which is something I notice KDE Connect doesn't ask for (at least on Android 7). The only permission it requests in the 'security' category is the ability to read text messages.
...Actually, looking at the full KDE Connect permissions list on my phone, I can't figure out how it's actually able to activate the ringer _at all_. It only requests two Phone permissions:
While it does also ask for "control vibration", that's the ONLY permission it requests that would seem to involve any sort of noise-making ability at all.
So, maybe Android 10 just finally started _requiring_ some sort of permission for apps (or at least background apps) that want to be able to activate the ringer. And AFAICT... KDE Connect may not have it?
Probably worth bringing up with the KDE Connect developers at https://bugs.kde.org/enter_bug.cgi?product=kdeconnect if it hasn't already been reported. (Even better if someone were able to confirm whether or not the same issues occur when using the official Linux kdeconnect.)
Just wanted to post that their is a current bug report on this issue and here is the link if anyone else wants to chime in.
https://bugs.kde.org/show_bug.cgi?id=368438
I don't think there are any extra permissions required for this, because KDE Connect doesn't actually "ring" the phone, it just uses an intent to open a window and android.media.MediaPlayer to play the default ringer sound:
@Override
public boolean onPacketReceived(NetworkPacket np) {
Intent intent = new Intent(context, FindMyPhoneActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
return true;
}
mediaPlayer = new MediaPlayer();
mediaPlayer.setDataSource(this, ringtone);
mediaPlayer.setAudioStreamType(AudioManager.STREAM_ALARM);
mediaPlayer.setLooping(true);
mediaPlayer.prepare();
mediaPlayer.start();
It would probably help if someone experiencing this problem can debug the Android app, while activating the feature:
$ adb logcat --pid=$(adb shell pidof -s org.kde.kdeconnect_tp)
@andyholmes I'll try debugging it later today when I get some time.
I don't think there are any extra permissions required for this, because KDE Connect doesn't actually "ring" the phone, it just uses an intent to open a window and
android.media.MediaPlayerto play the default ringer sound:
Huh! Sneaky. And clever. ...Still, that makes it auto-playing media being launched from a background task. Kind of feels like there _should_ be some sort of permission required, to me.
@andyholmes Finally got around to doing a quick debug.
Things to note: ring worked exactly once without kde connect open in the foreground. It did not however work after that. Photo also does not launch the camera without kdeconnect being in the foreground as well. Output logcat for the kdeconnect app is as follows:
--------- beginning of main
11-13 20:09:29.524 4605 10559 I KDE/LanLinkProvider: Broadcast identity package received from reki
11-13 20:09:29.531 4605 10559 I KDE/LanLinkProvider: Starting SSL handshake with reki trusted:true
11-13 20:09:29.697 4605 3665 I KDE/LanLinkProvider: Handshake as server successful with reki secured with TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
11-13 20:09:29.697 4605 3665 I KDE/LanLinkProvider: Creating a new link for device 6dca56ff-7eda-47a6-9dbd-7b6be9ef3eb1
11-13 20:09:29.698 4605 3665 I KDE/BackgroundService: addLink, known device: 6dca56ff-7eda-47a6-9dbd-7b6be9ef3eb1
11-13 20:09:29.702 4605 3665 I KDE/Device: Got certificate
11-13 20:09:29.702 4605 3665 I KDE/Device: addLink LanLinkProvider -> reki active links: 1
11-13 20:09:29.704 4605 3666 I KDE/addPlugin: Permissions OK SftpPlugin
11-13 20:09:29.708 4605 3666 I KDE/addPlugin: Optional Permissions OK SftpPlugin
11-13 20:09:29.708 4605 3665 I KDE/addPlugin: Optional Permissions OK SftpPlugin
11-13 20:09:29.743 4605 3666 I KDE/addPlugin: Permissions OK MprisReceiverPlugin
11-13 20:09:29.743 4605 3666 I KDE/addPlugin: Optional Permissions OK MprisReceiverPlugin
11-13 20:09:29.745 4605 3666 I KDE/addPlugin: Permissions OK BatteryPlugin
11-13 20:09:29.745 4605 3666 I KDE/addPlugin: Optional Permissions OK BatteryPlugin
11-13 20:09:29.745 4605 3665 I KDE/addPlugin: Optional Permissions OK MprisReceiverPlugin
11-13 20:09:29.745 4605 3665 I KDE/addPlugin: Optional Permissions OK BatteryPlugin
11-13 20:09:29.745 4605 3666 I KDE/addPlugin: Permissions OK SharePlugin
11-13 20:09:29.746 4605 3666 I KDE/addPlugin: Optional Permissions OK SharePlugin
11-13 20:09:29.746 4605 3665 I KDE/addPlugin: Optional Permissions OK SharePlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Permissions OK NotificationsPlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Optional Permissions OK NotificationsPlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Permissions OK PhotoPlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Optional Permissions OK PhotoPlugin
11-13 20:09:29.760 4605 3666 I KDE/addPlugin: Permissions OK TelephonyPlugin
11-13 20:09:29.761 4605 3666 I KDE/addPlugin: Optional Permissions OK TelephonyPlugin
11-13 20:09:29.761 4605 3665 I KDE/addPlugin: Optional Permissions OK NotificationsPlugin
11-13 20:09:29.761 4605 3666 I KDE/addPlugin: Permissions OK FindRemoteDevicePlugin
11-13 20:09:29.761 4605 3666 I KDE/addPlugin: Optional Permissions OK FindRemoteDevicePlugin
11-13 20:09:29.761 4605 3665 I KDE/addPlugin: Optional Permissions OK PhotoPlugin
11-13 20:09:29.762 4605 3666 I KDE/addPlugin: Permissions OK ClipboardPlugin
11-13 20:09:29.762 4605 3666 I KDE/addPlugin: Optional Permissions OK ClipboardPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Permissions OK SMSPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Optional Permissions OK SMSPlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK TelephonyPlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK FindRemoteDevicePlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Permissions OK PingPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Optional Permissions OK PingPlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK ClipboardPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Permissions OK FindMyPhonePlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Optional Permissions OK FindMyPhonePlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK SMSPlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK PingPlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK FindMyPhonePlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Permissions OK SystemVolumePlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK SystemVolumePlugin
11-13 20:09:29.767 4605 3666 I KDE/addPlugin: Optional Permissions OK SystemVolumePlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Permissions OK PresenterPlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK PresenterPlugin
11-13 20:09:29.767 4605 3666 I KDE/addPlugin: Optional Permissions OK PresenterPlugin
11-13 20:09:29.767 4605 3665 D RemoteKeyboardPlugin: Creating for device reki
11-13 20:09:29.769 4605 3665 I KDE/addPlugin: Permissions OK RemoteKeyboardPlugin
11-13 20:09:29.769 4605 3665 I KDE/addPlugin: Optional Permissions OK RemoteKeyboardPlugin
11-13 20:09:29.778 4605 3665 I KDE/addPlugin: Permissions OK MprisPlugin
11-13 20:09:29.778 4605 3665 I KDE/addPlugin: Optional Permissions OK MprisPlugin
11-13 20:09:29.778 4605 3666 I KDE/addPlugin: Optional Permissions OK RemoteKeyboardPlugin
11-13 20:09:29.778 4605 3666 I KDE/addPlugin: Optional Permissions OK MprisPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Permissions OK ContactsPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Optional Permissions OK ContactsPlugin
11-13 20:09:29.779 4605 3665 I KDE/addPlugin: Optional Permissions OK ContactsPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Permissions OK MousePadPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Optional Permissions OK MousePadPlugin
11-13 20:09:29.779 4605 3665 I KDE/addPlugin: Optional Permissions OK MousePadPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Permissions OK RunCommandPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Optional Permissions OK RunCommandPlugin
11-13 20:09:29.779 4605 3665 I KDE/addPlugin: Optional Permissions OK RunCommandPlugin
11-13 20:09:29.816 4605 3666 W Device : Ignoring packet with type kdeconnect.runcommand.request because no plugin can handle it
11-13 20:09:29.854 4605 3667 I KDE/LanLink: Using port 1740
11-13 20:09:29.916 4605 4626 W System : A resource failed to call close.
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: Exception
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: java.net.SocketTimeoutException: Poll timed out
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at libcore.io.IoBridge.poll(IoBridge.java:682)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.PlainSocketImpl.socketAccept(PlainSocketImpl.java:196)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:451)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.ServerSocket.implAccept(ServerSocket.java:547)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.ServerSocket.accept(ServerSocket.java:515)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at org.kde.kdeconnect.Backends.LanBackend.LanLink.sendPacket(LanLink.java:185)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at org.kde.kdeconnect.Device.sendPacketBlocking(Device.java:698)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at org.kde.kdeconnect.DevicePacketQueue$SendingThread.run(DevicePacketQueue.java:112)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.lang.Thread.run(Thread.java:919)
11-13 20:09:39.873 4605 3667 E KDE/sendPacket: No device link (of 1 available) could send the package. Packet kdeconnect.notification to reki lost!
11-13 20:09:39.874 4605 3667 I KDE/LanLink: Using port 1740
11-13 20:09:40.023 4605 3667 I KDE/LanLink: Beginning to send payload
11-13 20:09:40.024 4605 3667 I KDE/LanLink: Finished sending payload (15372 bytes written)
11-13 20:09:55.714 4605 4626 W System : A resource failed to call close.
11-13 20:10:09.566 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@45f6c7d
11-13 20:10:09.598 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:10:09.620 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:10:09.620 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:10:09.634 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:10:09.645 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@91d4964[FindMyPhoneActivity]
11-13 20:10:09.645 4605 3852 I AdrenoGLES: QUALCOMM build : bc92c36, I9e73322269
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Build Date : 08/28/19
11-13 20:10:09.645 4605 3852 I AdrenoGLES: OpenGL ES Shader Compiler Version: EV031.27.02.00
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Local Branch :
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Remote Branch : refs/tags/AU_LINUX_ANDROID_LA.UM.8.1.R1.09.00.00.529.074
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Remote Branch : NONE
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Reconstruct Branch : NOTHING
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Build Config : S P 8.0.8 AArch64
11-13 20:10:09.647 4605 3852 I AdrenoGLES: PFP: 0x016ee187, ME: 0x00000000
11-13 20:10:09.659 4605 3852 W Gralloc3: mapper 3.x is not supported
11-13 20:10:09.668 4605 3852 D : Successfully load libgui-plugin.so, this=0x7bdbd77050
11-13 20:10:11.667 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
@andyholmes Here is another one after going back and forth having kdeconnect in foreground and background.
$ adb logcat --pid=$(adb shell pidof -s org.kde.kdeconnect_tp) > kdelog.txt
^C
d-air1@reki:~$ adb logcat --pid=$(adb shell pidof -s org.kde.kdeconnect_tp) > kdelog.txt
^C
d-air1@reki:~$ adb logcat --pid=$(adb shell pidof -s org.kde.kdeconnect_tp)
--------- beginning of main
11-13 20:09:29.524 4605 10559 I KDE/LanLinkProvider: Broadcast identity package received from reki
11-13 20:09:29.531 4605 10559 I KDE/LanLinkProvider: Starting SSL handshake with reki trusted:true
11-13 20:09:29.697 4605 3665 I KDE/LanLinkProvider: Handshake as server successful with reki secured with TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
11-13 20:09:29.697 4605 3665 I KDE/LanLinkProvider: Creating a new link for device 6dca56ff-7eda-47a6-9dbd-7b6be9ef3eb1
11-13 20:09:29.698 4605 3665 I KDE/BackgroundService: addLink, known device: 6dca56ff-7eda-47a6-9dbd-7b6be9ef3eb1
11-13 20:09:29.702 4605 3665 I KDE/Device: Got certificate
11-13 20:09:29.702 4605 3665 I KDE/Device: addLink LanLinkProvider -> reki active links: 1
11-13 20:09:29.704 4605 3666 I KDE/addPlugin: Permissions OK SftpPlugin
11-13 20:09:29.708 4605 3666 I KDE/addPlugin: Optional Permissions OK SftpPlugin
11-13 20:09:29.708 4605 3665 I KDE/addPlugin: Optional Permissions OK SftpPlugin
11-13 20:09:29.743 4605 3666 I KDE/addPlugin: Permissions OK MprisReceiverPlugin
11-13 20:09:29.743 4605 3666 I KDE/addPlugin: Optional Permissions OK MprisReceiverPlugin
11-13 20:09:29.745 4605 3666 I KDE/addPlugin: Permissions OK BatteryPlugin
11-13 20:09:29.745 4605 3666 I KDE/addPlugin: Optional Permissions OK BatteryPlugin
11-13 20:09:29.745 4605 3665 I KDE/addPlugin: Optional Permissions OK MprisReceiverPlugin
11-13 20:09:29.745 4605 3665 I KDE/addPlugin: Optional Permissions OK BatteryPlugin
11-13 20:09:29.745 4605 3666 I KDE/addPlugin: Permissions OK SharePlugin
11-13 20:09:29.746 4605 3666 I KDE/addPlugin: Optional Permissions OK SharePlugin
11-13 20:09:29.746 4605 3665 I KDE/addPlugin: Optional Permissions OK SharePlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Permissions OK NotificationsPlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Optional Permissions OK NotificationsPlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Permissions OK PhotoPlugin
11-13 20:09:29.758 4605 3666 I KDE/addPlugin: Optional Permissions OK PhotoPlugin
11-13 20:09:29.760 4605 3666 I KDE/addPlugin: Permissions OK TelephonyPlugin
11-13 20:09:29.761 4605 3666 I KDE/addPlugin: Optional Permissions OK TelephonyPlugin
11-13 20:09:29.761 4605 3665 I KDE/addPlugin: Optional Permissions OK NotificationsPlugin
11-13 20:09:29.761 4605 3666 I KDE/addPlugin: Permissions OK FindRemoteDevicePlugin
11-13 20:09:29.761 4605 3666 I KDE/addPlugin: Optional Permissions OK FindRemoteDevicePlugin
11-13 20:09:29.761 4605 3665 I KDE/addPlugin: Optional Permissions OK PhotoPlugin
11-13 20:09:29.762 4605 3666 I KDE/addPlugin: Permissions OK ClipboardPlugin
11-13 20:09:29.762 4605 3666 I KDE/addPlugin: Optional Permissions OK ClipboardPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Permissions OK SMSPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Optional Permissions OK SMSPlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK TelephonyPlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK FindRemoteDevicePlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Permissions OK PingPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Optional Permissions OK PingPlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK ClipboardPlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Permissions OK FindMyPhonePlugin
11-13 20:09:29.766 4605 3666 I KDE/addPlugin: Optional Permissions OK FindMyPhonePlugin
11-13 20:09:29.766 4605 3665 I KDE/addPlugin: Optional Permissions OK SMSPlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK PingPlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK FindMyPhonePlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Permissions OK SystemVolumePlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK SystemVolumePlugin
11-13 20:09:29.767 4605 3666 I KDE/addPlugin: Optional Permissions OK SystemVolumePlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Permissions OK PresenterPlugin
11-13 20:09:29.767 4605 3665 I KDE/addPlugin: Optional Permissions OK PresenterPlugin
11-13 20:09:29.767 4605 3666 I KDE/addPlugin: Optional Permissions OK PresenterPlugin
11-13 20:09:29.767 4605 3665 D RemoteKeyboardPlugin: Creating for device reki
11-13 20:09:29.769 4605 3665 I KDE/addPlugin: Permissions OK RemoteKeyboardPlugin
11-13 20:09:29.769 4605 3665 I KDE/addPlugin: Optional Permissions OK RemoteKeyboardPlugin
11-13 20:09:29.778 4605 3665 I KDE/addPlugin: Permissions OK MprisPlugin
11-13 20:09:29.778 4605 3665 I KDE/addPlugin: Optional Permissions OK MprisPlugin
11-13 20:09:29.778 4605 3666 I KDE/addPlugin: Optional Permissions OK RemoteKeyboardPlugin
11-13 20:09:29.778 4605 3666 I KDE/addPlugin: Optional Permissions OK MprisPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Permissions OK ContactsPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Optional Permissions OK ContactsPlugin
11-13 20:09:29.779 4605 3665 I KDE/addPlugin: Optional Permissions OK ContactsPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Permissions OK MousePadPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Optional Permissions OK MousePadPlugin
11-13 20:09:29.779 4605 3665 I KDE/addPlugin: Optional Permissions OK MousePadPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Permissions OK RunCommandPlugin
11-13 20:09:29.779 4605 3666 I KDE/addPlugin: Optional Permissions OK RunCommandPlugin
11-13 20:09:29.779 4605 3665 I KDE/addPlugin: Optional Permissions OK RunCommandPlugin
11-13 20:09:29.816 4605 3666 W Device : Ignoring packet with type kdeconnect.runcommand.request because no plugin can handle it
11-13 20:09:29.854 4605 3667 I KDE/LanLink: Using port 1740
11-13 20:09:29.916 4605 4626 W System : A resource failed to call close.
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: Exception
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: java.net.SocketTimeoutException: Poll timed out
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at libcore.io.IoBridge.poll(IoBridge.java:682)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.PlainSocketImpl.socketAccept(PlainSocketImpl.java:196)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:451)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.ServerSocket.implAccept(ServerSocket.java:547)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.net.ServerSocket.accept(ServerSocket.java:515)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at org.kde.kdeconnect.Backends.LanBackend.LanLink.sendPacket(LanLink.java:185)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at org.kde.kdeconnect.Device.sendPacketBlocking(Device.java:698)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at org.kde.kdeconnect.DevicePacketQueue$SendingThread.run(DevicePacketQueue.java:112)
11-13 20:09:39.872 4605 3667 E KDE/sendPacket: at java.lang.Thread.run(Thread.java:919)
11-13 20:09:39.873 4605 3667 E KDE/sendPacket: No device link (of 1 available) could send the package. Packet kdeconnect.notification to reki lost!
11-13 20:09:39.874 4605 3667 I KDE/LanLink: Using port 1740
11-13 20:09:40.023 4605 3667 I KDE/LanLink: Beginning to send payload
11-13 20:09:40.024 4605 3667 I KDE/LanLink: Finished sending payload (15372 bytes written)
11-13 20:09:55.714 4605 4626 W System : A resource failed to call close.
11-13 20:10:09.566 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@45f6c7d
11-13 20:10:09.598 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:10:09.620 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:10:09.620 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:10:09.634 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:10:09.645 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@91d4964[FindMyPhoneActivity]
11-13 20:10:09.645 4605 3852 I AdrenoGLES: QUALCOMM build : bc92c36, I9e73322269
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Build Date : 08/28/19
11-13 20:10:09.645 4605 3852 I AdrenoGLES: OpenGL ES Shader Compiler Version: EV031.27.02.00
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Local Branch :
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Remote Branch : refs/tags/AU_LINUX_ANDROID_LA.UM.8.1.R1.09.00.00.529.074
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Remote Branch : NONE
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Reconstruct Branch : NOTHING
11-13 20:10:09.645 4605 3852 I AdrenoGLES: Build Config : S P 8.0.8 AArch64
11-13 20:10:09.647 4605 3852 I AdrenoGLES: PFP: 0x016ee187, ME: 0x00000000
11-13 20:10:09.659 4605 3852 W Gralloc3: mapper 3.x is not supported
11-13 20:10:09.668 4605 3852 D : Successfully load libgui-plugin.so, this=0x7bdbd77050
11-13 20:10:11.667 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:14:56.191 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:16:48.810 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@c70dabf
11-13 20:16:48.836 4605 4605 V FlingOptimizerScroller: FlingOptimizerOverScroller Init
11-13 20:16:48.850 4605 4605 I MainActivity: Loading selected device from persistent storage
11-13 20:16:48.864 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:16:48.874 4605 4633 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@7b0db40[MainActivity]
11-13 20:16:57.112 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@a9de8eb
11-13 20:16:57.137 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:16:57.152 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:16:57.152 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:16:57.161 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:16:57.168 4605 4633 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@28165f9[FindMyPhoneActivity]
11-13 20:16:58.844 4605 4633 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@7b0db40[MainActivity]
11-13 20:16:59.469 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:17:03.929 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@b0a17dd
11-13 20:17:03.951 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:17:03.955 4605 4633 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@b21c267[PhotoActivity]
11-13 20:17:07.334 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@7b0db40[MainActivity]
11-13 20:17:23.601 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@6e41fe0
11-13 20:17:23.631 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:17:23.637 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@44828e6[PhotoActivity]
11-13 20:20:16.650 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:20:41.066 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@949d488
11-13 20:20:41.092 4605 4605 I MainActivity: Loading selected device from persistent storage
11-13 20:20:41.100 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:20:41.107 4605 4630 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@b590c02[MainActivity]
11-13 20:20:41.112 4605 4605 W Choreographer: Already have a pending vsync event. There should only be one at a time.
11-13 20:21:29.810 4605 3666 W Device : Ignoring packet with type kdeconnect.notification because no plugin can handle it
11-13 20:23:22.633 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@2d99893
11-13 20:23:22.665 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:23:22.685 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:23:22.685 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:23:22.698 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:23:22.703 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@b2caae1[FindMyPhoneActivity]
11-13 20:23:23.768 4605 4623 I e.kdeconnect_t: Thread[3,tid=4623,WaitingInMainSignalCatcherLoop,Thread*=0x7b58c69c00,peer=0x137c0228,"Signal Catcher"]: reacting to signal 3
11-13 20:23:23.768 4605 4623 I e.kdeconnect_t:
11-13 20:23:23.833 4605 4623 I e.kdeconnect_t: Wrote stack traces to tombstoned
11-13 20:23:25.602 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:23:29.010 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@5db3e8d
11-13 20:23:29.034 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:23:29.038 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@feb0816[PhotoActivity]
11-13 20:24:02.182 4605 3765 I e.kdeconnect_t: Explicit concurrent copying GC freed 43342(2171KB) AllocSpace objects, 4(1616KB) LOS objects, 49% free, 4710KB/9420KB, paused 31us total 18.473ms
11-13 20:24:02.206 4605 4626 W System : A resource failed to call close.
11-13 20:24:02.207 4605 4626 W System : A resource failed to call close.
11-13 20:24:02.207 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:24:21.040 4605 3765 I e.kdeconnect_t: Explicit concurrent copying GC freed 16295(788KB) AllocSpace objects, 3(60KB) LOS objects, 49% free, 4307KB/8614KB, paused 33us total 15.527ms
@andyholmes Last one from logcat
Focus: true, DecorView@7bf5120[FindMyPhoneActivity]
11-13 20:41:20.973 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:21.116 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@857589b
11-13 20:41:21.138 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:21.147 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:21.147 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:21.156 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:21.162 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@c839867[FindMyPhoneActivity]
11-13 20:41:22.219 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:27.348 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@1fbc1fe
11-13 20:41:27.363 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:27.379 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:27.379 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:27.389 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:27.395 4605 3740 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@c6e7fba[FindMyPhoneActivity]
11-13 20:41:27.957 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@fc12f9d
11-13 20:41:27.978 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:27.986 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:27.986 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:27.995 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:28.001 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@156a09[FindMyPhoneActivity]
11-13 20:41:28.246 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:28.706 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:28.807 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@7566028
11-13 20:41:28.834 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:28.843 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:28.843 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:28.854 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:28.860 4605 3740 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@e561d04[FindMyPhoneActivity]
11-13 20:41:29.792 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:31.874 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@f98400f
11-13 20:41:31.888 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:31.901 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:31.901 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:31.909 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:31.915 4605 3732 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@497981b[FindMyPhoneActivity]
11-13 20:41:31.921 4605 4605 W Choreographer: Already have a pending vsync event. There should only be one at a time.
11-13 20:41:32.761 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:35.054 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@28b1c82
11-13 20:41:35.068 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:35.082 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:35.082 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:35.090 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:35.097 4605 3765 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@142377e[FindMyPhoneActivity]
11-13 20:41:35.257 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:35.563 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@40c5271
11-13 20:41:35.583 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:35.591 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:35.591 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:35.599 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:35.605 4605 3732 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@383131d[FindMyPhoneActivity]
11-13 20:41:36.576 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:44.578 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@370298c
11-13 20:41:44.598 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:44.631 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:44.631 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:44.641 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:44.647 4605 3732 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@32549a8[FindMyPhoneActivity]
11-13 20:41:45.001 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:45.498 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@d114b43
11-13 20:41:45.522 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:45.531 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:45.531 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:45.545 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:45.555 4605 3732 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@469a78f[FindMyPhoneActivity]
11-13 20:41:45.568 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:41:45.605 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:41:45.616 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:41:45.626 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:41:45.635 4605 4626 W MediaPlayer-JNI: MediaPlayer finalized without being released
11-13 20:41:45.645 4605 4626 W System : A resource failed to call close.
11-13 20:41:46.035 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:46.522 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@bac05c6
11-13 20:41:46.537 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
11-13 20:41:46.546 4605 4605 W MediaPlayer: Use of stream types is deprecated for operations other than volume control
11-13 20:41:46.546 4605 4605 W MediaPlayer: See the documentation of setAudioStreamType() for what to use instead with android.media.AudioAttributes to qualify your playback use case
11-13 20:41:46.562 4605 4605 V ViewRootImpl: The specified message queue synchronization barrier token has not been posted or has already been removed
11-13 20:41:46.570 4605 3732 D DecorView: onWindowFocusChangedFromViewRoot hasFocus: true, DecorView@b069f13[FindMyPhoneActivity]
11-13 20:41:46.574 4605 4605 W Choreographer: Already have a pending vsync event. There should only be one at a time.
11-13 20:41:47.061 4605 4605 I AudioManager: In setStreamVolume(), streamType: 4, index:7, calling application: org.kde.kdeconnect_tp
@andyholmes After further testing here is what I found If I share a file from my phone to my computer, I can then ring my phone as many times as I want as long as I don't let the screen turn off or use nay other app.
@andyholmes Here is a bunch of stuff pertaining to kdeconnect from a bug report I generated from within android developer settings. This is in reverse order from my clipboard manager.
[0,net.oneplus.quickstep.RecentsActivity,STOP_ACTIVITY_ITEM]
11-13 20:17:28.600 1000 1485 1757 I commit_sys_config_file: [settings-1-0,6]
11-13 20:17:30.894 1000 1485 1885 I sysui_multi_action: [757,1513,758,4,805,1573697850894,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,7233]
11-13 20:17:30.902 1000 1485 1523 I service_manager_stats: [100,26,27115]
11-13 20:17:34.381 1000 1485 4842 I sysui_multi_action: [757,1513,758,4,805,1573697854381,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,10720]
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7626): avc: denied { search } for comm=41646170744C61756E636820566D name="8735" dev="proc" ino=73677 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7627): avc: denied { search } for comm=41646170744C61756E636820566D name="6254" dev="proc" ino=83494 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7628): avc: denied { search } for comm=41646170744C61756E636820566D name="3398" dev="proc" ino=58240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7629): avc: denied { search } for comm=41646170744C61756E636820566D name="3381" dev="proc" ino=58238 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7630): avc: denied { search } for comm=41646170744C61756E636820566D name="1510" dev="proc" ino=45240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7631): avc: denied { search } for comm=41646170744C61756E636820566D name="1509" dev="proc" ino=45238 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7632): avc: denied { search } for comm=41646170744C61756E636820566D name="1508" dev="proc" ino=45236 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:34.577 root 891 891 I auditd : type=1400 audit(0.0:7633): avc: denied { search } for comm=41646170744C61756E636820566D name="8735" dev="proc" ino=73677 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:36.601 1000 1485 2335 I sysui_multi_action: [757,1513,758,4,805,1573697856600,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,12939]
11-13 20:17:36.797 root 891 891 I auditd : type=1400 audit(0.0:7696): avc: denied { search } for comm=41646170744C61756E636820566D name="8735" dev="proc" ino=73677 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:36.797 root 891 891 I auditd : type=1400 audit(0.0:7697): avc: denied { search } for comm=41646170744C61756E636820566D name="6254" dev="proc" ino=83494 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:36.797 root 891 891 I auditd : type=1400 audit(0.0:7698): avc: denied { search } for comm=41646170744C61756E636820566D name="3398" dev="proc" ino=58240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:36.797 root 891 891 I auditd : type=1400 audit(0.0:7699): avc: denied { search } for comm=41646170744C61756E636820566D name="3381" dev="proc" ino=58238 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:36.797 root 891 891 I auditd : type=1400 audit(0.0:7700): avc: denied { search } for comm=41646170744C61756E636820566D name="1510" dev="proc" ino=45240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:39.450 1000 1485 2335 I sysui_multi_action: [757,1513,758,4,805,1573697859450,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,15789]
11-13 20:17:39.647 root 891 891 I auditd : type=1400 audit(0.0:7766): avc: denied { search } for comm=41646170744C61756E636820566D name="8735" dev="proc" ino=73677 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:39.647 root 891 891 I auditd : type=1400 audit(0.0:7767): avc: denied { search } for comm=41646170744C61756E636820566D name="6254" dev="proc" ino=83494 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:39.647 root 891 891 I auditd : type=1400 audit(0.0:7768): avc: denied { search } for comm=41646170744C61756E636820566D name="3398" dev="proc" ino=58240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:39.647 root 891 891 I auditd : type=1400 audit(0.0:7769): avc: denied { search } for comm=41646170744C61756E636820566D name="3381" dev="proc" ino=58238 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:39.647 root 891 891 I auditd : type=1400 audit(0.0:7770): avc: denied { search } for comm=41646170744C61756E636820566D name="1510" dev="proc" ino=45240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:43.819 1000 1485 1885 I sysui_multi_action: [757,1513,758,4,805,1573697863819,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,20158]
11-13 20:17:44.007 root 891 891 I auditd : type=1400 audit(0.0:7836): avc: denied { search } for comm=41646170744C61756E636820566D name="8735" dev="proc" ino=73677 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:44.007 root 891 891 I auditd : type=1400 audit(0.0:7837): avc: denied { search } for comm=41646170744C61756E636820566D name="6254" dev="proc" ino=83494 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:44.017 root 891 891 I auditd : type=1400 audit(0.0:7838): avc: denied { search } for comm=41646170744C61756E636820566D name="3398" dev="proc" ino=58240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:44.017 root 891 891 I auditd : type=1400 audit(0.0:7839): avc: denied { search } for comm=41646170744C61756E636820566D name="3381" dev="proc" ino=58238 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:44.017 root 891 891 I auditd : type=1400 audit(0.0:7840): avc: denied { search } for comm=41646170744C61756E636820566D name="1510" dev="proc" ino=45240 scontext=u:r:hal_perf_default:s0 tcontext=u:r:system_server:s0 tclass=dir permissive=0
11-13 20:17:46.407 1000 839 839 I auditd : type=1400 audit(0.0:7906): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:46.407 1000 839 839 I auditd : type=1400 audit(0.0:7907): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:46.431 1000 1485 1516 I am_pss : [4661,10149,com.oneplus.camera,71278592,21958656,43307008,150708224,0,20,11]
11-13 20:17:46.427 1000 839 839 I auditd : type=1400 audit(0.0:7908): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:46.427 1000 839 839 I auditd : type=1400 audit(0.0:7909): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:46.439 1000 1485 1516 I am_pss : [4793,10156,com.oneplus.gallery:recyclebin,18796544,5279744,7942144,108494848,0,20,7]
11-13 20:17:46.427 1000 839 839 I auditd : type=1400 audit(0.0:7910): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:46.449 1000 1485 1516 I am_pss : [4847,10156,com.oneplus.gallery:cloud,18357248,5152768,7663616,105783296,0,20,9]
11-13 20:17:47.282 1000 1485 1885 I sysui_multi_action: [757,1513,758,4,805,1573697867282,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,23620]
11-13 20:17:49.483 1000 1485 2335 I am_new_intent: [0,89185113,76,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity,android.intent.action.MAIN,NULL,NULL,276889600]
11-13 20:17:49.483 1000 1485 2335 I wm_task_moved: [76,0,2147483647]
11-13 20:17:49.484 1000 1485 2335 I am_focused_stack: [0,0,3,0,bringingFoundTaskToFront]
11-13 20:17:49.484 1000 1485 2335 I wm_task_moved: [76,0,2147483647]
11-13 20:17:49.484 10239 4221 4221 I am_on_top_resumed_lost_called: [0,com.teslacoilsw.launcher.NovaLauncher,topStateChangedWhenResumed]
11-13 20:17:49.488 1000 1485 2335 I am_set_resumed_activity: [0,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity,bringingFoundTaskToFront]
11-13 20:17:49.488 1000 1485 2335 I am_pause_activity:
[0,150922182,124,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,NULL,NULL,NULL,276824064]
11-13 20:16:57.106 10248 4605 4605 I am_on_top_resumed_lost_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,topStateChangedWhenResumed]
11-13 20:16:57.106 1000 1485 10024 I wm_task_moved: [124,0,2147483647]
11-13 20:16:57.107 1000 1485 10024 I am_pause_activity: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,userLeaving=true]
11-13 20:16:57.109 10248 4605 4605 I am_on_paused_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,performPause]
11-13 20:16:57.109 1000 1485 10024 I am_add_to_stopping: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,makeInvisible]
11-13 20:16:57.110 1000 1485 10024 I am_restart_activity: [0,150922182,124,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity]
11-13 20:16:57.111 1000 1485 10024 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,minimalResumeActivityLocked]
11-13 20:16:57.119 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,8]
11-13 20:16:57.120 10248 4605 4605 I am_on_create_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,performCreate]
11-13 20:16:57.159 10248 4605 4605 I am_on_start_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,handleStartActivity]
11-13 20:16:57.159 10248 4605 4605 I am_on_resume_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,RESUME_ACTIVITY]
11-13 20:16:57.175 10248 4605 4605 I am_on_top_resumed_gained_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,topStateChangedWhenResumed]
11-13 20:16:57.178 1000 1485 1516 I sysui_multi_action: [319,32,321,19,322,74,325,9523,757,761,758,8,759,1,806,org.kde.kdeconnect_tp,871,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,904,org.kde.kdeconnect_tp,905,0,1320,8,1321,5]
11-13 20:16:57.179 1000 1485 1516 I am_activity_launch_time: [0,150922182,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,74]
11-13 20:16:57.185 1000 1485 1508 I am_uid_active: 10132
11-13 20:16:57.327 1000 1485 1757 I commit_sys_config_file: [settings-2-0,11]
11-13 20:16:57.721 1000 1485 1508 I am_stop_activity: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity]
11-13 20:16:57.730 10248 4605 4605 I am_on_stop_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,STOP_ACTIVITY_ITEM]
11-13 20:16:58.821 1000 1485 10024 I am_finish_activity: [0,150922182,124,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,app-request]
11-13 20:16:58.821 1000 1485 10024 I am_focused_stack: [0,0,51,52,finishActivity adjustFocus adjustFocusToNextFocusableStack]
11-13 20:16:58.822 1000 1485 10024 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,finishActivity]
11-13 20:16:58.822 1000 1485 10024 I am_pause_activity: [0,150922182,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,userLeaving=false]
11-13 20:16:58.824 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,2]
11-13 20:16:58.824 10248 4605 4605 I am_on_top_resumed_lost_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,topStateChangedWhenResumed]
11-13 20:16:58.825 10248 4605 4605 I am_on_paused_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,performPause]
11-13 20:16:58.825 1000 1485 10024 I am_add_to_stopping: [0,150922182,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,finishCurrentActivityLocked]
11-13 20:16:58.827 1000 1485 10024 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,resumeTopActivityInnerLocked]
11-13 20:16:58.829 1000 1485 10024 I am_resume_activity: [0,192536052,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity]
11-13 20:16:58.833 10248 4605 4605 I am_on_restart_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,performRestartActivity]
11-13 20:16:58.834 10248 4605 4605 I am_on_start_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,handleStartActivity]
11-13 20:16:58.834 10248 4605 4605 I am_on_resume_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,RESUME_ACTIVITY]
11-13 20:16:58.834 10248 4605 4605 I am_on_top_resumed_gained_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,topWhenResuming]
11-13 20:16:58.842 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,0]
11-13 20:16:59.451 1000 1485 1508 I am_destroy_activity: [0,150922182,124,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,finish-imm:activityIdleInternalLocked]
11-13 20:16:59.470 10248 4605 4605 I am_on_stop_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,LIFECYCLER_STOP_ACTIVITY]
11-13 20:16:59.471 10248 4605 4605 I am_on_destroy_called: [0,org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,performDestroy]
11-13 20:16:59.475 1000 1485 10395 I wm_task_removed: [124,removeAppToken: last token]
11-13 20:16:59.475 1000 1485 10395 I am_remove_task: [124,52]
11-13 20:16:59.475 1000 1485 10395 I wm_task_removed: [124,removeTask]
11-13 20:16:59.476 1000 1485 10395 I wm_stack_removed: 52
11-13 20:17:03.786 1000 1485 1485 I service_manager_stats: [100,31,23877]
11-13 20:17:03.922 1000 1485 3882 I am_create_activity: [0,151166015,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,NULL,NULL,NULL,268435456]
11-13 20:17:03.923 1000 1485 3882 I am_pause_activity: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,userLeaving=true]
11-13 20:17:03.924 10248 4605 4605 I am_on_top_resumed_lost_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,topStateChangedWhenResumed]
11-13 20:17:03.925 10248 4605 4605 I am_on_paused_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,performPause]
11-13 20:17:03.926 1000 1485 3882 I am_add_to_stopping: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,makeInvisible]
11-13 20:17:03.927 1000 1485 3882 I am_restart_activity: [0,151166015,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity]
11-13 20:17:03.928 1000 1485 3882 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,minimalResumeActivityLocked]
11-13 20:17:03.931 10248 4605 4605 I am_on_create_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,performCreate]
11-13 20:17:03.927 1000 839 839 I auditd : type=1400 audit(0.0:7618): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:03.927 1000 839 839 I auditd : type=1400 audit(0.0:7619): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:03.933 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,5]
11-13 20:17:03.939 1000 1485 1516 I am_pss : [1063,10317,com.mgoogle.android.gms,19762176,17477632,0,119234560,0,5,7]
11-13 20:17:03.927 1000 839 839 I auditd : type=1400 audit(0.0:7620): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:03.927 1000 839 839 I auditd : type=1400 audit(0.0:7621): avc: denied { search } for comm="[email protected]" name="kgsl" dev="sysfs" ino=57013 scontext=u:r:hal_memtrack_default:s0 tcontext=u:object_r:sysfs_kgsl:s0 tclass=dir permissive=0
11-13 20:17:03.942 1000 1485 10395 I am_create_activity: [0,267506743,123,com.oneplus.camera/.OPCameraServiceActivity,android.media.action.IMAGE_CAPTURE,NULL,NULL,3]
11-13 20:17:03.943 1000 1485 10395 I am_pause_activity: [0,151166015,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,userLeaving=true]
11-13 20:17:03.944 10248 4605 4605 I am_on_start_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,handleStartActivity]
11-13 20:17:03.948 1000 1485 1516 I am_pss : [20654,10244,com.snapchat.android,43577344,25341952,16814080,122753024,0,20,8]
11-13 20:17:03.949 10248 4605 4605 I am_on_resume_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,RESUME_ACTIVITY]
11-13 20:17:03.958 10248 4605 4605 I am_on_top_resumed_gained_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,topStateChangedWhenResumed]
11-13 20:17:03.959 10248 4605 4605 I am_on_top_resumed_lost_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,topStateChangedWhenResumed]
11-13 20:17:03.961 10248 4605 4605 I am_on_paused_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,performPause]
11-13 20:17:03.963 1000 1485 2771 I am_add_to_stopping: [0,151166015,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,makeInvisible]
11-13 20:17:03.964 1000 1485 1508 I am_uid_running: 10149
11-13 20:17:03.985 1000 1485 1519 I am_proc_start: [0,4661,10149,com.oneplus.camera,activity,{com.oneplus.camera/com.oneplus.camera.OPCameraServiceActivity}]
11-13 20:17:03.994 1000 1485 2771 I am_proc_bound: [0,4661,com.oneplus.camera]
11-13 20:17:03.996 1000 1485 2771 I am_restart_activity: [0,267506743,123,com.oneplus.camera/.OPCameraServiceActivity]
11-13 20:17:04.004 1000 1485 2771 I am_set_resumed_activity: [0,com.oneplus.camera/.OPCameraServiceActivity,minimalResumeActivityLocked]
11-13 20:17:04.010 1000 1485 1508 I am_uid_active: 10149
11-13 20:17:04.077 10149 4661 4661 I am_on_create_called: [0,com.oneplus.camera.OPCameraServiceActivity,performCreate]
11-13 20:17:04.078 10149 4661 4661 I am_on_start_called: [0,com.oneplus.camera.OPCameraServiceActivity,handleStartActivity]
11-13 20:17:04.080 10149 4661 4661 I am_on_resume_called: [0,com.oneplus.camera.OPCameraServiceActivity,RESUME_ACTIVITY]
11-13 20:17:04.084 1000 1485 1519 I am_proc_start: [0,4706,1000,com.oneplus.camera.service,service,{com.oneplus.camera.service/com.oneplus.camera.service.CameraService}]
11-13 20:17:04.102 1000 1485 3882 I am_proc_bound: [0,4706,com.oneplus.camera.service]
11-13 20:17:04.118 10149 4661 4661 I am_on_top_resumed_gained_called: [0,com.oneplus.camera.OPCameraServiceActivity,topStateChangedWhenResumed]
11-13 20:17:04.142 1000 1485 1516 I sysui_multi_action: [319,205,322,42,325,9529,757,761,758,8,759,2,806,com.oneplus.camera,871,com.oneplus.camera.OPCameraServiceActivity,904,org.kde.kdeconnect_tp,905,0,945,77,1320,8,1321,5]
11-13 20:17:04.147 1000 1485 1516 I am_activity_launch_time: [0,267506743,com.oneplus.camera/.OPCameraServiceActivity,42]
11-13 20:17:04.155 1000 1485 1519 I am_proc_start: [0,4746,10149,com.oneplus.camera:picture,service,{com.oneplus.camera/com.oneplus.camera.OPPictureProcessService}]
11-13 20:17:04.157 1047 828 828 I auditd : type=1400 audit(0.0:7622): avc: denied { read } for comm="HwBinder:828_1" name="u:object_r:default_prop:s0" dev="tmpfs" ino=16291 scontext=u:r:hal_camera_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=0
11-13 20:17:04.170 1000 1485 3882 I am_proc_bound: [0,4746,com.oneplus.camera:picture]
11-13 20:17:04.195 1000 1485 3882 I am_uid_running: 10156
11-13 20:17:04.226 1000 1485 1519 I am_proc_start: [0,4793,10156,com.oneplus.gallery:recyclebin,service,{com.oneplus.gallery/com.oneplus.gallery2.recyclebin.LocalRecycleBinService}]
11-13 20:17:04.253 1000 1485 2771 I am_stop_activity: [0,151166015,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity]
11-13 20:17:04.254 10248 4605 4605 I am_on_stop_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,STOP_ACTIVITY_ITEM]
11-13 20:17:04.255 1000 1485 2771 I am_stop_activity: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity]
11-13 20:17:04.256 1000 1485 1757 I commit_sys_config_file: [settings-1-0,7]
11-13 20:17:04.258 1000 1485 2771 I am_proc_bound: [0,4793,com.oneplus.gallery:recyclebin]
11-13 20:17:04.265 1000 1485 2771 I am_uid_active: 10156
11-13 20:17:04.269 10248 4605 4605 I am_on_stop_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,STOP_ACTIVITY_ITEM]
11-13 20:17:04.312 1000 1485 1757 I commit_sys_config_file: [settings-2-0,6]
11-13 20:17:04.364 1000 1485 1519 I am_proc_start: [0,4847,10156,com.oneplus.gallery:cloud,service,{com.oneplus.gallery/com.oneplus.gallery2.cloud.CloudGalleryService}]
11-13 20:17:04.386 1000 1485 10395 I am_proc_bound: [0,4847,com.oneplus.gallery:cloud]
11-13 20:17:04.740 1000 1485 1757 I commit_sys_config_file: [settings-1-0,8]
11-13 20:17:05.218 1000 1485 1757 I commit_sys_config_file: [settings-1-0,4]
11-13 20:17:07.248 1000 1485 2771 I sysui_multi_action: [757,803,799,key_back_down,802,1]
11-13 20:17:07.248 1000 1485 10504 I sysui_multi_action: [757,803,799,key_back_up,802,1]
11-13 20:17:07.267 1000 1485 1885 I am_finish_activity: [0,267506743,123,com.oneplus.camera/.OPCameraServiceActivity,app-request]
11-13 20:17:07.267 1000 1485 1885 I am_pause_activity: [0,267506743,com.oneplus.camera/.OPCameraServiceActivity,userLeaving=false]
11-13 20:17:07.268 10149 4661 4661 I am_on_top_resumed_lost_called: [0,com.oneplus.camera.OPCameraServiceActivity,topStateChangedWhenResumed]
11-13 20:17:07.270 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,3]
11-13 20:17:07.277 10149 4661 4661 I am_on_paused_called: [0,com.oneplus.camera.OPCameraServiceActivity,performPause]
11-13 20:17:07.283 1000 1485 1885 I am_add_to_stopping: [0,267506743,com.oneplus.camera/.OPCameraServiceActivity,finishCurrentActivityLocked]
11-13 20:17:07.292 1000 1485 1885 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,resumeTopActivityInnerLocked]
11-13 20:17:07.292 1000 1485 1885 I am_resume_activity: [0,151166015,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity]
11-13 20:17:07.300 1000 1485 1885 I am_finish_activity: [0,151166015,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,app-request]
11-13 20:17:07.301 1000 1485 1885 I am_pause_activity: [0,151166015,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,userLeaving=false]
11-13 20:17:07.301 10248 4605 4605 I am_on_activity_result_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,ACTIVITY_RESULT]
11-13 20:17:07.302 10248 4605 4605 I am_on_restart_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,performRestartActivity]
11-13 20:17:07.305 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,0]
11-13 20:17:07.306 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,0]
11-13 20:17:07.315 1000 1485 2771 I am_add_to_stopping: [0,151166015,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,finishCurrentActivityLocked]
11-13 20:17:07.316 1000 1485 2771 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,resumeTopActivityInnerLocked]
11-13 20:17:07.317 1000 1485 2771 I am_resume_activity: [0,192536052,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity]
11-13 20:17:07.319 10248 4605 4605 I am_on_restart_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,performRestartActivity]
11-13 20:17:07.320 10248 4605 4605 I am_on_start_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,handleStartActivity]
11-13 20:17:07.320 10248 4605 4605 I am_on_resume_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,RESUME_ACTIVITY]
11-13 20:17:07.321 10248 4605 4605 I am_on_top_resumed_gained_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,topWhenResuming]
11-13 20:17:07.322 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,0]
11-13 20:17:07.367 1000 1485 2771 I am_destroy_activity: [0,151166015,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,finish-imm:activityIdleInternalLocked]
11-13 20:17:07.367 1000 1485 2771 I am_destroy_activity: [0,267506743,123,com.oneplus.camera/.OPCameraServiceActivity,finish-imm:activityIdleInternalLocked]
11-13 20:17:07.367 10248 4605 4605 I am_on_destroy_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,performDestroy]
11-13 20:17:07.370 1000 1485 1508 I am_kill : [0,2293,com.android.emergency,995,empty #31]
11-13 20:17:07.371 1000 1485 1508 I am_kill : [0,2255,com.android.cellbroadcastreceiver,995,empty #32]
11-13 20:17:07.393 1000 1485 3882 I am_proc_died: [0,2255,com.android.cellbroadcastreceiver,995,20]
11-13 20:17:07.393 1000 1485 3882 I am_uid_stopped: 10135
11-13 20:17:07.395 1000 1485 1885 I am_proc_died: [0,2293,com.android.emergency,995,20]
11-13 20:17:07.397 1000 1485 1885 I am_uid_stopped: 10147
11-13 20:17:07.518 1000 1485 1757 I commit_sys_config_file: [settings-1-0,4]
11-13 20:17:07.555 10149 4661 4661 I am_on_stop_called: [0,com.oneplus.camera.OPCameraServiceActivity,LIFECYCLER_STOP_ACTIVITY]
11-13 20:17:07.768 10149 4661 4661 I am_on_destroy_called: [0,com.oneplus.camera.OPCameraServiceActivity,performDestroy]
11-13 20:17:07.769 1000 1485 3882 I am_kill : [0,2318,com.android.traceur,995,empty #31]
11-13 20:17:07.779 1000 1485 1757 I commit_sys_config_file: [settings-2-0,5]
11-13 20:17:07.790 1000 1485 3882 I am_proc_died: [0,2318,com.android.traceur,995,20]
11-13 20:17:07.791 1000 1485 3882 I am_uid_stopped: 10170
11-13 20:17:08.054 1000 1485 1757 I commit_sys_config_file: [settings-1-0,3]
11-13 20:17:09.411 10145 4248 4248 I am_on_restart_called: [0,net.oneplus.quickstep.RecentsActivity,handleWindowVisibility]
11-13 20:17:09.412 10145 4248 4248 I am_on_start_called: [0,net.oneplus.quickstep.RecentsActivity,handleWindowVisibility]
11-13 20:17:09.439 1000 1485 1516 I sysui_multi_action: [319,6,322,34,325,9535,757,761,758,9,759,5,806,net.oneplus.launcher,871,net.oneplus.quickstep.RecentsActivity,904,net.oneplus.launcher,905,0,1320,8,1321,5]
11-13 20:17:09.861 10145 4248 4248 I sysui_multi_action: [757,224,758,2]
11-13 20:17:09.867 1000 1485 3882 I wm_task_moved: [76,0,2147483647]
11-13 20:17:09.868 1000 1485 3882 I am_focused_stack: [0,0,3,51,RecentsAnimation.onAnimationFinished()]
11-13 20:17:09.868 1000 1485 3882 I wm_task_moved: [76,0,2147483647]
11-13 20:17:09.869 10248 4605 4605 I am_on_top_resumed_lost_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,topStateChangedWhenResumed]
11-13 20:17:09.878 1000 1485 3882 I am_set_resumed_activity: [0,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity,RecentsAnimation.onAnimationFinished()]
11-13 20:17:09.878 1000 1485 3882 I am_pause_activity: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,userLeaving=true]
11-13 20:17:09.879 1000 1485 3882 I am_set_resumed_activity: [0,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity,resumeTopActivityInnerLocked]
11-13 20:17:09.880 1000 1485 3882 I am_add_to_stopping: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity,makeInvisible]
11-13 20:17:09.880 1000 1485 3882 I am_resume_activity: [0,89185113,76,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity]
11-13 20:17:09.881 1000 1485 3882 I am_task_to_front: [0,76]
11-13 20:17:09.888 10248 4605 4605 I am_on_paused_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,performPause]
11-13 20:17:09.889 1000 1485 1885 I am_new_intent: [0,159724069,73,com.teslacoilsw.launcher/.NovaLauncher,android.intent.action.MAIN,NULL,NULL,268435712]
11-13 20:17:09.889 1000 1485 1885 I wm_task_moved: [73,0,2147483647]
11-13 20:17:09.889 1000 1485 1885 I am_focused_stack: [0,0,0,3,bringingFoundTaskToFront]
11-13 20:17:09.889 1000 1485 1885 I wm_task_moved: [73,0,2147483647]
11-13 20:17:09.895 1000 1485 1885 I am_set_resumed_activity: [0,com.teslacoilsw.launcher/.NovaLauncher,bringingFoundTaskToFront]
11-13 20:17:09.896 1000 1485 1885 I am_task_to_front: [0,73]
11-13 20:17:09.900 1000 1485 3882 I am_pause_activity: [0,89185113,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity,userLeaving=false]
11-13 20:17:09.901 1000 1485 3882 I am_set_resumed_activity: [0,com.teslacoilsw.launcher/.NovaLauncher,resumeTopActivityInnerLocked]
11-13 20:17:09.902 1000 1485 3882 I am_add_to_stopping: [0,89185113,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity,makeInvisible]
11-13 20:17:09.902 1000 1485 3882 I am_resume_activity: [0,159724069,73,com.teslacoilsw.launcher/.NovaLauncher]
11-13 20:17:09.904 10145 4248 4248 I am_on_resume_called: [0,net.oneplus.quickstep.RecentsActivity,RESUME_ACTIVITY]
11-13 20:17:09.906 10145 4248 4248 I am_on_top_resumed_gained_called: [0,net.oneplus.quickstep.RecentsActivity,topStateChangedWhenResumed]
11-13 20:17:09.906 10145 4248 4248 I am_on_top_resumed_lost_called: [0,net.oneplus.quickstep.RecentsActivity,topStateChangedWhenResumed]
11-13 20:17:09.907 10145 4248 4248 I am_on_paused_called: [0,net.oneplus.quickstep.RecentsActivity,performPause]
11-13 20:17:09.910 1000 1485 2335 I am_stop_activity: [0,192536052,org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity]
11-13 20:17:09.914 10239 4221 4221 I am_on_restart_called: [0,com.teslacoilsw.launcher.NovaLauncher,performRestartActivity]
11-13 20:17:09.920 10248 4605 4605 I am_on_stop_called: [0,org.kde.kdeconnect.UserInterface.MainActivity,STOP_ACTIVITY_ITEM]
11-13 20:17:09.920 10239 4221 4221 I am_on_start_called: [0,com.teslacoilsw.launcher.NovaLauncher,handleStartActivity]
11-13 20:17:09.923 10239 4221 4221 I am_on_resume_called: [0,com.teslacoilsw.launcher.NovaLauncher,RESUME_ACTIVITY]
11-13 20:17:09.924 10239 4221 4221 I am_on_top_resumed_gained_called: [0,com.teslacoilsw.launcher.NovaLauncher,topStateChangedWhenResumed]
11-13 20:17:09.948 1000 1485 1516 I sysui_multi_action: [319,73,322,73,325,9535,757,761,758,9,759,2,806,com.teslacoilsw.launcher,871,com.teslacoilsw.launcher.NovaLauncher,905,0,1320,8,1321,5]
11-13 20:17:09.968 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,3]
11-13 20:17:10.168 1000 1485 1757 I commit_sys_config_file: [settings-2-0,5]
11-13 20:17:10.224 1000 1485 1508 I am_stop_activity: [0,89185113,net.oneplus.launcher/net.oneplus.quickstep.RecentsActivity]
11-13 20:17:10.237 10145 4248 4248 I am_on_stop_called: [0,net.oneplus.quickstep.RecentsActivity,STOP_ACTIVITY_ITEM]
11-13 20:17:10.650 1000 1485 1757 I commit_sys_config_file: [settings-1-0,6]
11-13 20:17:13.078 1000 1485 10504 I sysui_multi_action: [757,1513,758,4,805,1573697833078,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,3162]
11-13 20:17:16.459 1000 1485 10395 I sysui_multi_action: [757,1513,758,4,805,1573697836458,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,6542]
11-13 20:17:18.831 1000 1485 2335 I sysui_multi_action: [757,1513,758,4,805,1573697838831,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,8915]
11-13 20:17:21.171 1000 1485 10395 I sysui_multi_action: [757,1513,758,4,805,1573697841171,1514,10248,1515,org.kde.kdeconnect_tp,1516,1003,1517,0,1518,10248,1519,1003,1520,0,1526,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,1527,0,1529,org.kde.kdeconnect_tp,1530,1003,1531,0,1532,1,1533,0,1534,0,1535,0,1536,1,1538,11255]
11-13 20:17:21.172 1000 1485 10395 I am_create_activity: [0,123857430,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,NULL,NULL,NULL,268435456]
11-13 20:17:23.591 1000 1485 10395 I wm_task_moved: [123,0,2147483647]
11-13 20:17:23.592 1000 1485 10395 I am_focused_stack: [0,0,51,0,bringingFoundTaskToFront]
11-13 20:17:23.592 1000 1485 10395 I wm_task_moved: [123,0,2147483647]
11-13 20:17:23.593 10239 4221 4221 I am_on_top_resumed_lost_called: [0,com.teslacoilsw.launcher.NovaLauncher,topStateChangedWhenResumed]
11-13 20:17:23.593 1000 1485 10395 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,bringingFoundTaskToFront]
11-13 20:17:23.594 1000 1485 10395 I am_pause_activity: [0,159724069,com.teslacoilsw.launcher/.NovaLauncher,userLeaving=true]
11-13 20:17:23.594 1000 1485 10395 I am_task_to_front: [0,123]
11-13 20:17:23.595 1000 1485 10395 I am_create_activity: [0,72715399,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,NULL,NULL,NULL,272629760]
11-13 20:17:23.598 10239 4221 4221 I am_on_paused_called: [0,com.teslacoilsw.launcher.NovaLauncher,performPause]
11-13 20:17:23.600 1000 1485 2335 I am_add_to_stopping: [0,159724069,com.teslacoilsw.launcher/.NovaLauncher,makeInvisible]
11-13 20:17:23.601 1000 1485 2335 I am_restart_activity: [0,72715399,123,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity]
11-13 20:17:23.610 1000 1485 2335 I am_set_resumed_activity: [0,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,minimalResumeActivityLocked]
11-13 20:17:23.614 10248 4605 4605 I am_on_create_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,performCreate]
11-13 20:17:23.621 1000 1485 10024 I am_create_activity: [0,79702902,123,com.oneplus.camera/.OPCameraServiceActivity,android.media.action.IMAGE_CAPTURE,NULL,NULL,3]
11-13 20:17:23.623 1000 1485 10024 I am_pause_activity: [0,72715399,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,userLeaving=true]
11-13 20:17:23.624 10248 4605 4605 I am_on_start_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,handleStartActivity]
11-13 20:17:23.626 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,13]
11-13 20:17:23.627 10248 4605 4605 I am_on_resume_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,RESUME_ACTIVITY]
11-13 20:17:23.639 10248 4605 4605 I am_on_top_resumed_gained_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,topStateChangedWhenResumed]
11-13 20:17:23.639 10248 4605 4605 I am_on_top_resumed_lost_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,topStateChangedWhenResumed]
11-13 20:17:23.641 10248 4605 4605 I am_on_paused_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,performPause]
11-13 20:17:23.642 1000 1485 10504 I am_add_to_stopping: [0,72715399,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,makeInvisible]
11-13 20:17:23.642 1000 1485 10504 I am_restart_activity: [0,79702902,123,com.oneplus.camera/.OPCameraServiceActivity]
11-13 20:17:23.648 1000 1485 10504 I am_set_resumed_activity: [0,com.oneplus.camera/.OPCameraServiceActivity,minimalResumeActivityLocked]
11-13 20:17:23.660 1000 1485 1508 I am_stop_activity: [0,72715399,org.kde.kdeconnect_tp/org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity]
11-13 20:17:23.661 1000 1485 1508 I sysui_multi_action: [757,803,799,window_time_0,802,0]
11-13 20:17:23.662 10248 4605 4605 I am_on_stop_called: [0,org.kde.kdeconnect.Plugins.PhotoPlugin.PhotoActivity,STOP_ACTIVITY_ITEM]
11-13 20:17:23.668 1000 1485 1516 I sysui_multi_action: [319,2482,321,2481,322,2472,325,9547,757,761,758,8,759,1,806,com.oneplus.camera,871,com.oneplus.camera.OPCameraServiceActivity,904,org.kde.kdeconnect_tp,905,0,1320,8,1321,5]
11-13 20:17:23.669 1000 1485 1516 I am_activity_launch_time: [0,79702902,com.oneplus.camera/.OPCameraServiceActivity,2472]
11-13 20:17:23.679 10149 4661 4661 I am_on_create_called: [0,com.oneplus.camera.OPCameraServiceActivity,performCreate]
11-13 20:17:23.680 10149 4661 4661 I am_on_start_called: [0,com.oneplus.camera.OPCameraServiceActivity,handleStartActivity]
11-13 20:17:23.682 10149 4661 4661 I am_on_resume_called: [0,com.oneplus.camera.OPCameraServiceActivity,RESUME_ACTIVITY]
11-13 20:17:23.702 10149 4661 4661 I am_on_top_resumed_gained_called: [0,com.oneplus.camera.OPCameraServiceActivity,topStateChangedWhenResumed]
11-13 20:17:23.727 1047 828 828 I auditd : type=1400 audit(0.0:7624): avc: denied { read } for comm="HwBinder:828_2" name="u:object_r:default_prop:s0" dev="tmpfs" ino=16291 scontext=u:r:hal_camera_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=0
-13 20:23:29.061 10149 4661 4661 V OPCameraServiceActivity: checkStartMode() - Start mode: SERVICE_PHOTO, Media extras: com.oneplus.camera.MediaResultInfo@535abee - [ extraDurationLimit: 0, extraOutput: content://org.kde.kdeconnect_tp.fileprovider/images/JPEG_20191113_202329_4203514962728157831.jpg, extraSizeLimit: 0, extraVideoQuality: 0 ], Launch source: NORMAL
1-13 20:20:52.704 10145 4248 8691 D RecentTasksList: dumpTasks# id=126, cmp=ComponentInfo{org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity}, uid=0, locked=false, isAppLocked=false
11-13 20:20:52.704 10145 4248 8691 D RecentTasksList: dumpTasks# id=120, cmp=ComponentInfo{com.android.settings/com.android.settings.homepage.SettingsHomepageActivity}, uid=0, locked=false, isAppLocked=false
11-13 20:20:52.741 1000 1485 1893 D OpPowerConsumpStatsInjector: processBatteryValues
11-13 20:20:52.743 10202 2072 2072 D KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED
11-13 20:20:52.899 10202 2072 2072 D KeyguardUpdateMonitor: shouldListen: false, vis:false, inter:true, bouncer:false, going:true, sleep:false, occlude:false, dream:false, switch:false, disabled:false, primary:true
11-13 20:20:52.899 10202 2072 2072 D OpKeyguardUpdateMonitor: opShouldListenForFingerprint false: Keyguard Done and not fake locking
11-13 20:20:52.899 10202 2072 2072 D KeyguardUpdateMonitor: updateFP: false, false, 0
11-13 20:20:52.924 1000 1485 1508 D ActivityTrigger: ActivityTrigger activityStopTrigger
11-13 20:20:52.931 10145 4248 4248 D RecentsView: updateTaskStackListenerState: mOverviewStateEnabled= true, isAttachedToWindow= true, window visible = false, mHandleTaskStackChanges= true, handleTaskStackChanges= false
11-13 20:20:52.937 10145 4248 4248 D BaseRecentsActivity: onStop
11-13 20:20:52.938 10145 4248 4248 D RecentsActivity: onStop
11-13 20:20:52.938 10145 4248 4248 D PagedView: notifyPageSwitchListener# page: 0 -> 0, who: FallbackRecentsView
11-13 20:20:53.104 1000 1485 1485 V SettingsProvider: Notifying for 0: content://settings/system/rading_mode_status_auto
11-13 20:20:53.105 1000 1959 1979 I OIMC : notified , mode ColorReadMode changeTo 2
11-13 20:20:53.105 1000 1959 1979 I OIMC : notified , mode ReadMode changeTo 2
11-13 20:20:53.105 1000 1959 1987 I OIMC_CORE: handleMessage: MODE_EXIT, arg1: 0, arg2: 0, obj: com.oneplus.server.oimc.MsgObjectArg@b93db46
11-13 20:20:53.106 1000 1959 1987 I OIMC_CORE: The mode: ColorReadMode is not entered
11-13 20:20:53.106 1000 1959 1987 I OIMC_CORE: handleMessage: MODE_EXIT, arg1: 0, arg2: 0, obj: com.oneplus.server.oimc.MsgObjectArg@8e7e107
11-13 20:20:53.106 1000 1959 1987 I OIMC_CORE: The mode: ReadMode is not entered
11-13 20:20:53.106 1000 1485 1485 V SettingsProvider: Notifying for 0: content://settings/system/rading_mode_status_auto
11-13 20:20:53.157 10145 4248 4248 D TouchInteractionService: onInputEvent# ev: MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=858.0, y[0]=2940.0, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, classification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=9759084, downTime=9759084,
0.1% 4605/org.kde.kdeconnect_tp: 0% user + 0% kernel / faults: 2536 minor
Running activities (most recent first):
TaskRecord{7375d40 #126 A=org.kde.kdeconnect_tp U=0 StackId=54 sz=1}
Run #0: ActivityRecord{44e8fda u0 org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity t126}
mLastPausedActivity: ActivityRecord{44e8fda u0 org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity t126}
Stack #47: type=standard mode=fullscreen
isSleeping=false
mBounds=Rect(0, 0 - 0, 0)
ContainerLayer (AppWindowToken{6923ae8 token=Token{1e3dc0b ActivityRecord{44e8fda u0 org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity t126}}}#0)
Region TransparentRegion (this=0 count=0)
Region VisibleRegion (this=0 count=0)
Region SurfaceDamageRegion (this=0 count=0)
layerStack= 0, z= 0, pos=(0,0), size=( 0, 0), crop=[ 0, 0, -1, -1], cornerRadius=0.000000, isProtected=0, isOpaque=0, invalidate=1, dataspace=Default, defaultPixelFormat=Unknown/None, color=(0.000,0.000,0.000,1.000), flags=0x00000001, tr=[0.00, 0.00][0.00, 0.00]
parent=Task=126#0
zOrderRelativeOf=none
activeBuffer=[ 0x 0: 0,Unknown/None], tr=[0.00, 0.00][0.00, 0.00] queued-frames=0, mRefreshPending=0, metadata={}
+ ContainerLayer (a2b033a org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity#0)
Region TransparentRegion (this=0 count=0)
Region VisibleRegion (this=0 count=0)
Region SurfaceDamageRegion (this=0 count=0)
layerStack= 0, z= 0, pos=(0,0), size=( 0, 0), crop=[ 0, 0, -1, -1], cornerRadius=0.000000, isProtected=0, isOpaque=0, invalidate=1, dataspace=Default, defaultPixelFormat=Unknown/None, color=(0.000,0.000,0.000,1.000), flags=0x00000000, tr=[0.00, 0.00][0.00, 0.00]
parent=AppWindowToken{6923ae8 token=Token{1e3dc0b ActivityRecord{44e8fda u0 org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity t126}}}#0
zOrderRelativeOf=none
activeBuffer=[ 0x 0: 0,Unknown/None], tr=[0.00, 0.00][0.00, 0.00] queued-frames=0, mRefreshPending=0, metadata={}
+ ContainerLayer (Stack=3#0)
Region TransparentRegion (this=0 count=0)
Region VisibleRegion (this=0 count=0)
Region SurfaceDamageRegion (this=0 count=0)
layerStack= 0, z= 11, pos=(0,0), size=( 0, 0), crop=[ 0, 0, 1440, 3120], cornerRadius=0.000000, isProtected=0, isOpaque=0, invalidate=1, dataspace=Default, defaultPixelFormat=Unknown/None, color=(0.000,0.000,0.000,1.000), flags=0x00000000, tr=[0.00, 0.00][0.00, 0.00]
parent=com.android.server.wm.DisplayContent$TaskStackContainers@8d65252#0
zOrderRelativeOf=none
activeBuffer=[ 0x 0: 0,Unknown/None], tr=[0.00, 0.00][0.00, 0.00] queued-frames=0, mRefreshPending=0, metadata={}
+ ColorLayer (animation background stackId=3#0)
Region TransparentRegion (this=0 count=0)
Region VisibleRegion (this=0 count=0)
Region SurfaceDamageRegion (this=0 count=0)
layerStack= 0, z= 0, pos=(0,0), size=( 0, 0), crop=[ 0, 0, -1, -1], cornerRadius=0.000000, isProtected=0, isOpaque=0, invalidate=0, dataspace=Default, defaultPixelFormat=Unknown/None, color=(0.000,0.000,0.000,1.000), flags=0x00000001, tr=[0.00, 0.00][0.00, 0.00]
parent=Stack=3#0
zOrderRelativeOf=none
activeBuffer=[ 0x 0: 0,Unknown/N
mLastNonFullscreenBounds=null
* TaskRecord{7375d40 #126 A=org.kde.kdeconnect_tp U=0 StackId=54 sz=1}
userId=0 effectiveUid=u0a248 mCallingUid=u0a239 mUserSetupComplete=true mCallingPackage=com.teslacoilsw.launcher
affinity=org.kde.kdeconnect_tp
intent={act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity bnds=[305,902][582,1188]}
mActivityComponent=org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity
autoRemoveRecents=false isPersistable=true numFullscreen=1 activityType=1
rootWasReset=true mNeverRelinquishIdentity=true mReuseTask=false mLockTaskAuth=LOCK_TASK_AUTH_PINNABLE
Activities=[ActivityRecord{44e8fda u0 org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity t126}]
askedCompatMode=false inRecents=true isAvailable=true
mRootProcess=ProcessRecord{7a2b90b 4605:org.kde.kdeconnect_tp/u0a248}
stackId=54
hasBeenVisible=true mResizeMode=RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION mSupportsPictureInPicture=false isResizeable=true lastActiveTime=22845842 (inactive for 151s)
mAppSceneMode == 0
* Hist #0: ActivityRecord{44e8fda u0 org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity t126}
packageName=org.kde.kdeconnect_tp processName=org.kde.kdeconnect_tp
launchedFromUid=10239 launchedFromPackage=com.teslacoilsw.launcher userId=0
app=ProcessRecord{7a2b90b 4605:org.kde.kdeconnect_tp/u0a248}
Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity bnds=[305,902][582,1188] }
frontOfTask=true task=TaskRecord{7375d40 #126 A=org.kde.kdeconnect_tp U=0 StackId=54 sz=1}
taskAffinity=org.kde.kdeconnect_tp
mActivityComponent=org.kde.kdeconnect_tp/org.kde.kdeconnect.UserInterface.MainActivity
baseDir=/data/app/org.kde.kdeconnect_tp-tEBa6JTC0biGr3VqJ7PFgQ==/base.apk
dataDir=/data/user/0/org.kde.kdeconnect_tp
stateNotNeeded=false componentSpecified=true mActivityType=standard
compat={560dpi} labelRes=0x0 icon=0x7f08009b theme=0x7f1000cb
mLastReportedConfigurations:
app: state=Idle VSyncState={displayId=19260779396743297, count=80325}
pending events (count=0):
connections (count=72):
Connection{0x70ab041460, VSyncRequest::None}
Connection{0x70a9a46be0, VSyncRequest::None}
Connection{0x70a9a463c0, VSyncRequest::None}
Connection{0x70a9a46820, VSyncRequest::None}
Connection{0x70a9a46f00, VSyncRequest::None}
Connection{0x70a9a470e0, VSyncRequest::None}
Connection{0x709e15a1c0, VSyncRequest::None}
Connection{0x70a9a46dc0, VSyncRequest::None}
Connection{0x70a9a47540, VSyncRequest::None}
Connection{0x70a9a47180, VSyncRequest::None}
Connection{0x70a9a472c0, VSyncRequest::None}
Connection{0x70a9a466e0, VSyncRequest::None}
Connection{0x709e15a440, VSyncRequest::None}
Connection{0x709e15a8a0, VSyncRequest::None}
Connection{0x709e15a940, VSyncRequest::None}
Connection{0x70a9a474a0, VSyncRequest::None}
Connection{0x70a9a47d60, VSyncRequest::None}
Connection{0x70a9a47860, VSyncRequest::None}
Connection{0x70a9a47900, VSyncRequest::None}
Connection{0x709e159f40, VSyncRequest::None}
Connection{0x709e159fe0, VSyncRequest::None}
Connection{0x70a9a47ae0, VSyncRequest::None}
Connection{0x70a9a465a0, VSyncRequest::None}
Connection{0x709e15b520, VSyncRequest::None}
Connection{0x709e15b5c0, VSyncRequest::None}
Connection{0x709e15b7a0, VSyncRequest::None}
Connection{0x70a9a486c0, VSyncRequest::None}
Connection{0x709e15b700, VSyncRequest::None}
Connection{0x709e15c420, VSyncRequest::None}
Connection{0x70a9a488a0, VSyncRequest::None}
Connection{0x709e15cb00, VSyncRequest::None}
Connection{0x70a9a47400, VSyncRequest::None}
Connection{0x70a9a48260, VSyncRequest::None}
Connection{0x70a9a48bc0, VSyncRequest::None}
Connection{0x709e15c6a0, VSyncRequest::None}
Connection{0x709e15bc00, VSyncRequest::None}
Connection{0x70a9a49e80, VSyncRequest::None}
Connection{0x70a9a49f20, VSyncRequest::None}
Connection{0x70a9a4a2e0, VSyncRequest::None}
Connection{0x709e15cd80, VSyncRequest::None}
Connection{0x70a9a47cc0, VSyncRequest::None}
Connection{0x70a9a4a740, VSyncRequest::None}
Connection{0x709e1ce460, VSyncRequest::None}
Connection{0x709e15a260, VSyncRequest::None}
Connection{0x70a9a477c0, VSyncRequest::None}
Connection{0x70a9a49980, VSyncRequest::None}
Connection{0x70a9a4a420, VSyncRequest::None}
Connection{0x70a9a4a240, VSyncRequest::None}
Connection{0x709e15cf60, VSyncRequest::None}
Connection{0x709e1ce6e0, VSyncRequest::None}
Connection{0x709e1cf400, VSyncRequest::None}
Connection{0x709e1ce000, VSyncRequest::None}
Connection{0x70a9a48d00, VSyncRequest::None}
Connection{0x70a9a49ac0, VSyncRequest::None}
Connection{0x709e1d0300, VSyncRequest::None}
Connection{0x70a9a4a060, VSyncRequest::None}
Connection{0x70a9a4a380, VSyncRequest::None}
Connection{0x709e1cfc20, VSyncRequest::None}
Connection{0x709e1cefa0, VSyncRequest::None}
Connection{0x70a9a48f80, VSyncRequest::None}
Connection{0x70a9a89820, VSyncRequest::None}
Connection{0x70a9a89a00, VSyncRequest::None}
Connection{0x70a9a8a220, VSyncRequest::None}
Connection{0x70a9a48080, VSyncRequest::None}
Connection{0x70a9a48b20, VSyncRequest::None}
Connection{0x709e1d01c0, VSyncRequest::None}
Connection{0x70a9a49160, VSyncRequest::None}
Connection{0x70a9a498e0, VSyncRequest::None}
Connection{0x70a9a49a20, VSyncRequest::None}
Connection{0x709e15bde0, VSyncRequest::None}
Connection{0x709e1d0940, VSyncRequest::None}
Connection{0x709e1d1160, VSyncRequest::None}
Just formatted some of your comments :) Looking through them now.
Alight thanks I was just copying and pasting. I have no idea how formatting works on here.
11-13 20:10:09.566 4605 4605 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@45f6c7d
There are a few warnings in there about deprecated MediaPlayer use, but it looks to me like this could be the culprit. It's possible that the "intent" which should present the activity might not be working, which is preventing the activity from launching correctly.
In any case, I think it's fair to say this is an issue in kdeconnect-android with Android 10. I'd suggest you open a new bug though, because my reading of the bug you linked to is that it's a different issue than this one. I think that one was related to network communication, where this seems to be a UI issue.
If you add a link to this bug in that one, and post the new bug here, then we can track them both in parallel.
Alright, will do.
Looks like you're going to be the Android 10 canary for this cycle :wink:
Cool, and here is that bug report url:
https://bugs.kde.org/show_bug.cgi?id=414120
I was looking at the FindMyPhonePlugin code, it really does use a lot of deprecated APIs, and more importantly _doesn't_ use a lot of newer ones that are most likely the secret to making it work properly on newer Android builds. That includes requesting WAKE_LOCK permission to hold the screen/CPU awake, and using the new audio focus APIs. It also doesn't ever release() its MediaPlayer, which the API docs make out to be a Very Bad Thingâ„¢.
Soooo, I kind of took a shot at rewriting it. As I wrote in my GitHub PR (which was insta-closed because the KDE mirror there doesn't accept PRs, which is fine as I just wanted to get the code posted somewhere...)
This is an update to the FindMyPhone plugin, attempting to make use of newer APIs to more correctly manage audio playback on newer Android releases. Highlights:
KDE Connect-wide
- Raise
minSdkVersionfrom14to21(To access more recent APIs w/o lots of legacy fallback.)Add
WAKE_LOCKto permissions requested in manifest file.
FindMyPhoneActivityUse
AudioAttributesto replace deprecatedSetAudioStreamType()- Request & manage audio focus, on Android 26+
- Prevent screen / CPU sleep during playback (using
WAKE_LOCK)- Prepare
MediaPlayerasynchronously, andrelease()when doneI'll be honest, I wrote this code working off of API docs and code samples, but I'm not supremely confident that it's all correct. It _compiles_ with no problems, and I built and installed it as an APK on my Android
67 phone, where it worked just the same as the version installed from Google Play.However, running on Android
67 means that most of the newer APIs (including Audio Focus) aren't accessed, and I don't have a newer device to test on. (Trying to run the app in an emulator failed, network-connectivity wise... I ended up with GSConnect trying to pair with _itself_.)So, I'm submitting this in case it might be useful, but I would be surprised if it doesn't need at least some cleanup. It _certainly_ needs testing on newer devices, something I'm unable to do myself.
That APK I built from the code is here on Google Drive, if anyone is brave/foolish enough to download an unsigned APK from an unknown source and install it on their device. (I wouldn't personally recommend it, unless you have a sacrificial device that you don't rely on as your primary means of mobile communication. Of course, I ignored that advice and installed it on mine anyway...)
In my experience, you have to first unpair the device and uninstall the official KDE Connect app, then install the new APK and re-pair. If you don't uninstall KDE Connect the APK will fail to install because they use the same identifier, and if you don't unpair and repair you'll get nothing but "AuthenticationError" messages when the device tries to communicate using the pairing credentials from the previous KDE Connect version.
Your PR looks mostly good to me, although I don't have an Android 10 phone either and my laptop can barely lift Android Studio :P
You should submit your PR to invent.kde.org where someone might be able to test it. They follow the standard fork, branch, merge approach.
You should submit your PR to invent.kde.org where someone might be able to test it. They follow the standard fork, branch, merge approach.
Done. (With a little extra cleanup, in looking at it again I let Android Studio talk me into some pretty sloppy code.)
Is this one still valid, or did the upstream patch fix it?
In my opinion it's fixed
@andyholmes Yes it is fixed.
Most helpful comment
Cool, and here is that bug report url:
https://bugs.kde.org/show_bug.cgi?id=414120