{"id":16108937,"url":"https://github.com/sbis04/quotes_trivia","last_synced_at":"2025-03-18T09:30:37.955Z","repository":{"id":121353132,"uuid":"294967377","full_name":"sbis04/quotes_trivia","owner":"sbis04","description":"Android sample app to get familiarized with Navigation Component","archived":false,"fork":false,"pushed_at":"2020-10-28T03:25:29.000Z","size":2430,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-28T08:29:57.279Z","etag":null,"topics":["android","navigation-component"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sbis04.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-12T15:08:56.000Z","updated_at":"2024-05-09T17:49:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"cc4d2c65-664d-4d1b-89d8-c8c817ef78a3","html_url":"https://github.com/sbis04/quotes_trivia","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbis04%2Fquotes_trivia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbis04%2Fquotes_trivia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbis04%2Fquotes_trivia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbis04%2Fquotes_trivia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sbis04","download_url":"https://codeload.github.com/sbis04/quotes_trivia/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243910666,"owners_count":20367546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","navigation-component"],"created_at":"2024-10-09T19:29:08.806Z","updated_at":"2025-03-18T09:30:37.950Z","avatar_url":"https://github.com/sbis04.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eQuotes Trivia\u003c/h1\u003e\n\n**Quotes Trivia** is simple trivia game where you have to pick the notable humans in history that originally said the memorable quote in a multiple-choice challenge. At the end of each game you will get a score based on the number of correct answers you have selected. You can also share you score with others.\n\n\u003e Android sample app to get familiarized with **Navigation Component**\n\n\u003ch2 align=\"center\"\u003eApp in action\u003c/h2\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/sbis04/quotes_trivia/raw/master/screenshot/app_anim.gif\" alt=\"App Animation\" /\u003e\n\u003c/p\u003e\n\n## Navigation Graph\n\nIt manages your app's navigation. It is a resource file that consists of the **destinations** along with the **actions**, which are used for navigating to another destination from the current one.\n\nThe **Navigation Graph** of the Quotes Trivia looks like this: \n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/sbis04/quotes_trivia/raw/master/screenshot/nav_graph_complete.png\" alt=\"Navigation Graph\" /\u003e\n\u003c/p\u003e\n\n## Codemagic YAML template\n\nYou can use the following `codemagic.yaml` file for generating and uploading the build analysis result to [SonarQube](https://www.sonarqube.org/) using [Codemagic](https://codemagic.io/start/).\n\n```yaml\nworkflows:\n    android-app:\n        name: SonarQube Analysis\n        environment:\n            vars:\n                SONAR_TOKEN: Encrypted(...) # enter the encrypted version of your SonarCloud token\n                SONAR_PROJECT_KEY: Encrypted(...) # enter the encrypted version of your SonarCloud project key\n                SONAR_ORG_KEY: Encrypted(...) # enter the encrypted version of your SonarCloud organization key\n                SONAR_PROJECT_VERSION: 1.0.0-cm\n        scripts:\n            - |\n              # Generate debug build\n              ./gradlew assembleDebug\n            - |\n              # Generate and upload code analysis report\n              ./gradlew sonarqube \\\n              -Dsonar.projectKey=$SONAR_PROJECT_KEY \\\n              -Dsonar.organization=$SONAR_ORG_KEY \\\n              -Dsonar.host.url=https://sonarcloud.io \\\n              -Dsonar.login=$SONAR_TOKEN \\\n              -Dsonar.projectVersion=$SONAR_PROJECT_VERSION\n        artifacts:\n            - app/build/outputs/**/*.apk\n        publishing:\n            email:\n                recipients:\n                    - name@example.com # enter your email\n```\n\n## License\n\nCopyright (c) 2020 Souvik Biswas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbis04%2Fquotes_trivia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsbis04%2Fquotes_trivia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbis04%2Fquotes_trivia/lists"}