Add ADB APK sideload tool

This commit is contained in:
2026-07-28 23:23:51 +02:00
commit 16e9eebc3d
7 changed files with 1901 additions and 0 deletions

40
config.example.toml Normal file
View File

@@ -0,0 +1,40 @@
# Cache directory (default: ~/.cache/adb-sideload)
[cache]
directory = "~/.cache/adb-sideload-free-apps"
# Optional: custom ADB binary path
[adb]
# binary = "adb"
# mode = "auto" # auto, usb, or wifi
# address = "192.168.1.42:5555" # required for mode = "wifi"
# ── Apps ──────────────────────────────────────────────────────────────────────
# Each app needs: name, package, source and url.
# --- F-Droid ---
# Required extra fields: repo_url
[[apps]]
name = "Fennec F-Droid"
source = "fdroid"
package = "org.mozilla.fennec_fdroid"
url = "https://f-droid.org/packages/org.mozilla.fennec_fdroid/"
# --- GitHub Releases ---
# The URL points to the GitHub repository.
# [[apps]]
# name = "NewPipe"
# source = "github"
# package = "org.schabi.newpipe"
# url = "https://github.com/TeamNewPipe/NewPipe"
# asset_pattern = ".*universal.*\\.apk$"
# --- GitLab Releases ---
# The URL points to the GitLab project.
# [[apps]]
# name = "Aurora Store"
# source = "gitlab"
# package = "com.aurora.store"
# url = "https://gitlab.com/AuroraOSS/AuroraStore"