├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── general_issue.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml ├── shelf │ ├── Uncommitted_changes_before_Checkout_at_29-03-2021_20_28_[Default_Changelist] │ │ └── shelved.patch │ └── Uncommitted_changes_before_Checkout_at_29-03-2021_20_28__Default_Changelist_.xml └── vcs.xml ├── CONTRIBUTING.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── google-services.json ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── tt │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── dsa.pdf │ │ ├── eec.pdf │ │ ├── holiday.pdf │ │ ├── math.pdf │ │ └── oop.pdf │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── tt │ │ │ ├── Lecturenotes.java │ │ │ ├── Login.java │ │ │ ├── MainActivity.java │ │ │ ├── MyMessagingService.java │ │ │ ├── PROFILE.java │ │ │ ├── PdfReaderActivity.java │ │ │ ├── PdfViewerActivity.java │ │ │ ├── adapter │ │ │ └── PdfListAdapter.java │ │ │ ├── check.java │ │ │ ├── contact.java │ │ │ ├── dsa.java │ │ │ ├── eec.java │ │ │ ├── faculty.java │ │ │ ├── holiday.java │ │ │ ├── math.java │ │ │ ├── oop.java │ │ │ ├── studentdatabase.java │ │ │ ├── syllabus.java │ │ │ ├── timetable.java │ │ │ └── todo │ │ │ ├── RoomDb │ │ │ ├── Todo.java │ │ │ ├── TodoDao.java │ │ │ └── TodoDatabase.java │ │ │ ├── TaskAddingActivity.java │ │ │ ├── TodoRV │ │ │ ├── TodoAdapter.java │ │ │ └── TodoListActivity.java │ │ │ ├── TodoRepository.java │ │ │ └── TodoViewModel.java │ └── res │ │ ├── drawable-v24 │ │ ├── ic_launcher_foreground.xml │ │ └── person.png │ │ ├── drawable │ │ ├── button_shape.xml │ │ ├── circular_shape.xml │ │ ├── contact.png │ │ ├── delete_2.png │ │ ├── delete_forever.xml │ │ ├── faculty.png │ │ ├── fb_btn.xml │ │ ├── google_btn.xml │ │ ├── gradient.xml │ │ ├── hl.png │ │ ├── holiday.png │ │ ├── ic_access_time_black_24dp.xml │ │ ├── ic_baseline_add_24.xml │ │ ├── ic_baseline_lock_24.xml │ │ ├── ic_date_range_black_24dp.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_playlist_add_black_24dp.xml │ │ ├── ic_to_do_list.xml │ │ ├── ic_todolist.xml │ │ ├── ic_waves.xml │ │ ├── icon.png │ │ ├── img_pdf.png │ │ ├── line.png │ │ ├── login_btn_shape.xml │ │ ├── login_design.jpg │ │ ├── logout.png │ │ ├── mailblack.png │ │ ├── main_bg.xml │ │ ├── no_border_circle.xml │ │ ├── notes.png │ │ ├── pdf_file.png │ │ ├── phoneblck.png │ │ ├── s1.png │ │ ├── s2.png │ │ ├── s3.png │ │ ├── s4.png │ │ ├── s5.png │ │ ├── s6.png │ │ ├── s7.png │ │ ├── search_view.xml │ │ ├── syllabus.png │ │ ├── tim.png │ │ ├── timetable.png │ │ ├── todolist.png │ │ ├── trash_bin.png │ │ └── user.png │ │ ├── font │ │ ├── roboto.xml │ │ ├── roboto_bold.xml │ │ └── roboto_medium.xml │ │ ├── layout │ │ ├── activity_contact.xml │ │ ├── activity_dsa.xml │ │ ├── activity_eec.xml │ │ ├── activity_faculty.xml │ │ ├── activity_holiday.xml │ │ ├── activity_lecturenotes.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_math.xml │ │ ├── activity_oop.xml │ │ ├── activity_pdf_reader.xml │ │ ├── activity_pdf_viewer.xml │ │ ├── activity_profile.xml │ │ ├── activity_syllabus.xml │ │ ├── activity_task_adding.xml │ │ ├── activity_timetable.xml │ │ ├── activity_todo_list.xml │ │ ├── list_item.xml │ │ └── pdf_list_item.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── .colors.xml.swp │ │ ├── colors.xml │ │ ├── font_certs.xml │ │ ├── ids.xml │ │ ├── preloaded_fonts.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── tt │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.github/ISSUE_TEMPLATE/general_issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Checkout_at_29-03-2021_20_28_[Default_Changelist]/shelved.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/shelf/Uncommitted_changes_before_Checkout_at_29-03-2021_20_28_[Default_Changelist]/shelved.patch -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Checkout_at_29-03-2021_20_28__Default_Changelist_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/shelf/Uncommitted_changes_before_Checkout_at_29-03-2021_20_28__Default_Changelist_.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/tt/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/androidTest/java/com/example/tt/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/dsa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/assets/dsa.pdf -------------------------------------------------------------------------------- /app/src/main/assets/eec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/assets/eec.pdf -------------------------------------------------------------------------------- /app/src/main/assets/holiday.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/assets/holiday.pdf -------------------------------------------------------------------------------- /app/src/main/assets/math.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/assets/math.pdf -------------------------------------------------------------------------------- /app/src/main/assets/oop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/assets/oop.pdf -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/Lecturenotes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/Lecturenotes.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/Login.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/MyMessagingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/MyMessagingService.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/PROFILE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/PROFILE.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/PdfReaderActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/PdfReaderActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/PdfViewerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/PdfViewerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/adapter/PdfListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/adapter/PdfListAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/check.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/check.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/contact.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/dsa.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/dsa.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/eec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/eec.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/faculty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/faculty.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/holiday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/holiday.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/math.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/math.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/oop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/oop.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/studentdatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/studentdatabase.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/syllabus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/syllabus.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/timetable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/timetable.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/RoomDb/Todo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/RoomDb/Todo.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/RoomDb/TodoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/RoomDb/TodoDao.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/RoomDb/TodoDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/RoomDb/TodoDatabase.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/TaskAddingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/TaskAddingActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/TodoRV/TodoAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/TodoRV/TodoAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/TodoRV/TodoListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/TodoRV/TodoListActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/TodoRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/TodoRepository.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/tt/todo/TodoViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/java/com/example/tt/todo/TodoViewModel.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable-v24/person.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/button_shape.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circular_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/circular_shape.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/contact.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/delete_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/delete_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/delete_forever.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/delete_forever.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/faculty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/faculty.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/fb_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/fb_btn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/google_btn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/hl.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/holiday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/holiday.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_access_time_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_access_time_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_add_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_baseline_add_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_lock_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_baseline_lock_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_date_range_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_date_range_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_playlist_add_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_playlist_add_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_to_do_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_to_do_list.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_todolist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_todolist.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_waves.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/ic_waves.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/img_pdf.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/line.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/login_btn_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/login_btn_shape.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/login_design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/login_design.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/logout.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mailblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/mailblack.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/main_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/main_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/no_border_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/no_border_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/notes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pdf_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/pdf_file.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/phoneblck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/phoneblck.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/s1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/s2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/s3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/s4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/s5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/s6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/s6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/s7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/s7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/search_view.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/syllabus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/syllabus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/tim.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/timetable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/timetable.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/todolist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/todolist.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/trash_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/trash_bin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/drawable/user.png -------------------------------------------------------------------------------- /app/src/main/res/font/roboto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/font/roboto.xml -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_bold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/font/roboto_bold.xml -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_medium.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/font/roboto_medium.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_contact.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_dsa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_dsa.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_eec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_eec.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_faculty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_faculty.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_holiday.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_holiday.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lecturenotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_lecturenotes.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_math.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_math.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_oop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_oop.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pdf_reader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_pdf_reader.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pdf_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_pdf_viewer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_syllabus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_syllabus.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_task_adding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_task_adding.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_timetable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_timetable.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_todo_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/activity_todo_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/pdf_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/layout/pdf_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/.colors.xml.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/values/.colors.xml.swp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/tt/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/app/src/test/java/com/example/tt/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Student-Clubs-VSSUT-Burla/College-Comrade/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------