Gradle : more cleaning on app module
This commit is contained in:
parent
ef0252aa94
commit
286396aeba
2 changed files with 18 additions and 13 deletions
|
|
@ -1,17 +1,15 @@
|
||||||
plugins {
|
plugins {
|
||||||
id("io.element.android-compose-application")
|
id("io.element.android-compose-application")
|
||||||
id("org.jetbrains.kotlin.android")
|
id("org.jetbrains.kotlin.android")
|
||||||
alias(libs.plugins.ksp) version "1.7.20-1.0.7"
|
alias(libs.plugins.ksp)
|
||||||
id("com.google.firebase.appdistribution") version "3.0.2"
|
id("com.google.firebase.appdistribution") version "3.0.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "io.element.android.x"
|
namespace = "io.element.android.x"
|
||||||
compileSdk = 33
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "io.element.android.x"
|
applicationId = "io.element.android.x"
|
||||||
minSdk = 29
|
|
||||||
targetSdk = 33
|
targetSdk = 33
|
||||||
versionCode = 1
|
versionCode = 1
|
||||||
versionName = "1.0"
|
versionName = "1.0"
|
||||||
|
|
@ -122,17 +120,17 @@ dependencies {
|
||||||
implementation(project(":features:messages"))
|
implementation(project(":features:messages"))
|
||||||
|
|
||||||
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.2.0")
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.2.0")
|
||||||
implementation("io.github.raamcosta.compose-destinations:animations-core:1.7.23-beta")
|
implementation(libs.compose.destinations)
|
||||||
ksp("io.github.raamcosta.compose-destinations:ksp:1.7.23-beta")
|
ksp(libs.compose.destinations.processor)
|
||||||
|
|
||||||
implementation("androidx.core:core-ktx:1.9.0")
|
implementation(libs.androidx.corektx)
|
||||||
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
|
implementation(libs.androidx.lifecycle.runtime)
|
||||||
implementation("androidx.activity:activity-compose:1.6.1")
|
implementation(libs.androidx.lifecycle.viewmodel.compose)
|
||||||
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")
|
implementation(libs.androidx.activity.compose)
|
||||||
implementation("io.coil-kt:coil:2.2.1")
|
implementation(libs.coil)
|
||||||
implementation("com.jakewharton.timber:timber:5.0.1")
|
implementation(libs.timber)
|
||||||
implementation("com.airbnb.android:mavericks-compose:3.0.1")
|
implementation(libs.mavericks.compose)
|
||||||
|
|
||||||
implementation("com.airbnb.android:showkase:1.0.0-beta14")
|
implementation(libs.showkase)
|
||||||
ksp(libs.showkase.processor)
|
ksp(libs.showkase.processor)
|
||||||
}
|
}
|
||||||
|
|
@ -11,6 +11,8 @@ corektx = "1.9.0"
|
||||||
datastore = "1.0.0"
|
datastore = "1.0.0"
|
||||||
constraintlayout = "2.1.4"
|
constraintlayout = "2.1.4"
|
||||||
recyclerview = "1.2.1"
|
recyclerview = "1.2.1"
|
||||||
|
lifecycle = "2.5.1"
|
||||||
|
activity_compose = "1.6.1"
|
||||||
|
|
||||||
# Compose
|
# Compose
|
||||||
compose_compiler = "1.3.2"
|
compose_compiler = "1.3.2"
|
||||||
|
|
@ -57,6 +59,9 @@ androidx_datastore_preferences = { module = "androidx.datastore:datastore-prefer
|
||||||
androidx_datastore_datastore = { module = "androidx.datastore:datastore", version.ref = "datastore" }
|
androidx_datastore_datastore = { module = "androidx.datastore:datastore", version.ref = "datastore" }
|
||||||
androidx_constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" }
|
androidx_constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" }
|
||||||
androidx_recyclerview = { module = "androidx.recyclerview:recyclerview", version.ref = "recyclerview" }
|
androidx_recyclerview = { module = "androidx.recyclerview:recyclerview", version.ref = "recyclerview" }
|
||||||
|
androidx_lifecycle_runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecycle" }
|
||||||
|
androidx_lifecycle_viewmodel_compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycle" }
|
||||||
|
androidx_activity_compose = { module = "androidx.activity:activity-compose", version.ref = "activity_compose" }
|
||||||
|
|
||||||
androidx_compose_bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose_bom" }
|
androidx_compose_bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose_bom" }
|
||||||
androidx_compose_foundation = { group = "androidx.compose.foundation", name = "foundation" }
|
androidx_compose_foundation = { group = "androidx.compose.foundation", name = "foundation" }
|
||||||
|
|
@ -89,10 +94,12 @@ test_orchestrator = { module = "androidx.test:orchestrator", version.ref = "test
|
||||||
|
|
||||||
mavericks_compose = { module = "com.airbnb.android:mavericks-compose", version.ref = "mavericks" }
|
mavericks_compose = { module = "com.airbnb.android:mavericks-compose", version.ref = "mavericks" }
|
||||||
timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" }
|
timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" }
|
||||||
|
coil = { module = "io.coil-kt:coil", version.ref = "coil" }
|
||||||
coil_compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
|
coil_compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
|
||||||
datetime = { module = "org.jetbrains.kotlinx:kotlinx-datetime", version.ref = "datetime" }
|
datetime = { module = "org.jetbrains.kotlinx:kotlinx-datetime", version.ref = "datetime" }
|
||||||
serialization_json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serialization_json" }
|
serialization_json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serialization_json" }
|
||||||
compose_destinations = { module = "io.github.raamcosta.compose-destinations:animations-core", version.ref = "compose_destinations" }
|
compose_destinations = { module = "io.github.raamcosta.compose-destinations:animations-core", version.ref = "compose_destinations" }
|
||||||
|
compose_destinations_processor = {module = "io.github.raamcosta.compose-destinations:ksp", version.ref = "compose_destinations"}
|
||||||
showkase = { module = "com.airbnb.android:showkase", version.ref = "showkase" }
|
showkase = { module = "com.airbnb.android:showkase", version.ref = "showkase" }
|
||||||
showkase_processor = { module = "com.airbnb.android:showkase-processor", version.ref = "showkase" }
|
showkase_processor = { module = "com.airbnb.android:showkase-processor", version.ref = "showkase" }
|
||||||
jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" }
|
jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue