├── .gitignore ├── .idea ├── .gitignore ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── dictionaries │ └── theapache64.xml ├── gradle.xml ├── jarRepositories.xml ├── markdown-navigator-enh.xml ├── markdown-navigator.xml ├── misc.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── theapache64 │ │ └── notes │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── theapache64 │ │ │ └── notes │ │ │ ├── NotesApp.kt │ │ │ ├── data │ │ │ ├── NotesRepo.kt │ │ │ └── remote │ │ │ │ ├── ApiInterface.kt │ │ │ │ ├── addnote │ │ │ │ └── AddNoteRequest.kt │ │ │ │ └── getnotes │ │ │ │ └── Note.kt │ │ │ ├── di │ │ │ └── modules │ │ │ │ └── NetworkModule.kt │ │ │ ├── features │ │ │ ├── addnote │ │ │ │ ├── AddNoteActivity.kt │ │ │ │ └── AddNoteViewModel.kt │ │ │ └── notes │ │ │ │ ├── NotesActivity.kt │ │ │ │ ├── NotesAdapter.kt │ │ │ │ └── NotesViewModel.kt │ │ │ └── utils │ │ │ ├── Const.kt │ │ │ ├── calladapter │ │ │ └── flow │ │ │ │ ├── FlowResourceCallAdapter.kt │ │ │ │ ├── FlowResourceCallAdapterFactory.kt │ │ │ │ └── Resource.kt │ │ │ └── livedata │ │ │ └── SingleLiveEvent.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_add_note.xml │ │ ├── activity_main.xml │ │ └── item_note.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── theapache64 │ └── notes │ └── ExampleUnitTest.kt ├── demo.png ├── gpm.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── montage.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Notes -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/dictionaries/theapache64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/dictionaries/theapache64.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator-enh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/markdown-navigator-enh.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/theapache64/notes/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/androidTest/java/com/theapache64/notes/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/NotesApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/NotesApp.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/data/NotesRepo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/data/NotesRepo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/data/remote/ApiInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/data/remote/ApiInterface.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/data/remote/addnote/AddNoteRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/data/remote/addnote/AddNoteRequest.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/data/remote/getnotes/Note.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/data/remote/getnotes/Note.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/di/modules/NetworkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/di/modules/NetworkModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/features/addnote/AddNoteActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/features/addnote/AddNoteActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/features/addnote/AddNoteViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/features/addnote/AddNoteViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/features/notes/NotesActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/features/notes/NotesActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/features/notes/NotesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/features/notes/NotesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/features/notes/NotesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/features/notes/NotesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/utils/Const.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/utils/Const.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/utils/calladapter/flow/FlowResourceCallAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/utils/calladapter/flow/FlowResourceCallAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/utils/calladapter/flow/FlowResourceCallAdapterFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/utils/calladapter/flow/FlowResourceCallAdapterFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/utils/calladapter/flow/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/utils/calladapter/flow/Resource.kt -------------------------------------------------------------------------------- /app/src/main/java/com/theapache64/notes/utils/livedata/SingleLiveEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/java/com/theapache64/notes/utils/livedata/SingleLiveEvent.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_add_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/layout/activity_add_note.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/layout/item_note.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/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/theapache64/notes/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/theapache64/notes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/theapache64/notes/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/app/src/test/java/com/theapache64/notes/ExampleUnitTest.kt -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/demo.png -------------------------------------------------------------------------------- /gpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/gpm.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/gradlew.bat -------------------------------------------------------------------------------- /montage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/notes/HEAD/montage.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Notes" --------------------------------------------------------------------------------