Skip to content

Commit

Permalink
# Changelog
Browse files Browse the repository at this point in the history
## [Unreleased]

### Changed
- Removed unused `kotlin-kapt` plugin from multiple modules:
  - `common`
  - `domain`
  - `model`
- Updated `domain` module's `minSdk` to use the project-level property instead of hardcoded value

### Fixed
- Fixed manifest merger conflicts by aligning SDK versions across modules
- Removed deprecated Kapt configuration causing warnings with Kotlin 2.0+

### Technical Debt
- Removed unnecessary annotation processing configuration that wasn't being used
- Standardized SDK version management across modules
  • Loading branch information
DesarrolloAntonio committed Nov 22, 2024
1 parent d6f1fa2 commit fd0b9ba
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id("com.android.library")
id ("org.jetbrains.kotlin.android")
id ("kotlin-kapt")
}

android {
Expand Down
3 changes: 1 addition & 2 deletions domain/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
plugins {
id("com.android.library")
id ("org.jetbrains.kotlin.android")
id ("kotlin-kapt")
}

android {
namespace = "com.desarrollodroide.domain"
compileSdk = (findProperty("compileSdkVersion") as String).toInt()

defaultConfig {
minSdk = 21
minSdk = (findProperty("minSdkVersion") as String).toInt()
targetSdk = (findProperty("targetSdkVersion") as String).toInt()

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
1 change: 0 additions & 1 deletion model/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id("com.android.library")
id ("org.jetbrains.kotlin.android")
id ("kotlin-kapt")
}

android {
Expand Down

0 comments on commit fd0b9ba

Please sign in to comment.