Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
DesarrolloAntonio committed Nov 26, 2024
2 parents fba771b + f989f3a commit a8d528e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
script: ./gradlew connectedDebugAndroidTest

build_and_release:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
needs: [unit_tests, android_tests]
steps:
Expand Down
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 a8d528e

Please sign in to comment.