Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
robinsrk committed Dec 30, 2024
1 parent 8f023bb commit 71af7fb
Showing 1 changed file with 61 additions and 64 deletions.
125 changes: 61 additions & 64 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,84 +1,81 @@
import java.util.Properties
import java.io.FileInputStream

plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("com.google.dagger.hilt.android")
id("kotlin-kapt")
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("com.google.dagger.hilt.android")
id("kotlin-kapt")
}

android {
namespace = "dev.robin.flip_2_dnd"
compileSdk = 34
namespace = "dev.robin.flip_2_dnd"
compileSdk = 34

defaultConfig {
applicationId = "dev.robin.flip_2_dnd"
minSdk = 23
targetSdk = 34
versionCode = 8
versionName = "1.0.8"
vectorDrawables {
useSupportLibrary = true
}
}
defaultConfig {
applicationId = "dev.robin.flip_2_dnd"
minSdk = 23
targetSdk = 34
versionCode = 9
versionName = "1.0.9"
vectorDrawables {
useSupportLibrary = true
}
}

lint {
baseline = file("lint-baseline.xml")
abortOnError = false
}
lint {
baseline = file("lint-baseline.xml")
abortOnError = false
}

buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = "17"
}
kotlinOptions {
jvmTarget = "17"
}

buildFeatures {
compose = true
}
buildFeatures {
compose = true
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
}

packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
}

dependencies {
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
implementation("androidx.activity:activity-compose:1.8.2")
implementation(platform("androidx.compose:compose-bom:2024.01.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.material3:material3")
implementation("androidx.core:core-splashscreen:1.0.1")
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
implementation("androidx.activity:activity-compose:1.8.2")
implementation(platform("androidx.compose:compose-bom:2024.01.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.material3:material3")
implementation("androidx.core:core-splashscreen:1.0.1")

// Hilt
implementation("com.google.dagger:hilt-android:2.48")
kapt("com.google.dagger:hilt-android-compiler:2.48")
implementation("androidx.hilt:hilt-navigation-compose:1.1.0")
// Hilt
implementation("com.google.dagger:hilt-android:2.48")
kapt("com.google.dagger:hilt-android-compiler:2.48")
implementation("androidx.hilt:hilt-navigation-compose:1.1.0")
}

kapt {
correctErrorTypes = true
correctErrorTypes = true
}

0 comments on commit 71af7fb

Please sign in to comment.