initial POC shorts tab

Changelog: added
This commit is contained in:
Kai
2025-03-07 14:27:18 -06:00
parent c83a9924e2
commit f63f9dd6db
17 changed files with 1235 additions and 15 deletions
+11
View File
@@ -143,6 +143,10 @@ android {
}
buildFeatures {
buildConfig true
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.2"
}
sourceSets {
main {
@@ -215,6 +219,7 @@ dependencies {
//Database
implementation("androidx.room:room-runtime:2.6.1")
annotationProcessor("androidx.room:room-compiler:2.6.1")
debugImplementation 'androidx.compose.ui:ui-tooling:1.7.8'
ksp("androidx.room:room-compiler:2.6.1")
implementation("androidx.room:room-ktx:2.6.1")
@@ -228,4 +233,10 @@ dependencies {
testImplementation "org.mockito:mockito-core:5.4.0"
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
//Compose
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
implementation composeBom
androidTestImplementation composeBom
implementation 'androidx.compose.material3:material3'
}