Add background process for checking new data and create notifications

This commit is contained in:
2019-09-13 21:02:54 +02:00
committed by Matte23
parent b4d8fb3c77
commit 1b57df88d3
6 changed files with 174 additions and 0 deletions

View File

@@ -20,6 +20,11 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".BootCompleteReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>