- If you have any questions/comments, please visit Pico Developer Answers and raise your question there.
Note: Regarding JAR file creation and usage, please refer to the Guideline
Add permission
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
android:name = "com.example.bootcomplete.MainActivity"
<receiver android:name="com.example.bootcomplete.BootReceiver" >
<intent-filter android:priority="1000">
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
Note: it is required to run the application before next device boot-up