0.9.0 - New loading system(much faster) + New between screen transitions + New snackbar(vertical animation + visuals) + New selection toolbar(translate + dictionary options) in ReaderScreen + New top app bar in SettingsScreen and nested categories + New updating system in BookInfo(updating text, author and description of the book) + Tablet UI support(on wide screens NavigationBar -> NavigationRail) + New app icon + New error handling system(it won't let you add/update book if it's not valid) + New theme(+new names) + Small bugs fixed.. + General performance optimisation(still in progress).
This commit is contained in:
parent
5a966e9d9d
commit
6806ac904c
136 changed files with 2580 additions and 911 deletions
|
|
@ -2,10 +2,7 @@ plugins {
|
|||
id("com.android.application")
|
||||
id("org.jetbrains.kotlin.android")
|
||||
id("com.google.devtools.ksp")
|
||||
|
||||
id("com.google.dagger.hilt.android")
|
||||
kotlin("kapt")
|
||||
|
||||
id("kotlin-parcelize")
|
||||
}
|
||||
|
||||
|
|
@ -18,7 +15,7 @@ android {
|
|||
minSdk = 26
|
||||
targetSdk = 34
|
||||
versionCode = 1
|
||||
versionName = "0.8.0"
|
||||
versionName = "0.9.0"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
|
|
@ -62,35 +59,35 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
val composeVersion = "1.5.7"
|
||||
|
||||
// Default
|
||||
implementation("androidx.core:core-ktx:1.12.0")
|
||||
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
|
||||
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
|
||||
implementation("androidx.activity:activity-compose:1.8.2")
|
||||
|
||||
// Compose BOM libraries
|
||||
implementation(platform("androidx.compose:compose-bom:2024.01.00"))
|
||||
implementation("androidx.compose.ui:ui:$composeVersion")
|
||||
implementation("androidx.compose.ui:ui-graphics:$composeVersion")
|
||||
implementation("androidx.compose.ui:ui-tooling-preview:$composeVersion")
|
||||
implementation("androidx.compose.ui:ui-android:1.6.0")
|
||||
implementation("androidx.compose.material3:material3:1.1.2")
|
||||
implementation("androidx.compose.material:material:1.6.0")
|
||||
implementation("androidx.compose.ui:ui")
|
||||
implementation("androidx.compose.ui:ui-graphics")
|
||||
implementation("androidx.compose.ui:ui-tooling-preview")
|
||||
implementation("androidx.compose.ui:ui-android")
|
||||
implementation("androidx.compose.material3:material3")
|
||||
implementation("androidx.compose.material3:material3-window-size-class")
|
||||
implementation("androidx.compose.material:material")
|
||||
|
||||
// Unit tests
|
||||
testImplementation("androidx.test:core:latest.release")
|
||||
testImplementation("junit:junit:latest.release")
|
||||
testImplementation("androidx.arch.core:core-testing:latest.release")
|
||||
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:latest.release")
|
||||
testImplementation("com.google.truth:truth:1.2.0")
|
||||
testImplementation("com.google.truth:truth:1.4.2")
|
||||
testImplementation("androidx.test.ext:truth:1.5.0")
|
||||
testImplementation("com.squareup.okhttp3:mockwebserver:latest.release")
|
||||
testImplementation("io.mockk:mockk:latest.release")
|
||||
debugImplementation("androidx.compose.ui:ui-test-manifest:1.5.4")
|
||||
debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.3")
|
||||
|
||||
// Instrumentation tests
|
||||
androidTestImplementation("com.google.dagger:hilt-android-testing:latest.release")
|
||||
kaptAndroidTest("com.google.dagger:hilt-android-compiler:latest.release")
|
||||
androidTestImplementation("junit:junit:latest.release")
|
||||
androidTestImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:latest.release")
|
||||
androidTestImplementation("androidx.arch.core:core-testing:latest.release")
|
||||
|
|
@ -102,17 +99,16 @@ dependencies {
|
|||
androidTestImplementation("androidx.test:runner:latest.release")
|
||||
|
||||
// All dependencies
|
||||
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2")
|
||||
implementation("androidx.compose.material:material-icons-extended:1.5.4")
|
||||
implementation("androidx.activity:activity-compose:1.8.2")
|
||||
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0")
|
||||
implementation("androidx.compose.material:material-icons-extended")
|
||||
implementation("com.google.accompanist:accompanist-swiperefresh:0.24.2-alpha")
|
||||
|
||||
// Dagger - Hilt
|
||||
implementation("com.google.dagger:hilt-android:2.50")
|
||||
kapt("com.google.dagger:hilt-android-compiler:2.50")
|
||||
implementation("com.google.dagger:hilt-android:2.51")
|
||||
ksp("com.google.dagger:hilt-android-compiler:2.51")
|
||||
implementation("com.google.dagger:hilt-compiler:latest.release")
|
||||
kapt("androidx.hilt:hilt-compiler:latest.release")
|
||||
implementation("androidx.hilt:hilt-navigation-compose:1.1.0")
|
||||
ksp("androidx.hilt:hilt-compiler:latest.release")
|
||||
implementation("androidx.hilt:hilt-navigation-compose:1.2.0")
|
||||
|
||||
// Room
|
||||
implementation("androidx.room:room-runtime:2.6.1")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue