Back to project page devoxx-2013-android-app-security.
The source code is released under:
Apache License
If you think the Android project devoxx-2013-android-app-security 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 be.idamf.android.tamperdetection.task; // w w w . j a va2 s .co m import android.os.AsyncTask; import be.idamf.android.tamperdetection.ui.RootCheckFragment; /** * Root detector AsyncTask. */ public abstract class RootDetector extends AsyncTask<Void, Void, Boolean> { protected RootCheckFragment mCallbackFragment; public RootDetector(final RootCheckFragment fragment) { mCallbackFragment = fragment; } public void setCallbackFragment(RootCheckFragment callbackFragment) { mCallbackFragment = callbackFragment; } public RootCheckFragment getCallbackFragment() { return mCallbackFragment; } }