├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 1.png ├── 2.png ├── 202312151943304.png ├── 202312151950429.png ├── 202312151952545.png ├── 202401162356635.png ├── 3.png ├── 4.png ├── photo_2024-08-18_19-46-09.jpg ├── photo_2024-09-14_16-32-25.jpg ├── photo_2024-09-14_16-37-32.jpg └── photo_2024-09-14_16-37-36.jpg ├── redroid.py ├── requirements.txt ├── stuffs ├── gapps.py ├── general.py ├── houdini.py ├── magisk.py ├── ndk.py └── widevine.py └── tools └── helper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/README.md -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/202312151943304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/202312151943304.png -------------------------------------------------------------------------------- /assets/202312151950429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/202312151950429.png -------------------------------------------------------------------------------- /assets/202312151952545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/202312151952545.png -------------------------------------------------------------------------------- /assets/202401162356635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/202401162356635.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/4.png -------------------------------------------------------------------------------- /assets/photo_2024-08-18_19-46-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/photo_2024-08-18_19-46-09.jpg -------------------------------------------------------------------------------- /assets/photo_2024-09-14_16-32-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/photo_2024-09-14_16-32-25.jpg -------------------------------------------------------------------------------- /assets/photo_2024-09-14_16-37-32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/photo_2024-09-14_16-37-32.jpg -------------------------------------------------------------------------------- /assets/photo_2024-09-14_16-37-36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/assets/photo_2024-09-14_16-37-36.jpg -------------------------------------------------------------------------------- /redroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/redroid.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.28.1 2 | tqdm==4.64.1 -------------------------------------------------------------------------------- /stuffs/gapps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/stuffs/gapps.py -------------------------------------------------------------------------------- /stuffs/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/stuffs/general.py -------------------------------------------------------------------------------- /stuffs/houdini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/stuffs/houdini.py -------------------------------------------------------------------------------- /stuffs/magisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/stuffs/magisk.py -------------------------------------------------------------------------------- /stuffs/ndk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/stuffs/ndk.py -------------------------------------------------------------------------------- /stuffs/widevine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/stuffs/widevine.py -------------------------------------------------------------------------------- /tools/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abing7k/redroid-script/HEAD/tools/helper.py --------------------------------------------------------------------------------