├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── StevenBlock.zip ├── changelog.md ├── customize.sh ├── hosts ├── energized_blu_hosts ├── energized_spark_hosts ├── energized_ultimate_hosts └── stevenblack_hosts ├── module.prop ├── service.sh ├── uninstall.sh └── update.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/README.md -------------------------------------------------------------------------------- /StevenBlock.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/StevenBlock.zip -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/changelog.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/customize.sh -------------------------------------------------------------------------------- /hosts/energized_blu_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/hosts/energized_blu_hosts -------------------------------------------------------------------------------- /hosts/energized_spark_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/hosts/energized_spark_hosts -------------------------------------------------------------------------------- /hosts/energized_ultimate_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/hosts/energized_ultimate_hosts -------------------------------------------------------------------------------- /hosts/stevenblack_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/hosts/stevenblack_hosts -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/module.prop -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/service.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | 3 | rm -f "/data/local/tmp/stevenblock.log" 2>/dev/null -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikropsoft/StevenBlock/HEAD/update.json --------------------------------------------------------------------------------