Step
1: Prepare Your Device for First-Time Setup
After installing App Freezer, please complete the following steps temporarily. You can restore everything after setup is finished.

These steps are required by Android to allow device management configuration via ADB.
Step
2: Install ADB Tool on Your Computer
ADB (Android Debug Bridge) is a standard Android development tool that allows your computer to communicate with your device over USB.
Window OS:
cd C:\Program Files (x86)\Minimal
ADB and Fastboot

MAC & Linux OS:
cd ~/Downloads/adb-tool

Step
3: Enable USB Debugging on Your Phone
When connecting your phone to the computer, you will see a prompt:

Verify ADB Connection
Connect your phone (only one device at a time) and run:
Window OS:
adb devices

MAC & Linux OS:
./adb devices

If your device appears in the list, ADB is working correctly. If not, make sure the correct USB drivers are installed.
Step
4: Configure App Freezer via ADB
Run one of the following commands:
Window OS:
adb shell dpm
set-device-owner com.wakasoftware.appfreezer/.receiver.DPMReceiver
or
adb shell dpm
set-profile-owner com.wakasoftware.appfreezer/.receiver.DPMReceiver

MAC & Linux OS:
./adb shell dpm
set-device-owner com.wakasoftware.appfreezer/.receiver.DPMReceiver
or
./adb shell dpm
set-profile-owner com.wakasoftware.appfreezer/.receiver.DPMReceiver

If the command completes without errors, the setup was successful.


Note:


Step
5: Restart and Restore Your Settings
You can now use App Freezer without root access.
How to
Uninstall App Freezer
Option 1: From the App

Option 2: Using ADB
Run the following commands:
Window OS:
adb shell dpm
remove-active-admin com.wakasoftware.appfreezer/.receiver.DPMReceiver
adb shell pm uninstall com.wakasoftware.appfreezer
MAC & Linux OS:
./adb shell dpm
remove-active-admin com.wakasoftware.appfreezer/.receiver.DPMReceiver
./adb shell pm uninstall com.wakasoftware.appfreezer
Thank you!