Skip to content
Open
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
19 changes: 11 additions & 8 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
fi

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}

- name: Write gradle.properties
run: |
Expand All @@ -54,15 +57,15 @@ jobs:
echo "NDK_VERSION=${NDK_VERSION}" >> $GITHUB_ENV

- name: Set up Java
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 17

- name: Install Android NDK $NDK_VERSION
uses: android-actions/setup-android@v3
with:
packages: "build-tools;36.0.0 ndk;${{ env.NDK_VERSION }} platform-tools platforms;android-35"
# - name: Install Android NDK $NDK_VERSION
# uses: android-actions/setup-android@v3
# with:
# packages: "build-tools;36.0.0 ndk;${{ env.NDK_VERSION }} platform-tools platforms;android-35"

- name: Read module list from projects.properties
id: define
Expand All @@ -73,7 +76,7 @@ jobs:
# echo "here_sdk_artifact=$here_sdk_name" >> $GITHUB_OUTPUT

- name: Restore hash cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
key: lint-hash-cache-${{ github.base_ref || 'main' }}
path: .lint-hash-cache/
Expand Down Expand Up @@ -168,7 +171,7 @@ jobs:

- name: Save hash cache
if: success()
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
key: lint-hash-cache-${{ github.base_ref || 'main' }}-${{ github.run_id }}
path: .lint-hash-cache/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-maven-central-only-bom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
ANDROID_HOME: /usr/local/lib/android/sdk
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Java
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '17'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
ANDROID_HOME: /usr/local/lib/android/sdk
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 8 additions & 2 deletions docs/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,14 @@ export default defineConfig({
integrations: [
postBuildIntegration(),
starlight({
title: 'MapConductor',
description: 'A unified map SDK for mobile developers',
title: {
en: "MapConductor — a unified Android maps SDK that lets you work with multiple map providers through a single API",
ja: "MapConductor(マップコンダクター) ♪ 複数の地図プロバイダを単一のAPIで扱えるAndroid向け統一地図SDK",
"es-419": "MapConductor — Un SDK de mapas unificado para Android que ofrece una API común para múltiples proveedores de mapas",
},
markdown: {
headingLinks: false,
},
defaultLocale: 'root',
locales: {
root: {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ uiToolingPreview = "1.9.1"
uiTooling = "1.9.1"
geographiclib = "2.1"
material = "1.10.0"
mapLibreSdk = "13.0.2"
mapLibreSdk = "13.1.0"
mapLibreAnnotation = "3.0.2"
runtime = "1.10.6"
runtimeVersion = "1.10.6"
Expand Down
Loading