Skip to content

Commit

Permalink
- Add ci_ci branch to CI, repairing bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
DesarrolloAntonio committed Feb 14, 2024
1 parent 2a97f1a commit 384583b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ plugins {

android {
namespace = "com.desarrollodroide.pagekeeper"
compileSdk = project.findProperty("compileSdkVersion") as? Int
compileSdk = (findProperty("compileSdkVersion") as String).toInt()


defaultConfig {
applicationId = "com.desarrollodroide.pagekeeper"
minSdk = project.findProperty("minSdkVersion") as? Int
targetSdk = project.findProperty("targetSdkVersion") as? Int
versionCode = project.findProperty("versionCode") as? Int
minSdk = (findProperty("minSdkVersion") as String).toInt()
targetSdk = (findProperty("targetSdkVersion") as String).toInt()
versionCode = (findProperty("versionCode") as String).toInt()
versionName = project.findProperty("versionName") as String

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit 384583b

Please sign in to comment.