Creation of UI to display message and to send messages.

- Recycler view created
 - layout for message created
 - Two way messaging created with random message trigger after message submission
 - Messages are stored in room database and persisted there
This commit is contained in:
2020-09-16 14:34:45 +01:00
parent d6d5475fc4
commit d6652e086e
23 changed files with 544 additions and 43 deletions

View File

@@ -10,7 +10,7 @@ android {
defaultConfig {
applicationId "com.example.h_mal.messengerapp"
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 30
versionCode 1
versionName "1.0"
@@ -42,6 +42,8 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation "androidx.cardview:cardview:1.0.0"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'