Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[versions]
agp = "8.4.1"
constraintlayout = "2.1.4"
agp = "8.10.0"
constraintlayout = "2.2.1"
min-sdk = "23"
target-sdk = "34"
compile-sdk = "34"
target-sdk = "35"
compile-sdk = "35"
material = "1.12.0"
kotlin = "1.9.23"
appcompat = "1.6.1"
androidx-junit = "1.1.5"
androidx-monitor = "1.6.1"
core-ktx = "1.13.1"
kotlin = "2.1.21"
appcompat = "1.7.0"
androidx-junit = "1.2.1"
androidx-monitor = "1.7.2"
core-ktx = "1.16.0"
detekt = "1.23.6"
espresso-core = "3.5.1"
espresso-core = "3.6.1"
junit = "4.13.2"
publish = "1.1.0"
publish = "2.0.0"

[libraries]
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Mar 22 10:54:28 CET 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
7 changes: 5 additions & 2 deletions loggerazzi/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ android {

defaultConfig {
minSdk = libs.versions.min.sdk.get().toInt()
targetSdk = libs.versions.target.sdk.get().toInt()
Copy link
Contributor Author

@jeprubio jeprubio May 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was deprecated and it has to be done in testOptions.

Screenshot 2025-05-16 at 14 09 20


consumerProguardFiles("consumer-rules.pro")
}

testOptions {
targetSdk = libs.versions.target.sdk.get().toInt()
}

buildTypes {
release {
isMinifyEnabled = false
Expand All @@ -39,4 +42,4 @@ dependencies {
implementation(libs.androidx.test.monitor)
}

apply("${rootProject.projectDir}/mavencentral.gradle")
apply("${rootProject.projectDir}/mavencentral.gradle")
2 changes: 2 additions & 0 deletions publish_maven_central.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ nexusPublishing {
stagingProfileId = "f7fe7699e57a"
username = System.getenv("MOBILE_MAVENCENTRAL_USER")
password = System.getenv("MOBILE_MAVENCENTRAL_PASSWORD")
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}