Private
Public Access
1
0

Some progress on message list UI

This commit is contained in:
2023-07-07 00:11:13 -07:00
parent 27e3c09228
commit 16148949c8
16 changed files with 283 additions and 48 deletions

View File

@@ -5,12 +5,12 @@ plugins {
android {
namespace 'net.buzzert.kordophonedroid'
compileSdk 32
compileSdk 33
defaultConfig {
applicationId "net.buzzert.kordophonedroid"
minSdk 31
targetSdk 32
targetSdk 33
versionCode 1
versionName "1.0"
@@ -37,7 +37,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.1.1'
kotlinCompilerExtensionVersion '1.4.1'
}
packagingOptions {
resources {
@@ -47,6 +47,8 @@ android {
}
dependencies {
implementation 'androidx.compose.material3:material3:1.1.1'
// Navigation
def nav_version = "2.5.3"
@@ -74,6 +76,8 @@ dependencies {
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
implementation 'androidx.compose.material:material:1.1.1'
implementation 'androidx.compose.foundation:foundation:$compose_ui_version'
debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"
}