Skip to content

Commit fc7a94c

Browse files
authored
ANDROID-16207 publish in Central Portal (#8)
* ANDROID-16207 publish in Central Portal * ANDROID-16207 update lib versions
1 parent 12b4e03 commit fc7a94c

File tree

4 files changed

+19
-14
lines changed

4 files changed

+19
-14
lines changed

gradle/libs.versions.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[versions]
2-
agp = "8.4.1"
3-
constraintlayout = "2.1.4"
2+
agp = "8.10.0"
3+
constraintlayout = "2.2.1"
44
min-sdk = "23"
5-
target-sdk = "34"
6-
compile-sdk = "34"
5+
target-sdk = "35"
6+
compile-sdk = "35"
77
material = "1.12.0"
8-
kotlin = "1.9.23"
9-
appcompat = "1.6.1"
10-
androidx-junit = "1.1.5"
11-
androidx-monitor = "1.6.1"
12-
core-ktx = "1.13.1"
8+
kotlin = "2.1.21"
9+
appcompat = "1.7.0"
10+
androidx-junit = "1.2.1"
11+
androidx-monitor = "1.7.2"
12+
core-ktx = "1.16.0"
1313
detekt = "1.23.6"
14-
espresso-core = "3.5.1"
14+
espresso-core = "3.6.1"
1515
junit = "4.13.2"
16-
publish = "1.1.0"
16+
publish = "2.0.0"
1717

1818
[libraries]
1919
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri Mar 22 10:54:28 CET 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

loggerazzi/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ android {
1010

1111
defaultConfig {
1212
minSdk = libs.versions.min.sdk.get().toInt()
13-
targetSdk = libs.versions.target.sdk.get().toInt()
1413

1514
consumerProguardFiles("consumer-rules.pro")
1615
}
1716

17+
testOptions {
18+
targetSdk = libs.versions.target.sdk.get().toInt()
19+
}
20+
1821
buildTypes {
1922
release {
2023
isMinifyEnabled = false
@@ -39,4 +42,4 @@ dependencies {
3942
implementation(libs.androidx.test.monitor)
4043
}
4144

42-
apply("${rootProject.projectDir}/mavencentral.gradle")
45+
apply("${rootProject.projectDir}/mavencentral.gradle")

publish_maven_central.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ nexusPublishing {
66
stagingProfileId = "f7fe7699e57a"
77
username = System.getenv("MOBILE_MAVENCENTRAL_USER")
88
password = System.getenv("MOBILE_MAVENCENTRAL_PASSWORD")
9+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
10+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
911
}
1012
}
1113
}

0 commit comments

Comments
 (0)