{ "id": "64107", "key": "TIMOB-3475", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [], "resolution": { "id": "10000", "description": "", "name": "Done" }, "resolutiondate": "2020-03-11T02:52:24.000+0000", "created": "2011-04-15T03:45:40.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "android", "feature", "manifest", "rplist", "tbs-1.8.0" ], "versions": [], "issuelinks": [], "assignee": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2020-03-11T02:52:24.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10202", "name": "Android", "description": "Android Platform" } ], "description": "{html}
Feature Request
\r\nCustomers would like to implement ACTION_BOOT_COMPLETED for\r\ntheir app which requires receivers in the AndroidManifest.xml.\r\nSpecifically .OnBootReceiverService.
\r\nTest Code
\r\n\r\n<receiver android:name=\".OnBootReceiverService\" android:enabled=\"true\" android:exported=\"false\" android:label=\"OnBootReceiverService\">\r\n<intent-filter>\r\n <action android:name=\"android.intent.action.BOOT_COMPLETED\"/>\r\n </intent-filter>\r\n</receiver>\r\n<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>
\r\n
\r\nReference Ticket
\r\nIf they do a hybrid app and provide a java class as the boot\nreceiver that then fires an intent to their Titanium app, they\nshould be able to do this now.