Simple Note App
Note App is a simple Android application to store daily notes in the internal database of the application and can store an image or a link
Screen Recourding
lv_0_20211119184715_Trim.mp4
Dependencies
# room database
def room_version = "2.3.0"
implementation "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"
# coroutines
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0'
# enable data binding
buildFeatures {
dataBinding true
}
Implementation Language
- Kotlin
- xml