Skip to content

Latest commit

 

History

History
69 lines (47 loc) · 1.07 KB

README.md

File metadata and controls

69 lines (47 loc) · 1.07 KB

XAPPS v2

Uses github action to fetch and download latest apk from config.yaml and then packs it into pakages.tar.gz that can be easily extracted and installed via root or ADB

Supports Downloading from:

  • Github releases
  • F-Droid
  • PlayStore

Usage

  1. Fork And Edit config.yaml and choose addtional addons
  2. Start Github Action Manually

APK Install Guide

Expand

Extract tarball to folder pakages

tar -xvf pakages.tar.gz && rm pakages.tar.gz

Termux

Note: Use Latest Termux from F-Droid

  • Root
for app in pakages/*.apk; do
  pm install $app
done
  • Non-root
for app in pakages/*.apk; do
  termux-open $app
  sleep(8)
done

ADB

Go to ADB folder, connect your phone and run the below commands in the terminal

Powershell

Get-ChildItem "pakages/" -Filter *.apk |
Foreach-Object {
    adb install -r $_.FullName
}

Bash

for app in pakages/*.apk; do
  adb install -r $app
done