Using Android Platform Tools and ADB, you can disable access to the paste function on the PanatrackerGP Application.
- Install Android Platform Tools
- Enable Developer Options and Debugging on the Android Device
- go to Settings > System > About phone and tap “Build number” seven times to enable developer options.
- In the new ‘Developer Options’ menu Enable USB Debugging
- Connect the device to your PC with Android Platform Tools via USB
- Accept the Prompt to Allow USB Debugging
- Launch the ADB Tool
- Locate the Android Platform tools folder, hold SHIFT + Right Click, select ‘Open Powershell Window Here’
- Disable Clipboard Access for the PanatrackerGP Application – ⚠️Important: Capitalization matters. Enter commands exactly as shown.
- Enter the following command to confirm device is communicating with ADB
- ./adb devices
- The Result will show a device (1)
- ./adb devices
- Enter this command to open ADB Shell
- ./adb shell
- Enter the following command disable Clipboard Read Access for the PanatrackerGP Application (2)
- cmd appops set com.panatrackergp READ_CLIPBOARD ignore
- Check to confirm function disabled with the following command and confirm that com.panatrackergp is returned as a result (3)
- cmd appops query-op –user 0 READ_CLIPBOARD ignore
- Enter the following command to confirm device is communicating with ADB
