Refresh button in library is now looking for new chapters in sources and notifying the user

This commit is contained in:
inorichi
2015-11-02 17:25:06 +01:00
parent faef785fc3
commit 04dfdba0b7
12 changed files with 301 additions and 6 deletions

View File

@@ -42,6 +42,17 @@
android:label="@string/title_activity_settings"
android:parentActivityName=".ui.activity.MainActivity" >
</activity>
<service android:name=".data.services.LibraryUpdateService"
android:exported="false"/>
<receiver
android:name=".data.services.LibraryUpdateService$SyncOnConnectionAvailable"
android:enabled="false">
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
</application>
</manifest>