mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
128 lines
3.8 KiB
Plaintext
128 lines
3.8 KiB
Plaintext
import org.jetbrains.compose.compose
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
id("org.jetbrains.compose")
|
|
id("com.google.gms.google-services")
|
|
id("com.google.firebase.crashlytics")
|
|
id("com.google.firebase.firebase-perf")
|
|
}
|
|
|
|
group = "com.shabinder"
|
|
version = Versions.versionName
|
|
|
|
repositories {
|
|
google()
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion(29)
|
|
defaultConfig {
|
|
applicationId = "com.shabinder.spotiflyer"
|
|
minSdkVersion(Versions.minSdkVersion)
|
|
targetSdkVersion(Versions.targetSdkVersion)
|
|
versionCode = Versions.versionCode
|
|
versionName = Versions.versionName
|
|
}
|
|
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
// Flag to enable support for the new language APIs
|
|
//coreLibraryDesugaringEnabled = true
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
configurations {
|
|
"implementation" {
|
|
exclude(group = "androidx.compose.animation")
|
|
exclude(group = "androidx.compose.foundation")
|
|
exclude(group = "androidx.compose.material")
|
|
exclude(group = "androidx.compose.runtime")
|
|
exclude(group = "androidx.compose.ui")
|
|
}
|
|
}
|
|
packagingOptions {
|
|
exclude("META-INF/*")
|
|
}
|
|
/*buildFeatures {
|
|
compose = true
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
useIR = true
|
|
}*/
|
|
}
|
|
dependencies {
|
|
implementation(compose.material)
|
|
implementation(compose.materialIconsExtended)
|
|
implementation(Androidx.androidxActivity)
|
|
|
|
implementation(project(":common:database"))
|
|
implementation(project(":common:compose"))
|
|
implementation(project(":common:root"))
|
|
implementation(project(":common:dependency-injection"))
|
|
implementation(project(":common:data-models"))
|
|
|
|
implementation(Koin.android)
|
|
implementation(Koin.compose)
|
|
|
|
//DECOMPOSE
|
|
implementation(Decompose.decompose)
|
|
implementation(Decompose.extensionsCompose)
|
|
|
|
//Firebase
|
|
implementation(platform("com.google.firebase:firebase-bom:26.5.0"))
|
|
implementation("com.google.firebase:firebase-analytics-ktx")
|
|
implementation("com.google.firebase:firebase-crashlytics-ktx")
|
|
implementation("com.google.firebase:firebase-perf-ktx")
|
|
|
|
/*
|
|
//Lifecycle
|
|
Versions.androidLifecycle.let{
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:$it")
|
|
implementation("androidx.lifecycle:lifecycle-livedata-ktx:$it")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$it")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-savedstate:$it")
|
|
}
|
|
*/
|
|
|
|
|
|
Extras.Android.apply {
|
|
implementation(appUpdator)
|
|
implementation(razorpay)
|
|
implementation(fetch)
|
|
}
|
|
implementation(MVIKotlin.mvikotlin)
|
|
implementation(MVIKotlin.mvikotlinMain)
|
|
implementation(MVIKotlin.mvikotlinLogging)
|
|
implementation(MVIKotlin.mvikotlinTimeTravel)
|
|
implementation(Decompose.decompose)
|
|
implementation(Decompose.extensionsCompose)
|
|
|
|
//Test
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation(Androidx.junit)
|
|
androidTestImplementation(Androidx.expresso)
|
|
|
|
//Desugaring
|
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.1")
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
freeCompilerArgs = listOf(
|
|
"-Xallow-jvm-ir-dependencies","-Xallow-unstable-dependencies",
|
|
"-Xskip-prerelease-check",
|
|
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi"
|
|
)
|
|
}
|
|
} |