Sathvik Rao Poladi
Sathvik Rao Poladi
can you share the output once again ``` adb shell dumpsys package com.clipcascade | grep -i permission ```
Okay, the permissions look good, but if you don't see keyword 'Background activity start for com.clipcascade' in logcat when text is copied, then Samsung may have some restrictions in place.
Did you find this in your log: `ClipboardService: ClipCascade pasted from your clipboard` Before that, can you check if ClipCascade has permission to display over other apps in your settings
I will try to emulate it on Samsung device and will let you know if any further steps are needed.
Hi @archef2000, I tested on **Samsung Galaxy S20 Ultra (Android 12)** and **Samsung Galaxy S24+ (Android 14)** using the official testing page here: [Samsung Remote Test Lab](https://developer.samsung.com/remotetestlab/devices). It is working.
Glad to hear that!
``` # get all headers i = 1 while lines[i] != "": # get key, value from raw header (key, value) = lines[i].split(":", 1) headers[key] = value i += 1...