Questions tagged [unlock]

When a device is locked, it needs to be "reactivated" in order to use it. This unlock is normally obtained by pressing a button and/or swiping a finger across the screen.

When a device is locked, it needs to be "reactivated" in order to use it. This unlock is normally obtained by pressing a button and/or swiping a finger across the screen.

240 questions
0
votes
2 answers

Can I set an application to launch everytime iOS device is unlocked?

Is it possible to set a certain iOS app (with whatever necessary user permissions) to launch automatically each time the phone is unlocked?
Lomuscio
  • 1
  • 1
0
votes
2 answers

Unlock file after program executing

When i started my c# program i can not delete executing file. How can i just unlock my assembly after executing and give to user possibility to delete my file? Maybe copy assembly to other place and then execute it? But i think it's not better way.
Neir0
  • 12,849
  • 28
  • 83
  • 139
0
votes
0 answers

Lockscreen pattern implementation in QML

I'm looking to implement a lockscreen pattern that can be used to uncover additional settings. For this, I have generated a 3x3 grid of RoundButtons using a Repeater as shown below: Grid { anchors.centerIn: parent spacing: 10 columns: 3 rows: 3 …
Mohammad Ali
  • 117
  • 5
0
votes
0 answers

Flutter timer stops when screen is locked

I have a Flutter application that has a timer using it to implement countdown. When the screen is locked by itself it when it is locked by itself, the timer stops until I unlock the device again. Is there any solution for this?
0
votes
0 answers

Redisson where is the waitForUnlock method?

As title, may I know do the waitForUnlock method exist Redisson? I search though internet and check the method one by one seem no method suit my use case. Below is the code how I make it. Do we have better option or I miss out something?…
karfai
  • 816
  • 1
  • 10
  • 21
0
votes
1 answer

How to unlock a Netezza database after restore?

We are performing a production upgrade soon. I want to do a restore of the current backups onto the Disaster Recovery system, but leave the databases locked so that the incrementals can be applied quickly if needed. If no incremental is produced…
JerseyMike
  • 849
  • 7
  • 22
0
votes
0 answers

How to implement payment gateway in Android kotlin and unlock the contact after payment successfull

I have got my first project on fiverr and it's 80% completed The only thing left is implement payment gateway and when payment is done unlock the address and contact of person who has posted the ad Basically its a room rental app where specific…
0
votes
1 answer

Android Studio AdRequest on screen unlock causes app ui freeze

I have looked all over the internet and have not found a page that quite matches the behavior I'm seeing nor how to replicate it on command. I'm using admob with my app and have a function that is called in onCreate() which runs the following…
0
votes
2 answers

Fastboot oem: command failed

I wanted to install a custom rom on my Xiaomi Mi A3, so I had to install the twrp. I enabled oem unlock from the developer settings of the phone and rebooted into bootloader mode, but when I ran the command "fastboot oem unlock" it gave me as a…
0
votes
0 answers

How to connect Samsung galaxy S9 plus to internet while phone is locked and notification bar is also locked and I have forgotten pattern lock

I have forgotten my phone's pattern lock now in order to unlock it there is one option I know is by using Samsung account I can unlock it but unfortunately my phone's notification bar is locked and phone's ADB debugging is also off, so how can I…
0
votes
2 answers

Unlock an Oracle user with a batch file

Is there a way I can write a code into a batch file that will unlock a specific account in the specified database?
Mikayil Abdullayev
  • 12,117
  • 26
  • 122
  • 206
0
votes
0 answers

How to see why Event ID 4800/4801 are logging

Hey guys so I was having trouble understanding why the lock/unlocks are being logged on a computer. I checked the gpedit for "Audit Other Logon/Logoff Events" and see it as "Not configured" and another computer is "Configured" but with…
Jim
  • 1
0
votes
0 answers

Using C#, how does one figure out what process locked a folder?

I am working with some locked files and folders which should be removed. Currently I am using this code with Restart Manager to check what process locks a file below, however it would throw an error when I set the file path as a folder path. May I…
SuperBerry
  • 1,193
  • 1
  • 12
  • 28
0
votes
0 answers

Java lock section been executed while another thread is using the lock

public class LockExample { public static void main(String[] args) { SharedResource sharedResource = new SharedResource(); Thread A = new Thread(()->{for(int i = 0; i < 10; i++)sharedResource.print5();},"A"); Thread B = new…
0
votes
1 answer

Android : Access functionality of FaceManager like FingerprintManager

How to implement an acess class for FaceManager service like FingerprintManagerCompat in fingerprint? direct acess give this error: error: package android.hardware.face does not exist import android.hardware.face.FaceManager; …
freek
  • 1
  • 1