You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
4
+
5
+
## Supports Downloading from:
6
+
7
+
- Github releases
8
+
- F-Droid
9
+
- PlayStore
10
+
11
+
## Usage
12
+
13
+
1. Fork And Edit config.yaml and choose addtional addons
14
+
2. Start Github Action Manually
15
+
16
+
### APK Install Guide
17
+
18
+
<details>
19
+
<summary><b>Expand</h3></summary>
20
+
21
+
Extract tarball to folder `pakages`
22
+
23
+
```bash
24
+
tar -xvf pakages.tar.gz && rm pakages.tar.gz
25
+
```
26
+
27
+
### Termux
28
+
29
+
**Note:** Use Latest [Termux from F-Droid](https://f-droid.org/en/packages/com.termux/)
30
+
31
+
- Root
32
+
33
+
```bash
34
+
forappin pakages/*.apk;do
35
+
pm install $app
36
+
done
37
+
```
38
+
39
+
- Non-root
40
+
41
+
```bash
42
+
forappin pakages/*.apk;do
43
+
termux-open $app
44
+
sleep(8)
45
+
done
46
+
```
47
+
48
+
### ADB
49
+
50
+
Go to ADB folder, connect your phone and run the below commands in the terminal
0 commit comments