72 lines
2.1 KiB
TOML
72 lines
2.1 KiB
TOML
# 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"
|
|
|
|
# --- Codeberg Releases ---
|
|
# The URL points to the Codeberg repository.
|
|
|
|
# [[apps]]
|
|
# name = "CoMaps"
|
|
# source = "codeberg"
|
|
# package = "app.comaps"
|
|
# url = "https://codeberg.org/comaps/comaps"
|
|
# asset_pattern = "^CoMaps-.*-main-release\\.apk$"
|
|
|
|
# [[apps]]
|
|
# name = "Fedilab"
|
|
# source = "codeberg"
|
|
# package = "app.fedilab.android"
|
|
# url = "https://codeberg.org/tom79/Fedilab"
|
|
# asset_pattern = "^Fedilab-Google-.*\\.apk$"
|
|
|
|
# --- Generic HTTPS page or directory ---
|
|
# Follow anchor links through directories, then select exactly one APK.
|
|
# intermediate_patterns are optional and applied in order to URL path components.
|
|
|
|
# [[apps]]
|
|
# name = "Firefox"
|
|
# source = "generic"
|
|
# package = "org.mozilla.firefox"
|
|
# url = "https://download.example.org/releases/"
|
|
# intermediate_patterns = ["(?:[0-9]+\\.)+[0-9]+/$", "android/$"]
|
|
# asset_pattern = "^firefox-.*\\.apk$"
|
|
# headers = { Accept = "text/html" }
|
|
# sha256 = "0000000000000000000000000000000000000000000000000000000000000000"
|