Skip to content

sh-himanshu/xapps2

 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.8%
  • Shell 4.2%