Back to project page nfcunlocker.
The source code is released under:
Apache License
If you think the Android project nfcunlocker 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.steelrat.nfcunlocker.helpers; /* w ww . jav a 2 s. c o m*/ import android.app.admin.DeviceAdminReceiver; import android.content.Context; import android.content.Intent; public class AppDeviceAdminReceiver extends DeviceAdminReceiver { @Override public void onEnabled(Context context, Intent intent) { super.onEnabled(context, intent); } @Override public void onDisabled(Context context, Intent intent) { super.onDisabled(context, intent); } }