├── !Src ├── !Todo │ └── Meta │ │ └── VersionDocumentation2022 │ │ ├── README.txt │ │ ├── README_V1.txt │ │ └── README_V2.txt ├── 10.X │ └── 10.0 │ │ └── Editions │ │ ├── DeGoogled │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── 11.x │ └── 11.0 │ │ ├── APPLICATIONS │ │ └── F-Droid │ │ │ └── com.android.f-droid.apk.urll │ │ ├── BOOTLOADER │ │ ├── CREDITS.md │ │ ├── OldVersions │ │ │ ├── APP │ │ │ │ ├── app2_V1.c │ │ │ │ ├── app2_V1.ld │ │ │ │ ├── app_V1.c │ │ │ │ └── app_V1.ld │ │ │ ├── BOOTLOADER │ │ │ │ ├── booloader_V1.c │ │ │ │ ├── boootloader_V1.c │ │ │ │ ├── bootloader_V1.ld │ │ │ │ └── mpu_bootloader_V1.c │ │ │ ├── CREDITS │ │ │ │ └── CREDITS_V1.md │ │ │ ├── MEMORY_MAP │ │ │ │ ├── memory_map2_V1.ld │ │ │ │ ├── memory_map3_V1.ld │ │ │ │ ├── memory_map_V1.h │ │ │ │ └── memory_map_V1.ld │ │ │ ├── Makefile │ │ │ │ ├── cat-make_V1.mk │ │ │ │ └── makefile_V1.mk │ │ │ ├── SHARED_MEMORY │ │ │ │ ├── shared_V1.c │ │ │ │ └── shared_V1.h │ │ │ └── STARTUP │ │ │ │ └── startup_samd21_V1.c │ │ ├── app.c │ │ ├── app.ld │ │ ├── app2.c │ │ ├── app2.ld │ │ ├── booloader.c │ │ ├── boootloader.c │ │ ├── bootloader.c │ │ ├── bootloader.ld │ │ ├── cat-make.mk │ │ ├── makefile.mk │ │ ├── memory_map.h │ │ ├── memory_map.ld │ │ ├── memory_map2.ld │ │ ├── memory_map3.ld │ │ ├── mpu_bootloader.c │ │ ├── shared.c │ │ ├── shared.h │ │ └── startup_samd21.c │ │ └── Editions │ │ ├── DeGoogled │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── 12.x │ ├── 12.0 │ │ └── Editions │ │ │ ├── DeGoogled │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── Heavy │ │ │ ├── !OldVersions │ │ │ │ └── README │ │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── LiveCD │ │ │ ├── !OldVersions │ │ │ │ └── README │ │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ └── Vanilla │ │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ │ └── README.md │ └── 12.1 │ │ └── Editions │ │ ├── DeGoogled │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── 13.x │ └── 13.0 │ │ └── Editions │ │ ├── DeGoogled │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── 5.x │ ├── 5.0 │ │ └── Editions │ │ │ ├── DeGoogled │ │ │ ├── !OldVersions │ │ │ │ └── README │ │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── Heavy │ │ │ ├── !OldVersions │ │ │ │ └── README │ │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── LiveCD │ │ │ ├── !OldVersions │ │ │ │ └── README │ │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ └── Vanilla │ │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ │ └── README.md │ └── 5.1 │ │ └── Editions │ │ ├── DeGoogled │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── 6.x │ ├── 6.0 │ │ ├── DeGoogled │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Editions │ │ │ ├── DeGoogled │ │ │ │ ├── OldVersions │ │ │ │ │ └── English │ │ │ │ │ │ └── USA │ │ │ │ │ │ └── README_V1.md │ │ │ │ └── README.md │ │ │ ├── Heavy │ │ │ │ ├── OldVersions │ │ │ │ │ └── English │ │ │ │ │ │ └── USA │ │ │ │ │ │ └── README_V1.md │ │ │ │ └── README.md │ │ │ ├── LiveCD │ │ │ │ ├── OldVersions │ │ │ │ │ └── English │ │ │ │ │ │ └── USA │ │ │ │ │ │ └── README_V1.md │ │ │ │ └── README.md │ │ │ └── Vanilla │ │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ │ └── README.md │ │ ├── Heavy │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── LiveCD │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ └── Vanilla │ │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ │ └── README.md │ └── 6.1 │ │ └── Editions │ │ ├── DeGoogled │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── 7.x │ ├── 7.0 │ │ └── Editions │ │ │ ├── DeGoogled │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── Heavy │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── LiveCD │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ └── Vanilla │ │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ │ └── README.md │ └── 7.1 │ │ └── Editions │ │ ├── DeGoogled │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── 8.x │ ├── 8.0 │ │ └── Editions │ │ │ ├── DeGoogled │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── Heavy │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ ├── LiveCD │ │ │ ├── OldVersions │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ │ └── Vanilla │ │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ │ └── README.md │ └── 8.1 │ │ └── Editions │ │ ├── DeGoogled │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Heavy │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── LiveCD │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── Vanilla │ │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md └── 9.x │ └── 9.0 │ └── Editions │ ├── DeGoogled │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ └── README.md │ ├── Heavy │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ └── README.md │ ├── LiveCD │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ └── README.md │ └── Vanilla │ ├── OldVersions │ └── README_V1.md │ └── README.md ├── .editorconfig ├── .gitattributes ├── .github ├── .FUNDING.yaml ├── .FUNDING.yml ├── .github_README.md ├── .github_README_V1.md ├── CODEOWNERS ├── Discussions │ ├── 1 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URLL │ │ │ └── LINK.urll │ ├── README.md │ └── README_V1.md ├── Funding │ ├── OldVersions │ │ ├── FUNDING_V1.yaml │ │ ├── FUNDING_V1.yml │ │ └── README.yml │ ├── README.md │ └── README_V1.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── README.txt │ ├── config.yml │ ├── issue-template.yml │ └── miscellaneous.yml ├── Issues │ ├── GitHub_Default_IssueLabels.yaml │ ├── README.md │ └── README_V1.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── README.txt │ └── pull_request_template.md ├── Pull_Requests │ ├── OldVersions │ │ └── English │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ └── README_V1.md │ └── README.md ├── Security │ ├── OldVersions │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ └── SECURITY_V1.md │ └── README.md ├── SocialPreview │ ├── Android_x64_Project_1080pWallpaper_V1_HighCompression.png │ ├── README.md │ ├── README_V1.md │ └── Unused │ │ ├── AndroidTemplate_1080pWallpaper_V1_HighCompression.png │ │ └── repository-open-graph-template.png ├── pull_request_template.md ├── workflowArchives │ ├── Android │ │ └── android_V1.yml │ ├── Automation │ │ └── Greetings │ │ │ └── greetings_V1.yml │ ├── C-CPP │ │ └── c-cpp_V1.yml │ ├── CMake │ │ └── cmake_V1.yml │ ├── CodeQL │ │ └── Analysis │ │ │ └── codeql-analysis_V1.yml │ ├── GitHub-Pages │ │ ├── Jekyll │ │ │ ├── jekyll-gh-pages_V1.yml │ │ │ └── jekyll_V1.yml │ │ └── Static-HTML │ │ │ └── github-pages-static-html_V1.yml │ ├── Java │ │ ├── Ant │ │ │ └── java-ant_V1.yml │ │ ├── Gradle │ │ │ ├── Publish │ │ │ │ └── java-gradle-publish_V1.yml │ │ │ └── java-gradle_V1.yml │ │ └── Maven │ │ │ ├── Publish │ │ │ └── java-maven-publish_V1.yml │ │ │ └── java-maven_V1.yml │ ├── Linting │ │ ├── Super-linter │ │ │ └── super-linter_V1.yml │ │ └── YAML │ │ │ └── yaml-lint_V1.yml │ ├── MSBuild │ │ └── msbuild_V1.yml │ └── Makefile │ │ └── makefile_V1.yml └── workflows │ ├── android.yml │ ├── c-cpp.yml │ ├── cmake.yml │ ├── codeql-analysis.yml │ ├── github-pages-static-html.yml │ ├── greetings.yml │ ├── java-ant.yml │ ├── java-gradle-publish.yml │ ├── java-gradle.yml │ ├── java-maven-publish.yml │ ├── java-maven.yml │ ├── jekyll-gh-pages.yml │ ├── jekyll.yml │ ├── makefile.yml │ ├── msbuild.yml │ ├── super-linter.yml │ └── yaml-lint.yml ├── .gitignore ├── .gitlab └── GitLab_icon.svg ├── 404.html ├── 404.jpeg ├── 404.md ├── AUTHORS ├── AUTHORS.md ├── AUTOMATE2001.yaml ├── AUTOMATE2001.yml ├── Android-x64_REPOLIST.urll ├── Android_Logo_HighDetail.png ├── CITATION.cff ├── CONTRIBUTING.md ├── COPYINGL ├── CREDITS ├── CREDITS.wiki ├── DRM-free_label.en.svg ├── Docs ├── !OldVersions │ └── README │ │ └── English │ │ └── USA │ │ └── 1 │ │ └── 1-100 │ │ └── README_V1.md ├── Editions │ ├── DeGoogled │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ ├── Heavy │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ ├── LiveCD │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ └── Vanilla │ │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ ├── Possible-problems │ │ └── Android-15 │ │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ └── README.md ├── Frameworks │ └── Candroid │ │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md ├── README.md ├── Related-Projects │ └── Android-x86 │ │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ ├── Android-x86.png │ │ └── README.md ├── Workspaces │ └── Firefox │ │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ └── README.md └── pull_request_template.md ├── Graphics ├── Android-x64 │ └── Banner │ │ └── 1080p │ │ └── PNG │ │ └── Android_x64_Project_1080pWallpaper_V1_HighCompression.png ├── Android-x86 │ └── Logo │ │ └── PNG │ │ └── Android-x86.png ├── Candroid │ └── Logo │ │ └── PNG │ │ └── Candroid.png ├── Google │ └── Android │ │ ├── 9 │ │ └── SVG │ │ │ └── Android_P_logo.svg │ │ ├── 10 │ │ └── SVG │ │ │ └── AndroidQlogo.svg │ │ ├── 11 │ │ └── SVG │ │ │ └── Android_11_Developer_Preview_logo.svg │ │ ├── 12 │ │ └── SVG │ │ │ └── Android_12_Developer_Preview_logo.svg │ │ ├── 13 │ │ └── SVG │ │ │ └── Android_13_Developer_Preview_logo.svg │ │ ├── 14 │ │ ├── PNG │ │ │ └── Android14Home.png │ │ └── SVG │ │ │ ├── Android_14_Logo.svg │ │ │ └── Android_14_official_logo.svg │ │ ├── 15 │ │ └── SVG │ │ │ ├── Android_15_Developer_Preview_logo.svg │ │ │ └── Android_15_Logo.svg │ │ ├── 16 │ │ └── SVG │ │ │ └── Android_16_Developer_Preview_Logo.svg │ │ ├── 5.x │ │ └── SVG │ │ │ └── Android_Lollipop_Logo.svg │ │ ├── 6.x │ │ └── SVG │ │ │ └── Android_Marshmallow_logo.svg │ │ ├── 7.x │ │ └── SVG │ │ │ └── Android_Nougat_Logo.svg │ │ ├── 8.0 │ │ └── SVG │ │ │ └── Android_Oreo_logo.svg │ │ └── 8.1 │ │ └── SVG │ │ └── Android_Oreo_8.1_logo.svg ├── LIBraries │ ├── NetM │ │ ├── NetM │ │ │ └── PNG │ │ │ │ └── NetWebMedia_Icon.png │ │ ├── NetP │ │ │ └── PNG │ │ │ │ └── NetWebMedia_Icon.png │ │ └── NetV │ │ │ └── PNG │ │ │ └── NetWebMedia_Icon.png │ └── SimZonns │ │ └── PNG │ │ └── SIMZONN.png └── Programs │ ├── DuckDuckGo │ └── PNG │ │ └── DuckDuckGo_Classic_Logo_512px.png │ ├── F-Droid │ └── SVG │ │ └── F-Droid_Logo_4.svg │ └── PhoneHome │ └── PNG │ └── GlossySphericalPhone1.png ├── INITIAL_COMMIT.txt ├── INSTALL ├── INSTALL.rst ├── K.desktop ├── LICENSE-GPL.asm ├── LICENSE-GPL.c ├── LICENSE-GPL.h ├── LICENSE-GPL.java ├── LICENSE-GPL.txt ├── LICENSE-GPL3.asm ├── LICENSE-GPL3.c ├── LICENSE-GPL3.h ├── LICENSE-GPL3.java ├── LICENSE-GPL3.txt ├── LICENSE-LGPL.txt ├── LICENSE-LGPL3.txt ├── LICENSE.asm ├── LICENSE.c ├── LICENSE.h ├── LICENSE.java ├── LICENSE.txt ├── OldVersions ├── AUTHORS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── AUTHORS_V1 │ │ ├── AUTHORS_V1.md │ │ └── README.txt ├── AUTOMATE2001 │ ├── AUTOMATE2001_V1.yaml │ ├── AUTOMATE2001_V1.yml │ └── README.yaml ├── Android-x64_REPOLIST │ ├── 1 │ │ ├── 1-100 │ │ │ ├── Android-x64_REPOLIST_V1.urll │ │ │ ├── Android-x64_REPOLIST_V10.urll │ │ │ ├── Android-x64_REPOLIST_V11.urll │ │ │ ├── Android-x64_REPOLIST_V12.urll │ │ │ ├── Android-x64_REPOLIST_V13.urll │ │ │ ├── Android-x64_REPOLIST_V14.urll │ │ │ ├── Android-x64_REPOLIST_V15.urll │ │ │ ├── Android-x64_REPOLIST_V16.urll │ │ │ ├── Android-x64_REPOLIST_V17.urll │ │ │ ├── Android-x64_REPOLIST_V18.urll │ │ │ ├── Android-x64_REPOLIST_V19.urll │ │ │ ├── Android-x64_REPOLIST_V2.urll │ │ │ ├── Android-x64_REPOLIST_V20.urll │ │ │ ├── Android-x64_REPOLIST_V21.urll │ │ │ ├── Android-x64_REPOLIST_V22.urll │ │ │ ├── Android-x64_REPOLIST_V23.urll │ │ │ ├── Android-x64_REPOLIST_V24.urll │ │ │ ├── Android-x64_REPOLIST_V25.urll │ │ │ ├── Android-x64_REPOLIST_V26.urll │ │ │ ├── Android-x64_REPOLIST_V27.urll │ │ │ ├── Android-x64_REPOLIST_V28.urll │ │ │ ├── Android-x64_REPOLIST_V3.urll │ │ │ ├── Android-x64_REPOLIST_V4.urll │ │ │ ├── Android-x64_REPOLIST_V5.urll │ │ │ ├── Android-x64_REPOLIST_V6.urll │ │ │ ├── Android-x64_REPOLIST_V7.urll │ │ │ ├── Android-x64_REPOLIST_V8.urll │ │ │ ├── Android-x64_REPOLIST_V9.urll │ │ │ └── README.txt │ │ └── README.txt │ └── README.txt ├── CITATION │ ├── APA-Style │ │ ├── CITATION_V1.apa.txt │ │ └── README.txt │ ├── BibTeX │ │ ├── CITATION_V1.bib │ │ └── README.tex │ └── CFF │ │ ├── CITATION_V1.cff │ │ └── README.cff ├── CODEOWNERS │ ├── CODEOWNERS_V2 │ └── README.cfg ├── CONTRIBUTING │ └── 1 │ │ └── 1-100 │ │ ├── CONTRIBUTING_V1.md │ │ └── README.txt ├── COPYING │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── COPYING_V1 │ │ ├── COPYING_V1.md │ │ └── README.txt ├── CREDITS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── CREDITS_V1 │ │ ├── CREDITS_V1.wiki │ │ └── README.wiki ├── Desktop.ini │ ├── README.cfg │ └── V1_desktop.ini ├── EDITORCONFIG │ └── 1 │ │ └── 1-100 │ │ ├── README.cfg │ │ ├── V1.editorconfig │ │ ├── V2.editorconfig │ │ └── V3.editorconfig ├── GITATTRIBUTES │ └── 1 │ │ └── 1-100 │ │ ├── README.cfg │ │ ├── V1.gitattributes │ │ ├── V2.gitattributes │ │ ├── V3.gitattributes │ │ ├── V4.gitattributes │ │ └── V5.gitattributes ├── GITIGNORE │ └── 1 │ │ └── 1-100 │ │ ├── README.yaml │ │ └── V1.gitignore ├── INITIAL_COMMIT │ ├── INITIAL_COMMIT_V1.txt │ └── README.txt ├── INSTALL │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── INSTALL_V1 │ │ ├── INSTALL_V1.rst │ │ └── README.rst ├── ISSUE_TEMPLATE │ ├── CONFIG │ │ └── YML │ │ │ ├── README.txt │ │ │ └── V1_config.yml │ ├── ISSUE-TEMPLATE │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ ├── issue-template_V1.yml │ │ │ ├── issue-template_V2.yml │ │ │ ├── issue-template_V3.yml │ │ │ ├── issue-template_V4.yml │ │ │ ├── issue-template_V5.yml │ │ │ └── issue-template_V6.yml │ └── MISCELLANEOUS │ │ └── YML │ │ ├── README.txt │ │ └── miscellaneous_V1.yml ├── KDESKTOP │ ├── K_V1.desktop │ └── README.desktop ├── LICENSE │ └── GPL3 │ │ ├── LICENSE-GPL3.asm │ │ ├── LICENSE-GPL3_V1.c │ │ ├── LICENSE-GPL3_V1.h │ │ ├── LICENSE-GPL3_V1.java │ │ ├── LICENSE-GPL3_V1.txt │ │ ├── LICENSE-GPL_V1.asm │ │ ├── LICENSE-GPL_V1.c │ │ ├── LICENSE-GPL_V1.h │ │ ├── LICENSE-GPL_V1.java │ │ ├── LICENSE-GPL_V1.txt │ │ ├── LICENSE_V1.asm │ │ ├── LICENSE_V1.c │ │ ├── LICENSE_V1.h │ │ ├── LICENSE_V1.java │ │ ├── LICENSE_V1.txt │ │ └── README.md ├── MAKEFILE │ └── 1 │ │ └── 1-100 │ │ ├── README.mk │ │ └── makefile_V1.mk ├── PROJECT_LANGUAGE │ ├── Assembly │ │ ├── PROJECT_LANG_3_V1.asm │ │ └── README.asm │ ├── C │ │ ├── PROJECT_LANG_1_V1.c │ │ ├── PROJECT_LANG_1_V1.h │ │ └── README.c │ └── Java │ │ ├── PROJECT_LANG_2_V1.java │ │ └── README.java ├── PULL_REQUEST_TEMPLATE │ ├── README.txt │ └── pull_request_template_V1.md ├── README │ └── English │ │ └── 1 │ │ ├── 7-100 │ │ ├── README.txt │ │ ├── README_V10.md │ │ ├── README_V11.md │ │ ├── README_V12.md │ │ ├── README_V13.md │ │ ├── README_V7.md │ │ ├── README_V8.md │ │ └── README_V9.md │ │ ├── Android-x64_README_DRAFT_V1.md │ │ ├── Android-x64_README_DRAFT_V2.md │ │ ├── Android-x64_README_DRAFT_V3.md │ │ ├── README.txt │ │ ├── README_V0.1.5.md │ │ ├── README_V0.1.6.md │ │ ├── README_V0.1.md │ │ ├── README_V1.md │ │ ├── README_V2.md │ │ ├── README_V3.md │ │ ├── README_V4.md │ │ ├── README_V5.md │ │ └── README_V6.md └── ROOTFILES │ └── 1 │ ├── 1-100 │ ├── README.urll │ └── ROOTFILES_V1.base │ └── README.txt ├── PROJECT_LANG_1.c ├── PROJECT_LANG_1.h ├── PROJECT_LANG_2.java ├── PROJECT_LANG_3.asm ├── README.md ├── ROOTFILES.base ├── RepoData └── Description │ └── GitHub │ ├── OldVersions │ └── English │ │ └── USA │ │ ├── README.md │ │ └── README_V1.txt │ └── README.txt ├── SECURITY.md ├── SponsorButton.png ├── WacOS-Other.md ├── _config.yml ├── desktop.ini ├── makefile.mk └── pull_request_template.md /!Src/!Todo/Meta/VersionDocumentation2022/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/!Todo/Meta/VersionDocumentation2022/README.txt -------------------------------------------------------------------------------- /!Src/!Todo/Meta/VersionDocumentation2022/README_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/!Todo/Meta/VersionDocumentation2022/README_V1.txt -------------------------------------------------------------------------------- /!Src/!Todo/Meta/VersionDocumentation2022/README_V2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/!Todo/Meta/VersionDocumentation2022/README_V2.txt -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/10.X/10.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/10.X/10.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/APPLICATIONS/F-Droid/com.android.f-droid.apk.urll: -------------------------------------------------------------------------------- 1 | https://f-droid.org/ 2 | -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/CREDITS.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app2_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app2_V1.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app2_V1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app2_V1.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app_V1.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app_V1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/APP/app_V1.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/booloader_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/booloader_V1.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/boootloader_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/boootloader_V1.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/bootloader_V1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/bootloader_V1.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/mpu_bootloader_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/BOOTLOADER/mpu_bootloader_V1.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/CREDITS/CREDITS_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/CREDITS/CREDITS_V1.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map2_V1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map2_V1.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map3_V1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map3_V1.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map_V1.h -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map_V1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/MEMORY_MAP/memory_map_V1.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/Makefile/cat-make_V1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/Makefile/cat-make_V1.mk -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/Makefile/makefile_V1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/Makefile/makefile_V1.mk -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/SHARED_MEMORY/shared_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/SHARED_MEMORY/shared_V1.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/SHARED_MEMORY/shared_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/SHARED_MEMORY/shared_V1.h -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/OldVersions/STARTUP/startup_samd21_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/OldVersions/STARTUP/startup_samd21_V1.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/app.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/app.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/app.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/app2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/app2.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/app2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/app2.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/booloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/booloader.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/boootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/boootloader.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/bootloader.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/bootloader.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/bootloader.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/cat-make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/cat-make.mk -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/makefile.mk -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/memory_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/memory_map.h -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/memory_map.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/memory_map.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/memory_map2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/memory_map2.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/memory_map3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/memory_map3.ld -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/mpu_bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/mpu_bootloader.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/shared.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/shared.h -------------------------------------------------------------------------------- /!Src/11.x/11.0/BOOTLOADER/startup_samd21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/BOOTLOADER/startup_samd21.c -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/11.x/11.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/11.x/11.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/12.x/12.1/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/12.x/12.1/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/13.x/13.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/13.x/13.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/DeGoogled/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/Heavy/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/LiveCD/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/5.x/5.1/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/5.x/5.1/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Heavy/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.0/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.0/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/6.x/6.1/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/6.x/6.1/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/7.x/7.1/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/7.x/7.1/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/Vanilla/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/8.x/8.1/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/8.x/8.1/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/Heavy/README.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/Vanilla/OldVersions/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/Vanilla/OldVersions/README_V1.md -------------------------------------------------------------------------------- /!Src/9.x/9.0/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/!Src/9.x/9.0/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.FUNDING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/.FUNDING.yaml -------------------------------------------------------------------------------- /.github/.FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/.FUNDING.yml -------------------------------------------------------------------------------- /.github/.github_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/.github_README.md -------------------------------------------------------------------------------- /.github/.github_README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/.github_README_V1.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/Discussions/1/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Discussions/1/Body/OldVersions/README_V1.md -------------------------------------------------------------------------------- /.github/Discussions/1/Body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Discussions/1/Body/README.md -------------------------------------------------------------------------------- /.github/Discussions/1/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Welcome to Android-x64 Discussions! #1 2 | -------------------------------------------------------------------------------- /.github/Discussions/1/URLL/LINK.urll: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Android-x64/discussions/1 2 | -------------------------------------------------------------------------------- /.github/Discussions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Discussions/README.md -------------------------------------------------------------------------------- /.github/Discussions/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Discussions/README_V1.md -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Funding/OldVersions/FUNDING_V1.yaml -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Funding/OldVersions/FUNDING_V1.yml -------------------------------------------------------------------------------- /.github/Funding/OldVersions/README.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Funding/OldVersions/README.yml -------------------------------------------------------------------------------- /.github/Funding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Funding/README.md -------------------------------------------------------------------------------- /.github/Funding/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Funding/README_V1.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/ISSUE_TEMPLATE/README.txt -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/ISSUE_TEMPLATE/issue-template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/miscellaneous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/ISSUE_TEMPLATE/miscellaneous.yml -------------------------------------------------------------------------------- /.github/Issues/GitHub_Default_IssueLabels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Issues/GitHub_Default_IssueLabels.yaml -------------------------------------------------------------------------------- /.github/Issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Issues/README.md -------------------------------------------------------------------------------- /.github/Issues/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Issues/README_V1.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/PULL_REQUEST_TEMPLATE/README.txt -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/Pull_Requests/OldVersions/English/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Pull_Requests/OldVersions/English/1/1-100/README.txt -------------------------------------------------------------------------------- /.github/Pull_Requests/OldVersions/English/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Pull_Requests/OldVersions/English/1/1-100/README_V1.md -------------------------------------------------------------------------------- /.github/Pull_Requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Pull_Requests/README.md -------------------------------------------------------------------------------- /.github/Security/OldVersions/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Security/OldVersions/1/1-100/README.txt -------------------------------------------------------------------------------- /.github/Security/OldVersions/1/1-100/SECURITY_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Security/OldVersions/1/1-100/SECURITY_V1.md -------------------------------------------------------------------------------- /.github/Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/Security/README.md -------------------------------------------------------------------------------- /.github/SocialPreview/Android_x64_Project_1080pWallpaper_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/SocialPreview/Android_x64_Project_1080pWallpaper_V1_HighCompression.png -------------------------------------------------------------------------------- /.github/SocialPreview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/SocialPreview/README.md -------------------------------------------------------------------------------- /.github/SocialPreview/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/SocialPreview/README_V1.md -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/AndroidTemplate_1080pWallpaper_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/SocialPreview/Unused/AndroidTemplate_1080pWallpaper_V1_HighCompression.png -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/repository-open-graph-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/SocialPreview/Unused/repository-open-graph-template.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflowArchives/Android/android_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Android/android_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Automation/Greetings/greetings_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Automation/Greetings/greetings_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/C-CPP/c-cpp_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/C-CPP/c-cpp_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/CMake/cmake_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/CMake/cmake_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/CodeQL/Analysis/codeql-analysis_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/CodeQL/Analysis/codeql-analysis_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Jekyll/jekyll_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/GitHub-Pages/Jekyll/jekyll_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Static-HTML/github-pages-static-html_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/GitHub-Pages/Static-HTML/github-pages-static-html_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Ant/java-ant_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Java/Ant/java-ant_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Gradle/Publish/java-gradle-publish_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Java/Gradle/Publish/java-gradle-publish_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Gradle/java-gradle_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Java/Gradle/java-gradle_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Maven/Publish/java-maven-publish_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Java/Maven/Publish/java-maven-publish_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Maven/java-maven_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Java/Maven/java-maven_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Linting/Super-linter/super-linter_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Linting/Super-linter/super-linter_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Linting/YAML/yaml-lint_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Linting/YAML/yaml-lint_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/MSBuild/msbuild_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/MSBuild/msbuild_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Makefile/makefile_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflowArchives/Makefile/makefile_V1.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/github-pages-static-html.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/github-pages-static-html.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/java-ant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/java-ant.yml -------------------------------------------------------------------------------- /.github/workflows/java-gradle-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/java-gradle-publish.yml -------------------------------------------------------------------------------- /.github/workflows/java-gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/java-gradle.yml -------------------------------------------------------------------------------- /.github/workflows/java-maven-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/java-maven-publish.yml -------------------------------------------------------------------------------- /.github/workflows/java-maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/java-maven.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.github/workflows/super-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/super-linter.yml -------------------------------------------------------------------------------- /.github/workflows/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.github/workflows/yaml-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab/GitLab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/.gitlab/GitLab_icon.svg -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/404.html -------------------------------------------------------------------------------- /404.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/404.jpeg -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /404.html 3 | --- 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/AUTHORS -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /AUTOMATE2001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/AUTOMATE2001.yaml -------------------------------------------------------------------------------- /AUTOMATE2001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/AUTOMATE2001.yml -------------------------------------------------------------------------------- /Android-x64_REPOLIST.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Android-x64_REPOLIST.urll -------------------------------------------------------------------------------- /Android_Logo_HighDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Android_Logo_HighDetail.png -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYINGL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/COPYINGL -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/CREDITS -------------------------------------------------------------------------------- /CREDITS.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/CREDITS.wiki -------------------------------------------------------------------------------- /DRM-free_label.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/DRM-free_label.en.svg -------------------------------------------------------------------------------- /Docs/!OldVersions/README/English/USA/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/!OldVersions/README/English/USA/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Editions/DeGoogled/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/DeGoogled/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Editions/DeGoogled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/DeGoogled/README.md -------------------------------------------------------------------------------- /Docs/Editions/Heavy/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/Heavy/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Editions/Heavy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/Heavy/README.md -------------------------------------------------------------------------------- /Docs/Editions/LiveCD/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/LiveCD/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Editions/LiveCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/LiveCD/README.md -------------------------------------------------------------------------------- /Docs/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/Vanilla/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Editions/Vanilla/Possible-problems/Android-15/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/Vanilla/Possible-problems/Android-15/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Editions/Vanilla/Possible-problems/Android-15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/Vanilla/Possible-problems/Android-15/README.md -------------------------------------------------------------------------------- /Docs/Editions/Vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Editions/Vanilla/README.md -------------------------------------------------------------------------------- /Docs/Frameworks/Candroid/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Frameworks/Candroid/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Frameworks/Candroid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Frameworks/Candroid/README.md -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/README.md -------------------------------------------------------------------------------- /Docs/Related-Projects/Android-x86/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Related-Projects/Android-x86/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Related-Projects/Android-x86/Android-x86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Related-Projects/Android-x86/Android-x86.png -------------------------------------------------------------------------------- /Docs/Related-Projects/Android-x86/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Related-Projects/Android-x86/README.md -------------------------------------------------------------------------------- /Docs/Workspaces/Firefox/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Workspaces/Firefox/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Workspaces/Firefox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/Workspaces/Firefox/README.md -------------------------------------------------------------------------------- /Docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Docs/pull_request_template.md -------------------------------------------------------------------------------- /Graphics/Android-x64/Banner/1080p/PNG/Android_x64_Project_1080pWallpaper_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Android-x64/Banner/1080p/PNG/Android_x64_Project_1080pWallpaper_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Android-x86/Logo/PNG/Android-x86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Android-x86/Logo/PNG/Android-x86.png -------------------------------------------------------------------------------- /Graphics/Candroid/Logo/PNG/Candroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Candroid/Logo/PNG/Candroid.png -------------------------------------------------------------------------------- /Graphics/Google/Android/10/SVG/AndroidQlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/10/SVG/AndroidQlogo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/11/SVG/Android_11_Developer_Preview_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/11/SVG/Android_11_Developer_Preview_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/12/SVG/Android_12_Developer_Preview_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/12/SVG/Android_12_Developer_Preview_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/13/SVG/Android_13_Developer_Preview_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/13/SVG/Android_13_Developer_Preview_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/14/PNG/Android14Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/14/PNG/Android14Home.png -------------------------------------------------------------------------------- /Graphics/Google/Android/14/SVG/Android_14_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/14/SVG/Android_14_Logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/14/SVG/Android_14_official_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/14/SVG/Android_14_official_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/15/SVG/Android_15_Developer_Preview_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/15/SVG/Android_15_Developer_Preview_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/15/SVG/Android_15_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/15/SVG/Android_15_Logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/16/SVG/Android_16_Developer_Preview_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/16/SVG/Android_16_Developer_Preview_Logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/5.x/SVG/Android_Lollipop_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/5.x/SVG/Android_Lollipop_Logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/6.x/SVG/Android_Marshmallow_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/6.x/SVG/Android_Marshmallow_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/7.x/SVG/Android_Nougat_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/7.x/SVG/Android_Nougat_Logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/8.0/SVG/Android_Oreo_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/8.0/SVG/Android_Oreo_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/8.1/SVG/Android_Oreo_8.1_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/8.1/SVG/Android_Oreo_8.1_logo.svg -------------------------------------------------------------------------------- /Graphics/Google/Android/9/SVG/Android_P_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Google/Android/9/SVG/Android_P_logo.svg -------------------------------------------------------------------------------- /Graphics/LIBraries/NetM/NetM/PNG/NetWebMedia_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/LIBraries/NetM/NetM/PNG/NetWebMedia_Icon.png -------------------------------------------------------------------------------- /Graphics/LIBraries/NetM/NetP/PNG/NetWebMedia_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/LIBraries/NetM/NetP/PNG/NetWebMedia_Icon.png -------------------------------------------------------------------------------- /Graphics/LIBraries/NetM/NetV/PNG/NetWebMedia_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/LIBraries/NetM/NetV/PNG/NetWebMedia_Icon.png -------------------------------------------------------------------------------- /Graphics/LIBraries/SimZonns/PNG/SIMZONN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/LIBraries/SimZonns/PNG/SIMZONN.png -------------------------------------------------------------------------------- /Graphics/Programs/DuckDuckGo/PNG/DuckDuckGo_Classic_Logo_512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Programs/DuckDuckGo/PNG/DuckDuckGo_Classic_Logo_512px.png -------------------------------------------------------------------------------- /Graphics/Programs/F-Droid/SVG/F-Droid_Logo_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Programs/F-Droid/SVG/F-Droid_Logo_4.svg -------------------------------------------------------------------------------- /Graphics/Programs/PhoneHome/PNG/GlossySphericalPhone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/Graphics/Programs/PhoneHome/PNG/GlossySphericalPhone1.png -------------------------------------------------------------------------------- /INITIAL_COMMIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/INITIAL_COMMIT.txt -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /K.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/K.desktop -------------------------------------------------------------------------------- /LICENSE-GPL.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL.asm -------------------------------------------------------------------------------- /LICENSE-GPL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL.c -------------------------------------------------------------------------------- /LICENSE-GPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL.h -------------------------------------------------------------------------------- /LICENSE-GPL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL.java -------------------------------------------------------------------------------- /LICENSE-GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL.txt -------------------------------------------------------------------------------- /LICENSE-GPL3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL3.asm -------------------------------------------------------------------------------- /LICENSE-GPL3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL3.c -------------------------------------------------------------------------------- /LICENSE-GPL3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL3.h -------------------------------------------------------------------------------- /LICENSE-GPL3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL3.java -------------------------------------------------------------------------------- /LICENSE-GPL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-GPL3.txt -------------------------------------------------------------------------------- /LICENSE-LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-LGPL.txt -------------------------------------------------------------------------------- /LICENSE-LGPL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE-LGPL3.txt -------------------------------------------------------------------------------- /LICENSE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE.asm -------------------------------------------------------------------------------- /LICENSE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE.c -------------------------------------------------------------------------------- /LICENSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE.h -------------------------------------------------------------------------------- /LICENSE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE.java -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1 -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1.md -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/AUTHORS/English/1/1-100/README.txt -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/AUTOMATE2001/README.yaml -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V1.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V1.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V10.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V10.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V11.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V11.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V12.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V12.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V13.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V13.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V14.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V14.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V15.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V15.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V16.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V16.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V17.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V17.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V18.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V18.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V19.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V19.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V2.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V2.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V20.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V20.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V21.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V21.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V22.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V22.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V23.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V23.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V24.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V24.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V25.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V25.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V26.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V26.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V27.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V27.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V28.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V28.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V3.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V3.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V4.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V4.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V5.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V5.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V6.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V6.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V7.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V7.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V8.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V8.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V9.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/Android-x64_REPOLIST_V9.urll -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/1-100/README.txt -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/1/README.txt -------------------------------------------------------------------------------- /OldVersions/Android-x64_REPOLIST/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Android-x64_REPOLIST/README.txt -------------------------------------------------------------------------------- /OldVersions/CITATION/APA-Style/CITATION_V1.apa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CITATION/APA-Style/CITATION_V1.apa.txt -------------------------------------------------------------------------------- /OldVersions/CITATION/APA-Style/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CITATION/APA-Style/README.txt -------------------------------------------------------------------------------- /OldVersions/CITATION/BibTeX/CITATION_V1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CITATION/BibTeX/CITATION_V1.bib -------------------------------------------------------------------------------- /OldVersions/CITATION/BibTeX/README.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CITATION/BibTeX/README.tex -------------------------------------------------------------------------------- /OldVersions/CITATION/CFF/CITATION_V1.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CITATION/CFF/CITATION_V1.cff -------------------------------------------------------------------------------- /OldVersions/CITATION/CFF/README.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CITATION/CFF/README.cff -------------------------------------------------------------------------------- /OldVersions/CODEOWNERS/CODEOWNERS_V2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CODEOWNERS/CODEOWNERS_V2 -------------------------------------------------------------------------------- /OldVersions/CODEOWNERS/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CODEOWNERS/README.cfg -------------------------------------------------------------------------------- /OldVersions/CONTRIBUTING/1/1-100/CONTRIBUTING_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CONTRIBUTING/1/1-100/CONTRIBUTING_V1.md -------------------------------------------------------------------------------- /OldVersions/CONTRIBUTING/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CONTRIBUTING/1/1-100/README.txt -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/COPYING_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/COPYING/English/1/1-100/COPYING_V1 -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/COPYING_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/COPYING/English/1/1-100/COPYING_V1.md -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/COPYING/English/1/1-100/README.txt -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/CREDITS_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CREDITS/English/1/1-100/CREDITS_V1 -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/CREDITS_V1.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CREDITS/English/1/1-100/CREDITS_V1.wiki -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/README.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/CREDITS/English/1/1-100/README.wiki -------------------------------------------------------------------------------- /OldVersions/Desktop.ini/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Desktop.ini/README.cfg -------------------------------------------------------------------------------- /OldVersions/Desktop.ini/V1_desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/Desktop.ini/V1_desktop.ini -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/EDITORCONFIG/1/1-100/README.cfg -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V1.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/EDITORCONFIG/1/1-100/V1.editorconfig -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V2.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/EDITORCONFIG/1/1-100/V2.editorconfig -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V3.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/EDITORCONFIG/1/1-100/V3.editorconfig -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITATTRIBUTES/1/1-100/README.cfg -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V1.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V1.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V2.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V2.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V3.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V3.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V4.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V4.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V5.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V5.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITIGNORE/1/1-100/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITIGNORE/1/1-100/README.yaml -------------------------------------------------------------------------------- /OldVersions/GITIGNORE/1/1-100/V1.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/GITIGNORE/1/1-100/V1.gitignore -------------------------------------------------------------------------------- /OldVersions/INITIAL_COMMIT/INITIAL_COMMIT_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/INITIAL_COMMIT/INITIAL_COMMIT_V1.txt -------------------------------------------------------------------------------- /OldVersions/INITIAL_COMMIT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/INITIAL_COMMIT/README.txt -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/INSTALL_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/INSTALL/English/1/1-100/INSTALL_V1 -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/INSTALL_V1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/INSTALL/English/1/1-100/INSTALL_V1.rst -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/INSTALL/English/1/1-100/README.rst -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/CONFIG/YML/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/CONFIG/YML/README.txt -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/CONFIG/YML/V1_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/CONFIG/YML/V1_config.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/README.txt -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V1.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V2.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V3.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V4.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V5.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V6.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/MISCELLANEOUS/YML/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/MISCELLANEOUS/YML/README.txt -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/MISCELLANEOUS/YML/miscellaneous_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ISSUE_TEMPLATE/MISCELLANEOUS/YML/miscellaneous_V1.yml -------------------------------------------------------------------------------- /OldVersions/KDESKTOP/K_V1.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/KDESKTOP/K_V1.desktop -------------------------------------------------------------------------------- /OldVersions/KDESKTOP/README.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/KDESKTOP/README.desktop -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3.asm -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.c -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.h -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.java -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.asm -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.c -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.h -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.java -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE_V1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE_V1.asm -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE_V1.c -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE_V1.h -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE_V1.java -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/LICENSE_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/LICENSE/GPL3/README.md -------------------------------------------------------------------------------- /OldVersions/MAKEFILE/1/1-100/README.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/MAKEFILE/1/1-100/README.mk -------------------------------------------------------------------------------- /OldVersions/MAKEFILE/1/1-100/makefile_V1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/MAKEFILE/1/1-100/makefile_V1.mk -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Assembly/PROJECT_LANG_3_V1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PROJECT_LANGUAGE/Assembly/PROJECT_LANG_3_V1.asm -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Assembly/README.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PROJECT_LANGUAGE/Assembly/README.asm -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/C/PROJECT_LANG_1_V1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PROJECT_LANGUAGE/C/PROJECT_LANG_1_V1.c -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/C/PROJECT_LANG_1_V1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PROJECT_LANGUAGE/C/PROJECT_LANG_1_V1.h -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/C/README.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PROJECT_LANGUAGE/C/README.c -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Java/PROJECT_LANG_2_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PROJECT_LANGUAGE/Java/PROJECT_LANG_2_V1.java -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Java/README.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PROJECT_LANGUAGE/Java/README.java -------------------------------------------------------------------------------- /OldVersions/PULL_REQUEST_TEMPLATE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PULL_REQUEST_TEMPLATE/README.txt -------------------------------------------------------------------------------- /OldVersions/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README.txt -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README_V10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README_V10.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README_V11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README_V11.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README_V12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README_V12.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README_V13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README_V13.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README_V7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README_V7.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README_V8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README_V8.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/7-100/README_V9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/7-100/README_V9.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/Android-x64_README_DRAFT_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/Android-x64_README_DRAFT_V1.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/Android-x64_README_DRAFT_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/Android-x64_README_DRAFT_V2.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/Android-x64_README_DRAFT_V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/Android-x64_README_DRAFT_V3.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README.txt -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V0.1.5.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V0.1.6.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V0.1.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V1.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V2.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V3.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V4.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V5.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/README/English/1/README_V6.md -------------------------------------------------------------------------------- /OldVersions/ROOTFILES/1/1-100/README.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ROOTFILES/1/1-100/README.urll -------------------------------------------------------------------------------- /OldVersions/ROOTFILES/1/1-100/ROOTFILES_V1.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ROOTFILES/1/1-100/ROOTFILES_V1.base -------------------------------------------------------------------------------- /OldVersions/ROOTFILES/1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/OldVersions/ROOTFILES/1/README.txt -------------------------------------------------------------------------------- /PROJECT_LANG_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/PROJECT_LANG_1.c -------------------------------------------------------------------------------- /PROJECT_LANG_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/PROJECT_LANG_1.h -------------------------------------------------------------------------------- /PROJECT_LANG_2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/PROJECT_LANG_2.java -------------------------------------------------------------------------------- /PROJECT_LANG_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/PROJECT_LANG_3.asm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/README.md -------------------------------------------------------------------------------- /ROOTFILES.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/ROOTFILES.base -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/RepoData/Description/GitHub/OldVersions/English/USA/README.md -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt -------------------------------------------------------------------------------- /RepoData/Description/GitHub/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/RepoData/Description/GitHub/README.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SponsorButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/SponsorButton.png -------------------------------------------------------------------------------- /WacOS-Other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/WacOS-Other.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/_config.yml -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/desktop.ini -------------------------------------------------------------------------------- /makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/makefile.mk -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Android-x64/HEAD/pull_request_template.md --------------------------------------------------------------------------------