Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to unlock android phone through code remotely

Tags:

android

I have written an application that locks android phone remotely. That is when a special code is sent from server then application locks the phone based on the special code. This is the code I am using.

if (!mDPM.isAdminActive(mDeviceAdminSample)) {
        // try to become active – must happen here in this activity, to get result
        Intent intent = new Intent(DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN);
        intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN,mDeviceAdminSample);
        intent.putExtra(DevicePolicyManager.EXTRA_ADD_EXPLANATION,"Admin is added to do security operation.");
        startActivityForResult(intent, 0);
        } else {
        // Already is a device administrator, can do security operations now.
        mDPM.lockNow();
        }

The above code is working and it's locking the phone.

I am able to unlock the phone by entering password from soft keypad. Is there any way to unlock it through code?

My question is how to unlock the phone through code.(This unlocking should be done remotely in the manner I explained for locking)

like image 322
kehnar Avatar asked Aug 14 '12 11:08

kehnar


People also ask

Can you unlock Android remotely?

There are several ways to remote unlock Android when you can't get past the lock screen. To gain access to your Android, either reset your PIN or password remotely, root your phone to change its settings, or reset the phone.

What is the master code to unlock all Android phone?

What Is The Secret Code To Unlock Android Phone Password? The secret code to unlock Android phone is *#*#7780#*#* and is also known as Android reset code. With the help of this code, you can unlock your Android phone if you forget your PIN.

How do I remotely unlock another device?

To enable “Remote Unlock” feature please follow the steps listed below: Navigate to app screen > Tap Settings > Tap Biometrics and security > Select Find My Mobile > Select Remote unlock.


2 Answers

I believe you cannot override the built-in screen-lock unless you make your own device like Samsung and HTC do. However, by having your customers use your own screen-lock-like app you probably can achieve what you are trying to do.

like image 176
IdleSun Avatar answered Oct 12 '22 23:10

IdleSun


I do not think your remote unlock goal is achievable.

The way Android is set up, is that many apps may have Device Administrator privilege, and any Device Administrator can issue a lock command, but the unlock has to come from the user.

I can suggest one thing you to simplify this: Your app could try to remove the key lock password, and then the user can use the device without a code simply by sliding a finger on the screen.

Now there is a snag in what I suggested, if your app is not the only device administrator. In that case, some other administrator app could set a minimum password length (or some other password restriction) which would prevent your app from clearing the screen lock password.

If your goal is to help a user that forgot his/her screen lock password, then your server could invent a new password, inform the user what the new password is, and also send the new password to your app and your app could apply the password. The user can then unlock the phone. Do not worry, it is not as complicated as it sounds.

like image 5
gabriel Avatar answered Oct 12 '22 22:10

gabriel