mirror of
https://github.com/skydoves/android-developer-roadmap.git
synced 2024-12-27 00:00:02 +03:00
54 lines
1.4 KiB
Groovy
54 lines
1.4 KiB
Groovy
|
plugins {
|
||
|
id 'com.android.application'
|
||
|
id 'org.jetbrains.kotlin.android'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdk 31
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "io.getstream.androiddeveloperroadmap"
|
||
|
minSdk 21
|
||
|
targetSdk 31
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
kotlinOptions {
|
||
|
jvmTarget = '1.8'
|
||
|
}
|
||
|
|
||
|
buildFeatures {
|
||
|
compose true
|
||
|
}
|
||
|
|
||
|
composeOptions {
|
||
|
kotlinCompilerExtensionVersion compose_version
|
||
|
}
|
||
|
|
||
|
packagingOptions {
|
||
|
resources {
|
||
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "androidx.core:core-ktx:1.7.0"
|
||
|
implementation "androidx.compose.ui:ui:$compose_version"
|
||
|
implementation "androidx.compose.material:material:$compose_version"
|
||
|
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
|
||
|
implementation "androidx.compose.ui:ui-tooling:$compose_version"
|
||
|
implementation "androidx.compose.runtime:runtime:$compose_version"
|
||
|
implementation "androidx.compose.foundation:foundation-layout:$compose_version"
|
||
|
implementation "androidx.activity:activity-compose:$compose_activity_version"
|
||
|
|
||
|
implementation "com.github.skydoves:landscapist-glide:$landscapist_version"
|
||
|
implementation "com.mxalbert.zoomable:zoomable:$zoomable_version"
|
||
|
}
|