├── app ├── .gitignore ├── documentation │ ├── RM.docx │ ├── ER_diagram.png │ └── ER_diagram.vsdx ├── src │ └── main │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable │ │ │ ├── side_nav_bar.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_main.xml │ │ │ ├── ic_subjects.xml │ │ │ ├── ic_homework.xml │ │ │ ├── ic_schedule.xml │ │ │ ├── ic_teachers.xml │ │ │ ├── ic_credits.xml │ │ │ ├── ic_checkmark.xml │ │ │ ├── ic_exams.xml │ │ │ ├── ic_grades.xml │ │ │ └── ic_settings.xml │ │ ├── xml │ │ │ └── backup_descriptor.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── colors.xml │ │ │ ├── styles.xml │ │ │ ├── drawables.xml │ │ │ └── strings.xml │ │ ├── layout │ │ │ ├── content_main.xml │ │ │ ├── nav_header_main.xml │ │ │ ├── fragment_exams.xml │ │ │ ├── fragment_teachers.xml │ │ │ ├── fragment_subjects.xml │ │ │ ├── activity_main.xml │ │ │ ├── fragment_credits.xml │ │ │ ├── app_bar_main.xml │ │ │ ├── fragment_homework.xml │ │ │ ├── fragment_grades.xml │ │ │ ├── fragment_settings.xml │ │ │ ├── fragment_home.xml │ │ │ ├── activity_teacher_details.xml │ │ │ ├── activity_exam_details.xml │ │ │ ├── activity_grade_details.xml │ │ │ ├── activity_subject_details.xml │ │ │ └── activity_homework_details.xml │ │ ├── menu │ │ │ └── menu_main_drawer.xml │ │ └── values-de │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── schmitt_florian │ │ └── schoolplanner │ │ ├── gui │ │ ├── DatabaseCascadeDeleteConfirmDialog.java │ │ ├── CreditsFragment.java │ │ ├── TeacherDetailsActivity.java │ │ ├── ExamsFragment.java │ │ ├── GradeDetailsActivity.java │ │ ├── SubjectsFragment.java │ │ ├── TeachersFragment.java │ │ ├── SettingsFragment.java │ │ ├── HomeworkFragment.java │ │ └── SubjectDetailsActivity.java │ │ └── logic │ │ ├── objects │ │ ├── Grade.java │ │ ├── Schedule.java │ │ ├── Teacher.java │ │ ├── Weekday.java │ │ ├── Subject.java │ │ ├── Lesson.java │ │ ├── Exam.java │ │ ├── Homework.java │ │ └── Period.java │ │ ├── ExceptionHandler.java │ │ └── Settings.java ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── gradle.properties ├── gradlew.bat ├── README.md ├── CODE_OF_CONDUCT.md └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/documentation/RM.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/documentation/RM.docx -------------------------------------------------------------------------------- /app/documentation/ER_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/documentation/ER_diagram.png -------------------------------------------------------------------------------- /app/documentation/ER_diagram.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/documentation/ER_diagram.vsdx -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schmitt-Florian/SchoolPlanner/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Oct 29 21:26:55 CET 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_main.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_subjects.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_homework.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_schedule.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_teachers.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 16dp 4 | 16dp 5 | 6 | 160dp 7 | 16dp 8 | 8dp 9 | 32dp 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_credits.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_checkmark.xml: -------------------------------------------------------------------------------- 1 | 8 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_exams.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #03a9f4 4 | #0288d1 5 | #b3e5fc 6 | #ff9800 7 | #212121 8 | #757575 9 | #ffffff 10 | #bdbdbd 11 | #ff6600 12 | #ff9800 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio Navigation editor temp files 30 | .navigation/ 31 | 32 | # Android Studio captures folder 33 | captures/ 34 | 35 | # Intellij 36 | *.iml 37 | .idea/workspace.xml 38 | 39 | # Keystore files 40 | *.jks 41 | /.gradle/ 42 | /.idea/ 43 | 44 | # Other 45 | .DS_Store 46 | .externalNativeBuild 47 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in C:\Users\Flori\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_grades.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |