Back to project page RingMyPhoneAndroid.
The source code is released under:
MIT License
If you think the Android project RingMyPhoneAndroid 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 com.darkrockstudios.apps.ringmyphone; //from w w w .j a va 2s . co m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class UpgradeReceiver extends BroadcastReceiver { @Override public void onReceive(final Context context, final Intent intent) { BillingSecurity.updateInstallDate(context); } }