Back to project page SimpleMediaScanner.
The source code is released under:
MIT License
If you think the Android project SimpleMediaScanner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package jp.gr.java_conf.neko_daisuki.simplemediascanner; // w ww .jav a2 s . co m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class MainReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { PeriodicalUtil.schedule(context, Util.readDatabase(context)); } }