We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's a streamlined process to ensure you get everything right:
Clone the Repository on Your Laptop:
git clone https://github.com/theappbusiness/android-proxy-toggle.git cd android-proxy-toggle
Find the APK:
proxy-toggle.apk
Connect Your Android Device:
Settings > Developer options > USB debugging
Install the APK:
adb install -t -r proxy-toggle.apk
Grant Permissions:
adb shell pm grant com.kinandcarta.create.proxytoggle android.permission.WRITE_SECURE_SETTINGS
Alternatively, you can use the provided script to install the APK and grant permissions in one go:
android-proxy-toggle
./installAndGrantPermission.sh
This script will handle both the installation and the permission granting.
This should ensure the android-proxy-toggle app is properly installed and configured on your phone.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here's a streamlined process to ensure you get everything right:
Clone the Repository on Your Laptop:
git clone https://github.com/theappbusiness/android-proxy-toggle.git cd android-proxy-toggle
Find the APK:
proxy-toggle.apk
file is already in the cloned repository. You don't need to download it separately.Connect Your Android Device:
Settings > Developer options > USB debugging
.Install the APK:
proxy-toggle.apk
is located (it should be in the root of the cloned repository).Grant Permissions:
Alternatively, you can use the provided script to install the APK and grant permissions in one go:
android-proxy-toggle
directory on your laptop, run:This script will handle both the installation and the permission granting.
Summary
adb install -t -r proxy-toggle.apk
.adb shell pm grant com.kinandcarta.create.proxytoggle android.permission.WRITE_SECURE_SETTINGS
../installAndGrantPermission.sh
script to do both steps automatically.This should ensure the
android-proxy-toggle
app is properly installed and configured on your phone.The text was updated successfully, but these errors were encountered: