{"id":20434824,"url":"https://github.com/xander180/schooltracker","last_synced_at":"2026-05-06T00:34:42.711Z","repository":{"id":233357875,"uuid":"770086312","full_name":"Xander180/SchoolTracker","owner":"Xander180","description":"WGU Project for Mobile Application Development","archived":false,"fork":false,"pushed_at":"2024-04-29T17:23:46.000Z","size":324,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-15T19:28:06.115Z","etag":null,"topics":["android","androidstudio","java","sqlite","wgu-student-project"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Xander180.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":"2024-03-10T21:45:41.000Z","updated_at":"2024-04-29T17:23:49.000Z","dependencies_parsed_at":"2024-04-15T23:20:16.522Z","dependency_job_id":"f5009274-0b01-4aca-8cb8-684c60a6c1f9","html_url":"https://github.com/Xander180/SchoolTracker","commit_stats":null,"previous_names":["xander180/schooltracker"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xander180%2FSchoolTracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xander180%2FSchoolTracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xander180%2FSchoolTracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xander180%2FSchoolTracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Xander180","download_url":"https://codeload.github.com/Xander180/SchoolTracker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241977382,"owners_count":20051816,"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","androidstudio","java","sqlite","wgu-student-project"],"created_at":"2024-11-15T08:29:07.302Z","updated_at":"2025-10-28T08:49:23.501Z","avatar_url":"https://github.com/Xander180.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WGU Mobile Application Development - C196\n\n## Overview\nThis Android application is a basic student scheduler as defined by the requirements of C196.  It allows a student to:\n\n- Track Terms\n- Track Courses in a given Term\n- Track Assessments in a given Course\n- Track Instructors and their contact information and associate them with a Course\n\n## Android Version and Hardware\nThis project was designed to be used with Android API 28 (Pie).  This project was tested on a Pixel 3a (Emulator) and a Pixel 4a (Physical).  See the list of Libraries used for additional versioning information.\n\n## Libraries Used\nAs of submission, here is the list of libraries used in the gradle file:\n\n```gradle\ndependencies {\n    implementation(libs.appcompat)\n    implementation(libs.material)\n    implementation(libs.activity)\n    implementation(libs.constraintlayout)\n    testImplementation(libs.junit)\n    androidTestImplementation(libs.ext.junit)\n    androidTestImplementation(libs.espresso.core)\n    // Room components\n    implementation(\"androidx.room:room-runtime:2.6.1\")\n    annotationProcessor(\"androidx.room:room-compiler:2.6.1\")\n    androidTestImplementation(\"androidx.room:room-testing:2.6.1\")\n}\n```\n\n## How to build\nOpen this project in Android Studio and build.  As long as the gradle file is there, everything should build successfully.\n\n## StoryBoard and How to Use the App\nThe app consists of 1 primary activity and 4 sub activities.\n\n### The Main Activity\n![1-MainMenu](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/8af6e052-4afd-4089-ab17-f96610560bb7)\n\nThe main screen provides navigation to the 4 sub-activities. There is also a submenu for adding sample data and deleting all data.\n\n#### Navigate to the Sub-Activities\n\nIn order to navigate to the sub-activies of the app, simply click on any of the buttons (Terms, Courses, etc.)\n\n### Term Activity\n\nThe Term activity allows the user to view their list of terms.  They can go to a detailed view of the term by clicking on the button.  They can also create a new term by hitting the + button.\n\n![2-TermActivity](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/29a5b59a-bb79-47dc-a65f-0458b43a3081)\n\n#### Term Details Activity\n\nBy selecting the Term Button the user opens the Term Details Activity (`TermDetailsActivity.java`).  The Term Details Activity allows the user to view the term's details as well as add courses to the term. The user\nmay also edit or delete the selected term. Terms cannot be deleted if there are associated courses.\n\n\n![3-TermDetails](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/7d9d6d87-af8f-402e-8909-a350dbbd0140)\n\n##### Add a Course to a Term\n\nTo add a course to a term, the user should click the + icon in the Term Detail Activity. The course list popup menu is scrollable.\n\nOnce the course is added, it will show up in the Term Details section.\n\n![14-AddAssoicatedCourses](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/6d3326c5-1f76-47d6-badc-952b5233dc03)\n\n\n\n#### Term Edit Activity\n\nBy selecting the edit icon Floating Action Button, the user navigates to the Term Edit Activity (`TermEditActivity.java`).  In that activity, the user can edit the Term title, start date, and end date.\n\n![4-TermEdit](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/4bc118b6-327e-442f-aa3a-dcf8c55b95c1)\n\n\nWhen the user is done editing, they can hit the Save button in the top right of the screen to save the edited term.\n\n\n### Courses Activity\n\nThe Courses activity allows the user to view their list of courses.  They can go to a detailed view of the course by clicking on the button.  They can also create a new course by hitting the + button.\n\n![5-CourseActivity](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/72ee1537-044c-4de7-8ce2-5547251a0635)\n\n#### Course Details Activity\n\nBy selecting the Course Button, the user opens the Course Details Activity (`CourseDetailsActivity.java`).  The Course Details Activity allows the user to view the course's details as well as add assessments and instructors to the course.\nThe user may also edit or delete the selected course. There is also a submenu at the top right corner where the user can set a notification reminder for when the course is starting and ending.\n\n![6-CourseDetails](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/7b6f893b-86c4-4643-962c-ca74edde62b1)\n\n\n\n#### Course Edit Activity\n\nBy selecting the edit icon Floating Action Button, the user navigates to the Course Edit Activity (`CourseEditActivity.java`).  In that activity, the user can edit the Term title, start date, end date, course status, and add an optional note.\n\n![7-CourseEdit](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/c058148d-8bf5-4ba7-a0a3-cca0aa32ccd2)\n\n\n### Assessment Activity\n\nThe Assessment activity allows the user to view their list of assessments.  They can go to a detailed view of the assessment by clicking on the button.  They can also create a new assessment by hitting the + button.\n\n![8-AssessmentActivity](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/dc0e202f-5377-468c-815a-f9d28df49f76)\n\n\n#### Assessment Details Activity\n\nBy selecting the Assessment Button, the user opens the Assessment Details Activity (`AssessmentDetailsActivity.java`).  The Assessment Details Activity allows the user to view the assessment's details.\nThe user may also edit or delete the selected assessment. There is also a submenu at the top right corner where the user can set a notification reminder for when the assessment is due.\n\n![9-AssessmentDetails](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/01cd535f-a244-474d-b638-5f172e3c099c)\n\n\n#### Assessment Edit Activity\n\nBy selecting the edit icon Floating Action Button, the user navigates to the Assessment Edit Activity (`AssessmentEditActivity.java`).  In that activity, the user can edit the assessment title, due date, and assessment type.\n\n![10-AssessmentEdit](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/8fa48910-2744-4b04-8104-a72d32e0af86)\n\n\n\n### Instructor Activity\n\nThe Instructor Activity provides a location for the user to view their course instructors and their contact information.  Instructors can be assigned to a course in the course details page.\n\n![11-InstructorActivity](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/e3f42d13-1c6b-498c-aa25-5b32fcdca14f)\n\n\n#### Instructor Details Activity\n\nBy selecting the Instructor Button, the user opens the Instructor Details Activity (`InstructorDetailsActivity.java`).  The Instructor Details Activity allows the user to view the instructor's contact information.\nThe user may also edit or delete the selected instructor.\n\n![12-InstructorDetails](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/cad278e0-c4fe-4fd0-a439-a9236afaf743)\n\n\n#### Instructor Edit Activity\n\nBy selecting the edit icon Floating Action Button, the user navigates to the Instructor Edit Activity (`InstructorEditActivity.java`).  In that activity, the user can edit the instructor's name, email address, and phone number.\n\n![13-InstructorEdit](https://github.com/Xander180/WGU-C196-SchoolTracker/assets/67243244/fd006b69-8f00-4d51-a8bc-b679381b465a)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxander180%2Fschooltracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxander180%2Fschooltracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxander180%2Fschooltracker/lists"}