Having generated a webapp with the generator, how do I test my click on the device?

The method I use for testing clicks is:-

  1. Make the device accessible over adb using System Settings → About this phone → Developer Mode → Switch on.

  2. Attach the device via a USB cable

  3. Use adb to push the click package to the device

    adb push /path/to/your.click /tmp
    
  4. Use adb to install the click package

    adb shell pkcon install-local --allow-untrusted /tmp/your.click
    
  5. Pull down in the app scope to see the icon for your application appear