├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── codeql.yml ├── .markdownlint.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android.svg ├── check.sh ├── check_manually.sh ├── ensure_sorted.py ├── index.html └── tutorials └── Install-Rooted-OTA.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/README.md -------------------------------------------------------------------------------- /android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/android.svg -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/check.sh -------------------------------------------------------------------------------- /check_manually.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/check_manually.sh -------------------------------------------------------------------------------- /ensure_sorted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/ensure_sorted.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/index.html -------------------------------------------------------------------------------- /tutorials/Install-Rooted-OTA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offa/android-foss/HEAD/tutorials/Install-Rooted-OTA.md --------------------------------------------------------------------------------