Calling External Service

qsrtech

Active Member
Licensed User
Longtime User
I'm having trouble wrapping my head around how to start my external service (i.e. print service). Getting an error "can not start service...permision".

I've added this to my manifest in my "external service"

B4X:
SetReceiverAttribute(PrintService, android:exported, "true")
SetReceiverAttribute(PrintService, android.Permission, "$PACKAGE$.permission.printservice")
SetReceiverAttribute(PrintService, android.ProtectionLevel, "signature")

Can't figure out what else to do, assuming the above is even correct.

Any help?
 
Top