├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── img.png │ │ │ │ ├── logo.png │ │ │ │ ├── github.png │ │ │ │ ├── linkedin.png │ │ │ │ ├── note_logo.png │ │ │ │ ├── note_logo_1.png │ │ │ │ ├── note_logo_2.png │ │ │ │ ├── note_logo_3.png │ │ │ │ ├── ic_baseline_check_24.xml │ │ │ │ ├── ic_baseline_arrow_back_ios_24.xml │ │ │ │ ├── ic_baseline_clear_24.xml │ │ │ │ ├── about.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── font │ │ │ │ ├── hind_regular.ttf │ │ │ │ ├── assistant_regular.ttf │ │ │ │ ├── dancing_script_regular.ttf │ │ │ │ ├── playfair_display_regular.ttf │ │ │ │ └── plus_jakarta_sans_regular.ttf │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── values-night │ │ │ │ └── colors.xml │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── themes.xml │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── swancompany │ │ │ │ └── journal │ │ │ │ ├── data │ │ │ │ ├── models │ │ │ │ │ └── NoteModel.kt │ │ │ │ ├── daos │ │ │ │ │ └── NoteDao.kt │ │ │ │ └── database │ │ │ │ │ └── NoteDatabase.kt │ │ │ │ ├── ui │ │ │ │ ├── JournalAppScreens.kt │ │ │ │ ├── presentation │ │ │ │ │ ├── addNoteScreen │ │ │ │ │ │ ├── AddNoteViewModel.kt │ │ │ │ │ │ ├── AddNoteTopBar.kt │ │ │ │ │ │ └── AddNoteScreen.kt │ │ │ │ │ ├── homeScreen │ │ │ │ │ │ ├── HomeViewModel.kt │ │ │ │ │ │ ├── HomeTopBar.kt │ │ │ │ │ │ └── HomeScreen.kt │ │ │ │ │ ├── aboutScreen │ │ │ │ │ │ ├── AboutTopBar.kt │ │ │ │ │ │ └── AboutScreen.kt │ │ │ │ │ └── updateNoteScreen │ │ │ │ │ │ ├── UpdateNoteViewModel.kt │ │ │ │ │ │ ├── UpdateNoteTopBar.kt │ │ │ │ │ │ └── UpdateNoteScreen.kt │ │ │ │ ├── theme │ │ │ │ │ ├── Type.kt │ │ │ │ │ ├── Color.kt │ │ │ │ │ └── Theme.kt │ │ │ │ └── JournalApp.kt │ │ │ │ ├── domain │ │ │ │ └── NoteRepository.kt │ │ │ │ └── MainActivity.kt │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── swancompany │ │ │ └── journal │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── swancompany │ │ └── journal │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle ├── .idea ├── .gitignore ├── compiler.xml ├── misc.xml ├── gradle.xml └── inspectionProfiles │ └── Project_Default.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle ├── LICENSE ├── README.md ├── gradle.properties ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/img.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/github.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/linkedin.png -------------------------------------------------------------------------------- /app/src/main/res/font/hind_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/font/hind_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/drawable/note_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/note_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/note_logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/note_logo_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/note_logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/note_logo_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/note_logo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/drawable/note_logo_3.png -------------------------------------------------------------------------------- /app/src/main/res/font/assistant_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/font/assistant_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/dancing_script_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/font/dancing_script_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/playfair_display_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/font/playfair_display_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/plus_jakarta_sans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/font/plus_jakarta_sans_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #1A160F 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kumarsushil10/journal-note/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #090909 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |