Skip to content

Commit 39f2034

Browse files
authored
Prepare for MapLibre Android 10.3.5 release (#3732)
1 parent d32d7c1 commit 39f2034

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/workflows/android-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ jobs:
169169
- name: Publish to MavenCentral
170170
run: make run-android-publish
171171
env:
172-
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
173-
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
172+
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
173+
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
174174
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
175175
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
176176
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}

platform/android/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ MapLibre welcomes participation and contributions from everyone. Please read [`C
44

55
## main
66

7+
## 10.3.5
8+
79
### ✨ Features and improvements
810

911
- Compile for Android with support for 16 KB page sizes ([#3728](https://github.com/maplibre/maplibre-native/pull/3728)).

platform/android/MapboxGLAndroidSDK/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=10.3.4
1+
VERSION_NAME=10.3.5
22

33
# Only build native dependencies for the current ABI
44
# See https://code.google.com/p/android/issues/detail?id=221098#c20

platform/android/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ nexusPublishing {
3737
repositories {
3838
sonatype {
3939
stagingProfileId = sonatypeStagingProfileId
40-
username = ossrhUsername
41-
password = ossrhPassword
42-
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
43-
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
40+
username = mavenCentralUsername
41+
password = mavenCentralPassword
42+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
43+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
4444
}
4545
}
4646
}

platform/android/gradle/publish-root.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ext["ossrhPassword"] = ''
66
ext["sonatypeStagingProfileId"] = ''
77

88
// Use system environment variables
9-
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
10-
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
9+
ext["mavenCentralUsername"] = System.getenv("MAVEN_CENTRAL_USERNAME")
10+
ext["mavenCentralPassword"] = System.getenv("MAVEN_CENTRAL_PASSWORD")
1111
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
1212
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
1313
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')

0 commit comments

Comments
 (0)