book-story/app/build.gradle.kts
Atte149 a6f8b6782a feat(tts): implement TTS jobs screen with bookshelf-api integration
- Add domain models, repository, and use cases for TTS engines/voices/jobs
- Add TtsDownloadWorker to poll job status and download completed audio
- Add TtsScreen/TtsModel/TtsContent with engine/voice selection and job creation
- Add TTS button to RemoteLibraryContent book cards
- Add Hilt WorkManager support and repository binding
- Add TTS string resources
2026-06-16 11:58:10 +03:00

183 lines
No EOL
5.7 KiB
Kotlin

plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.plugin.compose")
id("com.google.devtools.ksp")
id("com.google.dagger.hilt.android")
id("kotlin-parcelize")
id("com.mikepenz.aboutlibraries.plugin")
id("androidx.room")
}
android {
namespace = "org.dueattendant149.bookshelf"
compileSdk = 36
// Default configuration
defaultConfig {
applicationId = "org.dueattendant149.bookshelf"
minSdk = 26
targetSdk = 36
versionCode = 14
versionName = "1.8.0"
vectorDrawables {
useSupportLibrary = true
}
}
// Build types configuration
buildTypes {
getByName("debug") {
applicationIdSuffix = ".debug"
}
getByName("release") {
isMinifyEnabled = true
isShrinkResources = false
proguardFiles("proguard-rules.pro")
}
create("release-debug") {
initWith(getByName("release"))
applicationIdSuffix = ".release.debug"
signingConfig = signingConfigs.getByName("debug")
}
}
// Kotlin configuration
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
// Room configuration
ksp {
arg("room.schemaLocation", "$projectDir/schemas")
}
room {
schemaDirectory("$projectDir/schemas")
}
buildFeatures {
buildConfig = true
compose = true
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
excludes += "/META-INF/gradle/incremental.annotation.processors"
}
}
}
// About Libraries configuration
aboutLibraries {
registerAndroidTasks = false
prettyPrint = true
filterVariants = arrayOf("debug", "release", "release-debug")
excludeFields = arrayOf("generated", "funding", "description")
}
dependencies {
// Core
implementation("androidx.core:core-ktx:1.17.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.9.4")
implementation("androidx.activity:activity-compose:1.11.0")
// Compose BOM libraries
// Compose BOM was eliminated - it is recognized as Closed Source in AboutLibraries..
// although it is not.
implementation("androidx.compose.foundation:foundation:1.9.3")
implementation("androidx.compose.animation:animation:1.9.3")
implementation("androidx.compose.animation:animation-android:1.9.3")
implementation("androidx.compose.foundation:foundation-layout:1.9.3")
implementation("androidx.compose.ui:ui:1.9.3")
implementation("androidx.compose.ui:ui-graphics:1.9.3")
implementation("androidx.compose.ui:ui-android:1.9.3")
implementation("androidx.compose.material3:material3:1.5.0-alpha06")
implementation("androidx.compose.material3:material3-window-size-class:1.4.0")
implementation("androidx.compose.material:material-icons-extended:1.7.8")
implementation("androidx.compose.material:material:1.9.3")
// All dependencies
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1")
implementation("com.google.accompanist:accompanist-swiperefresh:0.36.0")
// Dagger - Hilt
implementation("com.google.dagger:hilt-android:2.57.2")
ksp("com.google.dagger:hilt-android-compiler:2.57.2")
implementation("com.google.dagger:hilt-compiler:2.57.2")
ksp("androidx.hilt:hilt-compiler:1.2.0")
implementation("androidx.hilt:hilt-navigation-compose:1.2.0")
// Room
implementation("androidx.room:room-runtime:2.7.2")
ksp("androidx.room:room-compiler:2.7.2")
// Kotlin Extensions and Coroutines support for Room
implementation("androidx.room:room-ktx:2.7.2")
// Datastore (Settings)
implementation("androidx.datastore:datastore-preferences:1.1.7")
// Splash Screen API
implementation("androidx.core:core-splashscreen:1.0.1")
// SAF
implementation("com.anggrayudi:storage:2.2.0")
// PDF parser
implementation("com.tom-roush:pdfbox-android:2.0.27.0")
// EPUB parser
implementation("org.jsoup:jsoup:1.21.2")
// Language Switcher
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("androidx.appcompat:appcompat-resources:1.7.1")
// Coil for loading images
implementation("io.coil-kt:coil-compose:2.7.0")
// Open source libraries
implementation("com.mikepenz:aboutlibraries-core:11.4.0")
implementation("com.mikepenz:aboutlibraries-compose-m3:11.4.0")
// Drag & Drop
implementation("sh.calvin.reorderable:reorderable:2.4.3")
// Scrollbar
implementation("com.github.nanihadesuka:LazyColumnScrollbar:2.2.0")
// Markdown
implementation("org.commonmark:commonmark:0.26.0")
// Json
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0")
// Network (bookshelf-api + ABS)
implementation("com.squareup.retrofit2:retrofit:2.11.0")
implementation("com.squareup.retrofit2:converter-kotlinx-serialization:2.11.0")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("com.squareup.okhttp3:logging-interceptor:4.12.0")
// Audio (Media3 / ExoPlayer)
implementation("androidx.media3:media3-exoplayer:1.6.0")
implementation("androidx.media3:media3-session:1.6.0")
implementation("androidx.media3:media3-ui:1.6.0")
implementation("androidx.media3:media3-datasource-okhttp:1.6.0")
// Background work (cache, TTS sync)
implementation("androidx.work:work-runtime-ktx:2.10.0")
implementation("androidx.hilt:hilt-work:1.2.0")
}