├── .editorconfig ├── .gitattributes ├── .github ├── .FUNDING.yaml ├── .FUNDING.yml ├── .github_README.md ├── .github_README_V1.md ├── CODEOWNERS ├── Discussions │ ├── README.md │ └── README_V1.md ├── Funding │ ├── OldVersions │ │ ├── FUNDING_V1.yaml │ │ └── FUNDING_V1.yml │ ├── README.md │ └── README_V1.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue-template.yml │ └── miscellaneous.yml ├── Issues │ ├── GitHub_Default_IssueLabels.yaml │ ├── OldVersions │ │ └── 1 │ │ │ └── 1-100 │ │ │ └── ISSUE_TEMPLATE_V1.md │ ├── README.md │ └── README_V1.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template_V1.md ├── Pull_Requests │ ├── OldVersions │ │ └── English │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── PULL_REQUEST_TEMPLATE_V1.md │ │ │ └── README_V1.md │ └── README.md ├── SECURITY │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ └── SECURITY_V1.md │ └── README.md ├── SocialPreview │ ├── README.md │ ├── README_V1.md │ └── Unused │ │ └── repository-open-graph-template.png ├── pull_request_template.md ├── workflowArchives │ ├── Android │ │ └── android_V1.yml │ ├── CodeQL │ │ └── Analysis │ │ │ └── codeql-analysis_V1.yml │ ├── GitHub-Pages │ │ ├── Jekyll │ │ │ ├── jekyll-gh-pages_V1.yml │ │ │ └── jekyll_V1.yml │ │ └── Static-HTML │ │ │ └── github-pages-static_V1.yml │ ├── GoogleGo │ │ ├── OSSF │ │ │ └── SLSA3 │ │ │ │ └── Publish │ │ │ │ └── google-go-ossf-slsa3-publish_V1.yml │ │ └── google-go_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 │ │ ├── Python │ │ │ └── PyLint │ │ │ │ └── pylint_V1.yml │ │ ├── Super-linter │ │ │ └── super-linter_V1.yml │ │ └── YAML │ │ │ └── yaml-lint_V1.yml │ ├── Makefile │ │ └── makefile_V1.yml │ ├── OSSF │ │ └── SLSA3 │ │ │ └── Generator │ │ │ └── Generic │ │ │ └── Publish │ │ │ └── generator-generic-ossf-slsa3-publish_V1.yml │ └── Python │ │ ├── Application │ │ └── python-app_V1.yml │ │ ├── DJango │ │ └── django_V1.yml │ │ └── Package │ │ ├── Conda │ │ └── python-package-conda_V1.yml │ │ ├── Publish │ │ └── python-package-publish_V1.yml │ │ └── python-package_V1.yml └── workflows │ ├── android.yml │ ├── codeql-analysis.yml │ ├── django.yml │ ├── generator-generic-ossf-slsa3-publish.yml │ ├── github-pages-static.yml │ ├── google-go-ossf-slsa3-publish.yml │ ├── google-go.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 │ ├── pylint.yml │ ├── python-app.yml │ ├── python-package-conda.yml │ ├── python-package-publish.yml │ ├── python-package.yml │ ├── super-linter.yml │ └── yaml-lint.yml ├── .gitignore ├── 404.html ├── 404.jpeg ├── 404.md ├── AUTHORS ├── AUTOMATE2001.yaml ├── AUTOMATE2001.yml ├── CITATION.cff ├── CONTRIBUTING.md ├── COPYINGL ├── CREDITS ├── Candroid-Catalogue ├── !OldVersions │ ├── README │ │ └── English │ │ │ └── USA │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README_V1.md │ │ │ ├── README_V10.md │ │ │ ├── README_V11.md │ │ │ ├── README_V12.md │ │ │ ├── README_V13.md │ │ │ ├── README_V14.md │ │ │ ├── README_V15.md │ │ │ ├── README_V16.md │ │ │ ├── README_V17.md │ │ │ ├── README_V2.md │ │ │ ├── README_V3.md │ │ │ ├── README_V4.md │ │ │ ├── README_V5.md │ │ │ ├── README_V6.md │ │ │ ├── README_V7.md │ │ │ ├── README_V8.md │ │ │ └── README_V9.md │ └── TABLE │ │ └── English │ │ └── USA │ │ └── 1 │ │ └── 1-100 │ │ ├── TABLE_V1.md │ │ ├── TABLE_V10.md │ │ ├── TABLE_V11.md │ │ ├── TABLE_V12.md │ │ ├── TABLE_V13.md │ │ ├── TABLE_V14.md │ │ ├── TABLE_V15.md │ │ ├── TABLE_V16.md │ │ ├── TABLE_V17.md │ │ ├── TABLE_V2.md │ │ ├── TABLE_V3.md │ │ ├── TABLE_V4.md │ │ ├── TABLE_V5.md │ │ ├── TABLE_V6.md │ │ ├── TABLE_V7.md │ │ ├── TABLE_V8.md │ │ └── TABLE_V9.md └── README.md ├── Candroid.png ├── Candroid_REPOLIST.urll ├── Compatibility └── Settings │ └── API_Level │ ├── API_Level.py │ └── OldVersions │ └── API_Level_V1.py ├── DRM-free_label.en.svg ├── Docs ├── !OldVersions │ └── README │ │ └── English │ │ └── USA │ │ └── 1 │ │ └── 1-100 │ │ └── README_V1.md ├── Graphic-Design │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ ├── README.md │ └── Style-Guide │ │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── README_V1.md │ │ ├── 2022December │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ ├── GIMP │ │ │ ├── !OldVersions │ │ │ │ └── README │ │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ ├── 2.10.30 │ │ │ │ ├── !OldVersions │ │ │ │ │ └── English │ │ │ │ │ │ └── USA │ │ │ │ │ │ └── README_V1.md │ │ │ │ ├── Candroid_Graphic_Design_Tutorials │ │ │ │ │ └── 2022.12.07 │ │ │ │ │ │ ├── Droid │ │ │ │ │ │ └── WebM │ │ │ │ │ │ │ └── Candroid-Droid_GIMP_GraphicDesignTutorial_Candroid-Settings.webm │ │ │ │ │ │ └── Wallpaper │ │ │ │ │ │ └── WebM │ │ │ │ │ │ └── Candroid-Wallpaper_GIMP_GraphicDesignTutorial_Candroid-Settings.webm │ │ │ │ └── README.md │ │ │ └── README.md │ │ ├── Primary_Assets │ │ │ ├── Candroid.png │ │ │ ├── Candroid_Template_1080pSolidColorWallpaper_V1_HighCompression.png │ │ │ ├── OldVersions │ │ │ │ └── README │ │ │ │ │ └── English │ │ │ │ │ └── USA │ │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ └── README.md │ │ └── README.md ├── README.md ├── Used-by │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ └── README_V1.md │ └── README.md └── pull_request_template.md ├── GoDE ├── OldVersions │ └── Docs │ │ └── 1 │ │ └── README │ │ ├── README.txt │ │ └── README_V1.md └── README.md ├── Graphics ├── Droids │ ├── Candroid-App-Store │ │ └── PNG │ │ │ └── Candroid-App-Store_1000pIcon_V1_HighCompression.png │ ├── Candroid-Assistant │ │ └── PNG │ │ │ └── Candroid-Assistant_1000pIcon_V1_HighCompression.png │ ├── Candroid-Battery-Monitor │ │ └── PNG │ │ │ └── Candroid-Battery-Monitor_1000pIcon_V1_HighCompression.png │ ├── Candroid-Browser │ │ └── PNG │ │ │ └── Candroid-Browser_1000pIcon_V1_HighCompression.png │ ├── Candroid-Calculator │ │ └── PNG │ │ │ └── Candroid-Calculator_Icon_1000p_HighCompression.png │ ├── Candroid-Calendar │ │ └── PNG │ │ │ └── Candroid-Calendar_1000pIcon_V1_HighCompression.png │ ├── Candroid-Camera │ │ └── PNG │ │ │ └── Candroid-Camera_1000pIcon_V1_HighCompression.png │ ├── Candroid-Catalog │ │ └── PNG │ │ │ └── Candroid-Catalog_1000pIcon_V1_HighCompression.png │ ├── Candroid-Clock │ │ └── PNG │ │ │ └── Candroid-Clock_1000pIcon_V1_HighCompression.png │ ├── Candroid-Contacts │ │ └── PNG │ │ │ └── Candroid-Contacts_1000pIcon_V1_HighCompression.png │ ├── Candroid-Debug │ │ └── PNG │ │ │ └── Candroid-Debug_1000pIcon_V1_HighCompression.png │ ├── Candroid-Docs │ │ └── PNG │ │ │ └── Candroid-Docs_1000pIcon_V1_HighCompression.png │ ├── Candroid-Easter-Egg │ │ └── PNG │ │ │ └── Candroid-Easter-Egg_1000pIcon_V1_HighCompression.png │ ├── Candroid-FileCabinet │ │ └── PNG │ │ │ └── Candroid-FIleCabinet_1000pIcon_V1_HighCompression.png │ ├── Candroid-Flashlight │ │ └── PNG │ │ │ └── Candroid-Flashlight_1024pxIcon_V1_HighCompression.png │ ├── Candroid-Keyboard │ │ └── PNG │ │ │ └── Candroid-Keyboard_1000pIcon_V1_HighCompression.png │ ├── Candroid-Mail │ │ └── PNG │ │ │ └── Candroid-Mail_Icon_1000px_V1_HighCompression.png │ ├── Candroid-Market │ │ └── PNG │ │ │ └── Candroid-Market_1000pIcon_V1_HighCompression.png │ ├── Candroid-Notepad │ │ └── PNG │ │ │ └── Candroid-Notepad_1000pIcon_V1_HighCompression.png │ ├── Candroid-Phone │ │ └── PNG │ │ │ └── Candroid-Phone_1000pIcon_V1_HighCompression.png │ ├── Candroid-Photo-Viewer │ │ └── PNG │ │ │ └── Candroid-Photo-Viewer_1000pIcon_V1_HighCompression.png │ ├── Candroid-Rotate │ │ └── PNG │ │ │ └── Candroid-Rotate_1024pxIcon_V1_HighCompression.png │ ├── Candroid-Settings │ │ └── PNG │ │ │ └── Candroid-Settings_Icon_1000p_HighCompression.png │ ├── Candroid-TV │ │ └── PNG │ │ │ └── Candroid-TV_1000pIcon_V1_HighCompression.png │ ├── Candroid-Tube │ │ └── PNG │ │ │ └── Candroid-Tube_1000pIcon_V1_HighCompression.png │ ├── Candroid-Video │ │ └── PNG │ │ │ └── Candroid-Video_1000pIcon_V1_HighCompression.png │ ├── Candroid-Voicemail │ │ └── PNG │ │ │ └── Candroid-Voicemail_1000pIcon_V1_HighCompression.png │ ├── Candroid-Wallpaper │ │ └── PNG │ │ │ └── Candroid-Wallpaper_1000pIcon_V1_HighCompression.png │ └── Candroid │ │ └── PNG │ │ └── Candroid.png ├── Icons │ └── Debug │ │ └── PNG │ │ ├── Debug-Icon_Striped1_241px_V1_HighCompression.png │ │ └── Debug-Icon_Striped2_241px_V1_HighCompression.png └── Secondary-Icons │ ├── Candroid-App-Store │ └── Bag-dynamic-gradient.png │ ├── Candroid-Assistant │ └── Ambox_blue_question.svg │ ├── Candroid-Battery-Monitor │ └── Battery1.png │ ├── Candroid-Browser │ └── Deer_park_globe.svg │ ├── Candroid-Calculator │ └── Calculator-Icon-Android_Lollipop.png │ ├── Candroid-Calendar │ └── Calendar2.png │ ├── Candroid-Camera │ └── Camera_iOS6_Placeholder.jpeg │ ├── Candroid-Catalog │ └── Catalog-Icon.png │ ├── Candroid-Clock │ └── BlueClock1_999px.png │ ├── Candroid-Contacts │ └── Apps-Contacts-icon-2456248871.png │ ├── Candroid-Debug │ └── Debug-Icon.png │ ├── Candroid-Docs │ └── Documentation.png │ ├── Candroid-Easter-Egg │ └── Blue_EasterEgg.png │ ├── Candroid-FileCabinet │ └── FileCabinetIcon2.png │ ├── Candroid-Flashlight │ └── Flashlight_Icon1.png │ ├── Candroid-Keyboard │ └── Keyboard_Icon_Blue.png │ ├── Candroid-Mail │ └── Mail-Icon1.png │ ├── Candroid-Market │ └── Blue_Shopping-Bag.png │ ├── Candroid-Notepad │ └── Notepad-Icon-1.png │ ├── Candroid-Phone │ └── PhoneIcon1_Blue.png │ ├── Candroid-Photo-Viewer │ └── Folder-Images-Icon.png │ ├── Candroid-Rotate │ └── RotateIcon_1.png │ ├── Candroid-Settings │ └── Gear-Silver-and-blue_1.png │ ├── Candroid-TV │ └── Old_TV_Icon.png │ ├── Candroid-Tube │ └── VideoIcon1_Blue.png │ ├── Candroid-Video │ └── Video_Player_Tango-like_Icon.png │ ├── Candroid-Voicemail │ └── Voicemail-Icon1.png │ ├── Candroid-Wallpaper │ └── StripedWallpaperIcon_1.png │ └── Candroid │ └── PlaceholderX.png ├── INSTALL ├── K.desktop ├── LICENSE-GPL.go ├── LICENSE-GPL.java ├── LICENSE-GPL.py ├── LICENSE-GPL.py3 ├── LICENSE-GPL.pyt ├── LICENSE-GPL.pyw ├── LICENSE-GPL.txt ├── LICENSE-GPL3.go ├── LICENSE-GPL3.java ├── LICENSE-GPL3.py ├── LICENSE-GPL3.py3 ├── LICENSE-GPL3.pyt ├── LICENSE-GPL3.pyw ├── LICENSE-GPL3.txt ├── LICENSE.go ├── LICENSE.java ├── LICENSE.py ├── LICENSE.py3 ├── LICENSE.pyt ├── LICENSE.pyw ├── LICENSE.txt ├── OldVersions ├── AUTHORS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ └── AUTHORS_V1 ├── AUTOMATE2001 │ ├── AUTOMATE2001_V1.yaml │ └── AUTOMATE2001_V1.yml ├── CITATION │ ├── APA-Style │ │ ├── CITATION_V1.apa.txt │ │ └── README.txt │ ├── BibTeX │ │ └── CITATION_V1.bib │ └── CFF │ │ └── CITATION_V1.cff ├── CODEOWNERS │ └── CODEOWNERS_V2 ├── CONTRIBUTING │ └── Universal │ │ └── 1 │ │ └── 1-100 │ │ └── CONTRIBUTING_V1.md ├── COPYING │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── COPYING_V1 │ │ └── COPYING_V1.1 ├── CREDITS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── CREDITS_V1 │ │ └── CREDITS_V1.1 ├── Candroid_REPOLIST │ └── 1 │ │ └── 1-100 │ │ ├── Candroid_REPOLIST_V1.urll │ │ └── README.txt ├── Desktop.ini │ └── V1_desktop.ini ├── EDITORCONFIG │ └── 1 │ │ └── 1-100 │ │ ├── V1.1.editorconfig │ │ ├── V1.editorconfig │ │ └── V2.editorconfig ├── GITATTRIBUTES │ └── 1 │ │ └── 1-100 │ │ ├── V1.gitattributes │ │ ├── V2.gitattributes │ │ └── V3.gitattributes ├── GITIGNORE │ └── 1 │ │ └── 1-100 │ │ └── V1.gitignore ├── INSTALL │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── INSTALL_V1 │ │ └── INSTALL_V1.1 ├── ISSUE_TEMPLATE │ ├── CONFIG │ │ └── YML │ │ │ └── V1_config.yml │ ├── ISSUE-TEMPLATE │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── 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 │ │ └── miscellaneous_V1.yml ├── KDESKTOP │ └── K_V1.desktop ├── LICENSE │ ├── GPL │ │ ├── LICENSE-GPL_V1.go │ │ ├── LICENSE-GPL_V1.java │ │ ├── LICENSE-GPL_V1.py │ │ ├── LICENSE-GPL_V1.py3 │ │ ├── LICENSE-GPL_V1.pyt │ │ ├── LICENSE-GPL_V1.pyw │ │ └── LICENSE-GPL_V1.txt │ ├── GPL3 │ │ ├── LICENSE-GPL3_V1.go │ │ ├── LICENSE-GPL3_V1.java │ │ ├── LICENSE-GPL3_V1.py │ │ ├── LICENSE-GPL3_V1.py3 │ │ ├── LICENSE-GPL3_V1.pyt │ │ ├── LICENSE-GPL3_V1.pyw │ │ └── LICENSE-GPL3_V1.txt │ ├── LICENSE_V1.go │ ├── LICENSE_V1.java │ ├── LICENSE_V1.py │ ├── LICENSE_V1.py3 │ ├── LICENSE_V1.pyt │ ├── LICENSE_V1.pyw │ └── LICENSE_V1.txt ├── MAKEFILE │ └── 1 │ │ └── 1-100 │ │ └── makefile_V1.mk ├── PROJECT_LANGUAGE │ ├── GoogleGo │ │ └── PROJECT_LANG_3_V1.go │ ├── Java │ │ └── PROJECT_LANG_2_V1.java │ └── Python │ │ ├── PROJECT_LANG_1_V1.py │ │ ├── PROJECT_LANG_1_V2.py │ │ ├── PROJECT_LANG_1_V2.py3 │ │ ├── PROJECT_LANG_1_V2.pyt │ │ └── PROJECT_LANG_1_V2.pyw ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template_V1.md ├── README │ └── English │ │ └── USA │ │ └── 1 │ │ └── 1-100 │ │ ├── README_V1.md │ │ ├── README_V10.md │ │ ├── README_V11.md │ │ ├── README_V12.md │ │ ├── README_V13.md │ │ ├── README_V14.md │ │ ├── README_V15.md │ │ ├── README_V2.md │ │ ├── README_V3.md │ │ ├── README_V4.md │ │ ├── README_V5.md │ │ ├── README_V6.md │ │ ├── README_V7.md │ │ ├── README_V8.md │ │ └── README_V9.md └── ROOTFILES │ └── ROOTFILES_V1.base ├── OriginalBluePrintPlans └── December26th2020 │ └── CandroidPlans.md ├── PROJECT_LANG_1.py ├── PROJECT_LANG_1.py3 ├── PROJECT_LANG_1.pyt ├── PROJECT_LANG_1.pyw ├── PROJECT_LANG_2.java ├── PROJECT_LANG_3.go ├── README.md ├── ROOTFILES.base ├── RepoData └── Description │ └── GitHub │ ├── OldVersions │ └── English │ │ └── USA │ │ ├── README.md │ │ ├── README_V1.txt │ │ └── README_V2.txt │ └── README.txt ├── SECURITY.md ├── SponsorButton.png ├── Standard_Apps └── JAVA │ └── Clock │ ├── GClock.java │ └── OldVersions │ └── GClock_V1.java ├── Stylesheets └── CSS │ ├── CENTER.css │ └── CENTER_V1.css ├── Widgets ├── OldVersions │ └── Docs │ │ └── 1 │ │ └── README │ │ └── README_V1.md └── README.md ├── _config.yml ├── desktop.ini ├── makefile.mk └── pull_request_template.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.FUNDING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/.FUNDING.yaml -------------------------------------------------------------------------------- /.github/.FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/.FUNDING.yml -------------------------------------------------------------------------------- /.github/.github_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/.github_README.md -------------------------------------------------------------------------------- /.github/.github_README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/.github_README_V1.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/Discussions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Discussions/README.md -------------------------------------------------------------------------------- /.github/Discussions/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Discussions/README_V1.md -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Funding/OldVersions/FUNDING_V1.yaml -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Funding/OldVersions/FUNDING_V1.yml -------------------------------------------------------------------------------- /.github/Funding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Funding/README.md -------------------------------------------------------------------------------- /.github/Funding/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Funding/README_V1.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/ISSUE_TEMPLATE/issue-template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/miscellaneous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/ISSUE_TEMPLATE/miscellaneous.yml -------------------------------------------------------------------------------- /.github/Issues/GitHub_Default_IssueLabels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Issues/GitHub_Default_IssueLabels.yaml -------------------------------------------------------------------------------- /.github/Issues/OldVersions/1/1-100/ISSUE_TEMPLATE_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Issues/OldVersions/1/1-100/ISSUE_TEMPLATE_V1.md -------------------------------------------------------------------------------- /.github/Issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Issues/README.md -------------------------------------------------------------------------------- /.github/Issues/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Issues/README_V1.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md -------------------------------------------------------------------------------- /.github/Pull_Requests/OldVersions/English/1/1-100/PULL_REQUEST_TEMPLATE_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Pull_Requests/OldVersions/English/1/1-100/PULL_REQUEST_TEMPLATE_V1.md -------------------------------------------------------------------------------- /.github/Pull_Requests/OldVersions/English/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Pull_Requests/OldVersions/English/1/1-100/README_V1.md -------------------------------------------------------------------------------- /.github/Pull_Requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/Pull_Requests/README.md -------------------------------------------------------------------------------- /.github/SECURITY/OldVersions/English/USA/SECURITY_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/SECURITY/OldVersions/English/USA/SECURITY_V1.md -------------------------------------------------------------------------------- /.github/SECURITY/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/SECURITY/README.md -------------------------------------------------------------------------------- /.github/SocialPreview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/SocialPreview/README.md -------------------------------------------------------------------------------- /.github/SocialPreview/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/SocialPreview/README_V1.md -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/repository-open-graph-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/SocialPreview/Unused/repository-open-graph-template.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflowArchives/Android/android_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Android/android_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/CodeQL/Analysis/codeql-analysis_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/CodeQL/Analysis/codeql-analysis_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Jekyll/jekyll_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/GitHub-Pages/Jekyll/jekyll_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Static-HTML/github-pages-static_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/GitHub-Pages/Static-HTML/github-pages-static_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GoogleGo/OSSF/SLSA3/Publish/google-go-ossf-slsa3-publish_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/GoogleGo/OSSF/SLSA3/Publish/google-go-ossf-slsa3-publish_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GoogleGo/google-go_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/GoogleGo/google-go_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Ant/java-ant_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Java/Ant/java-ant_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Gradle/Publish/java-gradle-publish_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Java/Gradle/Publish/java-gradle-publish_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Gradle/java-gradle_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Java/Gradle/java-gradle_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Maven/Publish/java-maven-publish_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Java/Maven/Publish/java-maven-publish_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Java/Maven/java-maven_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Java/Maven/java-maven_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Linting/Python/PyLint/pylint_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Linting/Python/PyLint/pylint_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Linting/Super-linter/super-linter_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Linting/Super-linter/super-linter_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Linting/YAML/yaml-lint_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Linting/YAML/yaml-lint_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Makefile/makefile_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Makefile/makefile_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/OSSF/SLSA3/Generator/Generic/Publish/generator-generic-ossf-slsa3-publish_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/OSSF/SLSA3/Generator/Generic/Publish/generator-generic-ossf-slsa3-publish_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Python/Application/python-app_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Python/Application/python-app_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Python/DJango/django_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Python/DJango/django_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Python/Package/Conda/python-package-conda_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Python/Package/Conda/python-package-conda_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Python/Package/Publish/python-package-publish_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Python/Package/Publish/python-package-publish_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Python/Package/python-package_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflowArchives/Python/Package/python-package_V1.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.github/workflows/generator-generic-ossf-slsa3-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/generator-generic-ossf-slsa3-publish.yml -------------------------------------------------------------------------------- /.github/workflows/github-pages-static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/github-pages-static.yml -------------------------------------------------------------------------------- /.github/workflows/google-go-ossf-slsa3-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/google-go-ossf-slsa3-publish.yml -------------------------------------------------------------------------------- /.github/workflows/google-go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/google-go.yml -------------------------------------------------------------------------------- /.github/workflows/java-ant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/java-ant.yml -------------------------------------------------------------------------------- /.github/workflows/java-gradle-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/java-gradle-publish.yml -------------------------------------------------------------------------------- /.github/workflows/java-gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/java-gradle.yml -------------------------------------------------------------------------------- /.github/workflows/java-maven-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/java-maven-publish.yml -------------------------------------------------------------------------------- /.github/workflows/java-maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/java-maven.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-package-conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/python-package-conda.yml -------------------------------------------------------------------------------- /.github/workflows/python-package-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/python-package-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/super-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/super-linter.yml -------------------------------------------------------------------------------- /.github/workflows/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.github/workflows/yaml-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/404.html -------------------------------------------------------------------------------- /404.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/404.jpeg -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /404.html 3 | --- 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/AUTHORS -------------------------------------------------------------------------------- /AUTOMATE2001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/AUTOMATE2001.yaml -------------------------------------------------------------------------------- /AUTOMATE2001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/AUTOMATE2001.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYINGL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/COPYINGL -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/CREDITS -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V10.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V11.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V12.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V13.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V14.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V15.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V16.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V17.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V2.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V3.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V4.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V5.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V6.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V7.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V8.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/README/English/USA/1/1-100/README_V9.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V1.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V10.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V11.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V12.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V13.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V14.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V15.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V16.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V17.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V2.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V3.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V4.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V5.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V6.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V7.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V8.md -------------------------------------------------------------------------------- /Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/!OldVersions/TABLE/English/USA/1/1-100/TABLE_V9.md -------------------------------------------------------------------------------- /Candroid-Catalogue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid-Catalogue/README.md -------------------------------------------------------------------------------- /Candroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid.png -------------------------------------------------------------------------------- /Candroid_REPOLIST.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Candroid_REPOLIST.urll -------------------------------------------------------------------------------- /Compatibility/Settings/API_Level/API_Level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Compatibility/Settings/API_Level/API_Level.py -------------------------------------------------------------------------------- /Compatibility/Settings/API_Level/OldVersions/API_Level_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Compatibility/Settings/API_Level/OldVersions/API_Level_V1.py -------------------------------------------------------------------------------- /DRM-free_label.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/DRM-free_label.en.svg -------------------------------------------------------------------------------- /Docs/!OldVersions/README/English/USA/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/!OldVersions/README/English/USA/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/README.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/GIMP/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/GIMP/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/!OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/!OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/Candroid_Graphic_Design_Tutorials/2022.12.07/Droid/WebM/Candroid-Droid_GIMP_GraphicDesignTutorial_Candroid-Settings.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/Candroid_Graphic_Design_Tutorials/2022.12.07/Droid/WebM/Candroid-Droid_GIMP_GraphicDesignTutorial_Candroid-Settings.webm -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/Candroid_Graphic_Design_Tutorials/2022.12.07/Wallpaper/WebM/Candroid-Wallpaper_GIMP_GraphicDesignTutorial_Candroid-Settings.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/Candroid_Graphic_Design_Tutorials/2022.12.07/Wallpaper/WebM/Candroid-Wallpaper_GIMP_GraphicDesignTutorial_Candroid-Settings.webm -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/GIMP/2.10.30/README.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/GIMP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/GIMP/README.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/Candroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/Candroid.png -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/Candroid_Template_1080pSolidColorWallpaper_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/Candroid_Template_1080pSolidColorWallpaper_V1_HighCompression.png -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/Primary_Assets/README.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/2022December/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/2022December/README.md -------------------------------------------------------------------------------- /Docs/Graphic-Design/Style-Guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Graphic-Design/Style-Guide/README.md -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/README.md -------------------------------------------------------------------------------- /Docs/Used-by/!OldVersions/README/English/USA/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Used-by/!OldVersions/README/English/USA/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Used-by/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/Used-by/README.md -------------------------------------------------------------------------------- /Docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Docs/pull_request_template.md -------------------------------------------------------------------------------- /GoDE/OldVersions/Docs/1/README/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/GoDE/OldVersions/Docs/1/README/README.txt -------------------------------------------------------------------------------- /GoDE/OldVersions/Docs/1/README/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/GoDE/OldVersions/Docs/1/README/README_V1.md -------------------------------------------------------------------------------- /GoDE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/GoDE/README.md -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-App-Store/PNG/Candroid-App-Store_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-App-Store/PNG/Candroid-App-Store_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Assistant/PNG/Candroid-Assistant_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Assistant/PNG/Candroid-Assistant_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Battery-Monitor/PNG/Candroid-Battery-Monitor_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Battery-Monitor/PNG/Candroid-Battery-Monitor_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Browser/PNG/Candroid-Browser_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Browser/PNG/Candroid-Browser_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Calculator/PNG/Candroid-Calculator_Icon_1000p_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Calculator/PNG/Candroid-Calculator_Icon_1000p_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Calendar/PNG/Candroid-Calendar_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Calendar/PNG/Candroid-Calendar_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Camera/PNG/Candroid-Camera_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Camera/PNG/Candroid-Camera_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Catalog/PNG/Candroid-Catalog_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Catalog/PNG/Candroid-Catalog_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Clock/PNG/Candroid-Clock_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Clock/PNG/Candroid-Clock_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Contacts/PNG/Candroid-Contacts_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Contacts/PNG/Candroid-Contacts_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Debug/PNG/Candroid-Debug_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Debug/PNG/Candroid-Debug_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Docs/PNG/Candroid-Docs_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Docs/PNG/Candroid-Docs_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Easter-Egg/PNG/Candroid-Easter-Egg_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Easter-Egg/PNG/Candroid-Easter-Egg_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-FileCabinet/PNG/Candroid-FIleCabinet_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-FileCabinet/PNG/Candroid-FIleCabinet_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Flashlight/PNG/Candroid-Flashlight_1024pxIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Flashlight/PNG/Candroid-Flashlight_1024pxIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Keyboard/PNG/Candroid-Keyboard_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Keyboard/PNG/Candroid-Keyboard_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Mail/PNG/Candroid-Mail_Icon_1000px_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Mail/PNG/Candroid-Mail_Icon_1000px_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Market/PNG/Candroid-Market_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Market/PNG/Candroid-Market_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Notepad/PNG/Candroid-Notepad_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Notepad/PNG/Candroid-Notepad_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Phone/PNG/Candroid-Phone_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Phone/PNG/Candroid-Phone_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Photo-Viewer/PNG/Candroid-Photo-Viewer_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Photo-Viewer/PNG/Candroid-Photo-Viewer_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Rotate/PNG/Candroid-Rotate_1024pxIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Rotate/PNG/Candroid-Rotate_1024pxIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Settings/PNG/Candroid-Settings_Icon_1000p_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Settings/PNG/Candroid-Settings_Icon_1000p_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-TV/PNG/Candroid-TV_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-TV/PNG/Candroid-TV_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Tube/PNG/Candroid-Tube_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Tube/PNG/Candroid-Tube_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Video/PNG/Candroid-Video_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Video/PNG/Candroid-Video_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Voicemail/PNG/Candroid-Voicemail_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Voicemail/PNG/Candroid-Voicemail_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid-Wallpaper/PNG/Candroid-Wallpaper_1000pIcon_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid-Wallpaper/PNG/Candroid-Wallpaper_1000pIcon_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Droids/Candroid/PNG/Candroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Droids/Candroid/PNG/Candroid.png -------------------------------------------------------------------------------- /Graphics/Icons/Debug/PNG/Debug-Icon_Striped1_241px_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Icons/Debug/PNG/Debug-Icon_Striped1_241px_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Icons/Debug/PNG/Debug-Icon_Striped2_241px_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Icons/Debug/PNG/Debug-Icon_Striped2_241px_V1_HighCompression.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-App-Store/Bag-dynamic-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-App-Store/Bag-dynamic-gradient.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Assistant/Ambox_blue_question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Assistant/Ambox_blue_question.svg -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Battery-Monitor/Battery1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Battery-Monitor/Battery1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Browser/Deer_park_globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Browser/Deer_park_globe.svg -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Calculator/Calculator-Icon-Android_Lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Calculator/Calculator-Icon-Android_Lollipop.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Calendar/Calendar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Calendar/Calendar2.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Camera/Camera_iOS6_Placeholder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Camera/Camera_iOS6_Placeholder.jpeg -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Catalog/Catalog-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Catalog/Catalog-Icon.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Clock/BlueClock1_999px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Clock/BlueClock1_999px.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Contacts/Apps-Contacts-icon-2456248871.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Contacts/Apps-Contacts-icon-2456248871.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Debug/Debug-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Debug/Debug-Icon.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Docs/Documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Docs/Documentation.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Easter-Egg/Blue_EasterEgg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Easter-Egg/Blue_EasterEgg.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-FileCabinet/FileCabinetIcon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-FileCabinet/FileCabinetIcon2.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Flashlight/Flashlight_Icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Flashlight/Flashlight_Icon1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Keyboard/Keyboard_Icon_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Keyboard/Keyboard_Icon_Blue.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Mail/Mail-Icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Mail/Mail-Icon1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Market/Blue_Shopping-Bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Market/Blue_Shopping-Bag.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Notepad/Notepad-Icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Notepad/Notepad-Icon-1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Phone/PhoneIcon1_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Phone/PhoneIcon1_Blue.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Photo-Viewer/Folder-Images-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Photo-Viewer/Folder-Images-Icon.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Rotate/RotateIcon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Rotate/RotateIcon_1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Settings/Gear-Silver-and-blue_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Settings/Gear-Silver-and-blue_1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-TV/Old_TV_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-TV/Old_TV_Icon.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Tube/VideoIcon1_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Tube/VideoIcon1_Blue.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Video/Video_Player_Tango-like_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Video/Video_Player_Tango-like_Icon.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Voicemail/Voicemail-Icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Voicemail/Voicemail-Icon1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid-Wallpaper/StripedWallpaperIcon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid-Wallpaper/StripedWallpaperIcon_1.png -------------------------------------------------------------------------------- /Graphics/Secondary-Icons/Candroid/PlaceholderX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Graphics/Secondary-Icons/Candroid/PlaceholderX.png -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/INSTALL -------------------------------------------------------------------------------- /K.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/K.desktop -------------------------------------------------------------------------------- /LICENSE-GPL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL.go -------------------------------------------------------------------------------- /LICENSE-GPL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL.java -------------------------------------------------------------------------------- /LICENSE-GPL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL.py -------------------------------------------------------------------------------- /LICENSE-GPL.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL.py3 -------------------------------------------------------------------------------- /LICENSE-GPL.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL.pyt -------------------------------------------------------------------------------- /LICENSE-GPL.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL.pyw -------------------------------------------------------------------------------- /LICENSE-GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL.txt -------------------------------------------------------------------------------- /LICENSE-GPL3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL3.go -------------------------------------------------------------------------------- /LICENSE-GPL3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL3.java -------------------------------------------------------------------------------- /LICENSE-GPL3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL3.py -------------------------------------------------------------------------------- /LICENSE-GPL3.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL3.py3 -------------------------------------------------------------------------------- /LICENSE-GPL3.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL3.pyt -------------------------------------------------------------------------------- /LICENSE-GPL3.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL3.pyw -------------------------------------------------------------------------------- /LICENSE-GPL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE-GPL3.txt -------------------------------------------------------------------------------- /LICENSE.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE.go -------------------------------------------------------------------------------- /LICENSE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE.java -------------------------------------------------------------------------------- /LICENSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE.py -------------------------------------------------------------------------------- /LICENSE.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE.py3 -------------------------------------------------------------------------------- /LICENSE.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE.pyt -------------------------------------------------------------------------------- /LICENSE.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE.pyw -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1 -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml -------------------------------------------------------------------------------- /OldVersions/CITATION/APA-Style/CITATION_V1.apa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CITATION/APA-Style/CITATION_V1.apa.txt -------------------------------------------------------------------------------- /OldVersions/CITATION/APA-Style/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CITATION/APA-Style/README.txt -------------------------------------------------------------------------------- /OldVersions/CITATION/BibTeX/CITATION_V1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CITATION/BibTeX/CITATION_V1.bib -------------------------------------------------------------------------------- /OldVersions/CITATION/CFF/CITATION_V1.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CITATION/CFF/CITATION_V1.cff -------------------------------------------------------------------------------- /OldVersions/CODEOWNERS/CODEOWNERS_V2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CODEOWNERS/CODEOWNERS_V2 -------------------------------------------------------------------------------- /OldVersions/CONTRIBUTING/Universal/1/1-100/CONTRIBUTING_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CONTRIBUTING/Universal/1/1-100/CONTRIBUTING_V1.md -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/COPYING_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/COPYING/English/1/1-100/COPYING_V1 -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/COPYING_V1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/COPYING/English/1/1-100/COPYING_V1.1 -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/CREDITS_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CREDITS/English/1/1-100/CREDITS_V1 -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/CREDITS_V1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/CREDITS/English/1/1-100/CREDITS_V1.1 -------------------------------------------------------------------------------- /OldVersions/Candroid_REPOLIST/1/1-100/Candroid_REPOLIST_V1.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/Candroid_REPOLIST/1/1-100/Candroid_REPOLIST_V1.urll -------------------------------------------------------------------------------- /OldVersions/Candroid_REPOLIST/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/Candroid_REPOLIST/1/1-100/README.txt -------------------------------------------------------------------------------- /OldVersions/Desktop.ini/V1_desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/Desktop.ini/V1_desktop.ini -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V1.1.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/EDITORCONFIG/1/1-100/V1.1.editorconfig -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V1.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/EDITORCONFIG/1/1-100/V1.editorconfig -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V2.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/EDITORCONFIG/1/1-100/V2.editorconfig -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V1.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V1.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V2.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V2.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V3.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V3.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITIGNORE/1/1-100/V1.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/GITIGNORE/1/1-100/V1.gitignore -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/INSTALL_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/INSTALL/English/1/1-100/INSTALL_V1 -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/INSTALL_V1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/INSTALL/English/1/1-100/INSTALL_V1.1 -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/CONFIG/YML/V1_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/ISSUE_TEMPLATE/CONFIG/YML/V1_config.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/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/Candroid/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/Candroid/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/Candroid/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/Candroid/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/Candroid/HEAD/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V6.yml -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/MISCELLANEOUS/YML/miscellaneous_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/ISSUE_TEMPLATE/MISCELLANEOUS/YML/miscellaneous_V1.yml -------------------------------------------------------------------------------- /OldVersions/KDESKTOP/K_V1.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/KDESKTOP/K_V1.desktop -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL/LICENSE-GPL_V1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL/LICENSE-GPL_V1.go -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL/LICENSE-GPL_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL/LICENSE-GPL_V1.java -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL/LICENSE-GPL_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL/LICENSE-GPL_V1.py -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL/LICENSE-GPL_V1.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL/LICENSE-GPL_V1.py3 -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL/LICENSE-GPL_V1.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL/LICENSE-GPL_V1.pyt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL/LICENSE-GPL_V1.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL/LICENSE-GPL_V1.pyw -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL/LICENSE-GPL_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL/LICENSE-GPL_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.go -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.java -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.py -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.py3 -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.pyt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.pyw -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/LICENSE_V1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/LICENSE_V1.go -------------------------------------------------------------------------------- /OldVersions/LICENSE/LICENSE_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/LICENSE_V1.java -------------------------------------------------------------------------------- /OldVersions/LICENSE/LICENSE_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/LICENSE_V1.py -------------------------------------------------------------------------------- /OldVersions/LICENSE/LICENSE_V1.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/LICENSE_V1.py3 -------------------------------------------------------------------------------- /OldVersions/LICENSE/LICENSE_V1.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/LICENSE_V1.pyt -------------------------------------------------------------------------------- /OldVersions/LICENSE/LICENSE_V1.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/LICENSE_V1.pyw -------------------------------------------------------------------------------- /OldVersions/LICENSE/LICENSE_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/LICENSE/LICENSE_V1.txt -------------------------------------------------------------------------------- /OldVersions/MAKEFILE/1/1-100/makefile_V1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/MAKEFILE/1/1-100/makefile_V1.mk -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/GoogleGo/PROJECT_LANG_3_V1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PROJECT_LANGUAGE/GoogleGo/PROJECT_LANG_3_V1.go -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Java/PROJECT_LANG_2_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PROJECT_LANGUAGE/Java/PROJECT_LANG_2_V1.java -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V1.py -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.py -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.py3 -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.pyt -------------------------------------------------------------------------------- /OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PROJECT_LANGUAGE/Python/PROJECT_LANG_1_V2.pyw -------------------------------------------------------------------------------- /OldVersions/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V1.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V10.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V11.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V12.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V13.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V14.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V15.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V2.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V3.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V4.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V5.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V6.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V7.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V8.md -------------------------------------------------------------------------------- /OldVersions/README/English/USA/1/1-100/README_V9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/README/English/USA/1/1-100/README_V9.md -------------------------------------------------------------------------------- /OldVersions/ROOTFILES/ROOTFILES_V1.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OldVersions/ROOTFILES/ROOTFILES_V1.base -------------------------------------------------------------------------------- /OriginalBluePrintPlans/December26th2020/CandroidPlans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/OriginalBluePrintPlans/December26th2020/CandroidPlans.md -------------------------------------------------------------------------------- /PROJECT_LANG_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/PROJECT_LANG_1.py -------------------------------------------------------------------------------- /PROJECT_LANG_1.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/PROJECT_LANG_1.py3 -------------------------------------------------------------------------------- /PROJECT_LANG_1.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/PROJECT_LANG_1.pyt -------------------------------------------------------------------------------- /PROJECT_LANG_1.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/PROJECT_LANG_1.pyw -------------------------------------------------------------------------------- /PROJECT_LANG_2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/PROJECT_LANG_2.java -------------------------------------------------------------------------------- /PROJECT_LANG_3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/PROJECT_LANG_3.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/README.md -------------------------------------------------------------------------------- /ROOTFILES.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/ROOTFILES.base -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/RepoData/Description/GitHub/OldVersions/English/USA/README.md -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README_V2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/RepoData/Description/GitHub/OldVersions/English/USA/README_V2.txt -------------------------------------------------------------------------------- /RepoData/Description/GitHub/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/RepoData/Description/GitHub/README.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SponsorButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/SponsorButton.png -------------------------------------------------------------------------------- /Standard_Apps/JAVA/Clock/GClock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Standard_Apps/JAVA/Clock/GClock.java -------------------------------------------------------------------------------- /Standard_Apps/JAVA/Clock/OldVersions/GClock_V1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Standard_Apps/JAVA/Clock/OldVersions/GClock_V1.java -------------------------------------------------------------------------------- /Stylesheets/CSS/CENTER.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Stylesheets/CSS/CENTER.css -------------------------------------------------------------------------------- /Stylesheets/CSS/CENTER_V1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Stylesheets/CSS/CENTER_V1.css -------------------------------------------------------------------------------- /Widgets/OldVersions/Docs/1/README/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Widgets/OldVersions/Docs/1/README/README_V1.md -------------------------------------------------------------------------------- /Widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/Widgets/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/_config.yml -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/desktop.ini -------------------------------------------------------------------------------- /makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/makefile.mk -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Candroid/HEAD/pull_request_template.md --------------------------------------------------------------------------------