I'm trying to add a homescreen item that will allow me to import Honeywell XML's.
But I can't seem to figure out what intent I need to write for it to work.
I figured out that the package is: com.honeywell.tools.persist
And the service its using is: com.honeywell.persist.action.START_PERSIST_SERVICE
This should initiate the service thats automaticly started at a reboot.
I have tried the following:
intent:#intent;action=com.honeywell.persist.action.START_PERSIST_SERVICE;end
launch://com.honeywell.tools.persist/com.honeywell.persist.action.START_PERSIST_SERVICE
And I also tried a method that I already knew from sendintent -b, which I accosionally use in package scripting:
intent:#Intent;action=com.honeywell.ezconfig.intent.action.IMPORT_XML;S.path=/sdcard/honeywell/persist/DataCollectionService.xml;launchFlags=0x1400020;end
But it always returns: Activity not found.