fd17df80a8
Kotlin/Compose client for F7cloud (mail, files, talk, calendar, contacts, tasks, support). Current version: 0.5.113 (build 121).
46 lines
1.4 KiB
Groovy
46 lines
1.4 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'org.jetbrains.kotlin.plugin.compose'
|
|
}
|
|
|
|
android {
|
|
namespace 'ru.forbion.f7cloud.feature.files'
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
minSdk 26
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core:auth')
|
|
implementation project(':core:database')
|
|
implementation project(':core:network')
|
|
implementation project(':core:designsystem')
|
|
|
|
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
|
|
implementation composeBom
|
|
implementation 'androidx.compose.ui:ui'
|
|
implementation 'androidx.compose.material3:material3'
|
|
implementation 'androidx.compose.foundation:foundation'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.8.1'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1'
|
|
implementation 'org.json:json:20240303'
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
implementation 'androidx.activity:activity-compose:1.9.0'
|
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
|
implementation 'io.coil-kt:coil-compose:2.6.0'
|
|
implementation 'io.coil-kt:coil-svg:2.6.0'
|
|
}
|