Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
ndk 27.0.12077973 -> 27.1.12297006
cmake 3.22.1 -> 3.30.3
ubuntu 22.04 -> latest (24.04)
gradle 8.9 -> 8.10.1
agp 8.5.2 -> 8.6.1
harfbuzz 9.0.0 -> 10.0.1
fribidi 1.0.15 -> 1.0.16
freetype 2.13.2 -> 2.13.3
mpv 0.38.0 -> 0.39.0
  • Loading branch information
jarnedemeulemeester committed Sep 29, 2024
1 parent 9a04172 commit b51b789
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
publish:
name: Publish
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
environment: release
if: ${{ contains(github.repository_owner, 'jarnedemeulemeester') || startsWith(github.ref, 'refs/tags/v') }}
steps:
Expand Down
10 changes: 5 additions & 5 deletions buildscripts/include/depinfo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
## Dependency versions

v_sdk=11076708_latest
v_ndk=27.0.12077973
v_ndk=27.1.12297006
v_sdk_build_tools=35.0.0

v_lua=5.2.4
v_libass=0.17.3
v_harfbuzz=9.0.0
v_fribidi=1.0.15
v_freetype=2-13-2
v_harfbuzz=10.0.1
v_fribidi=1.0.16
v_freetype=2-13-3
v_mbedtls=3.5.2
v_libplacebo=7.349.0
v_dav1d=1.4.3
v_ffmpeg=7.0.2
v_mpv=0.38.0
v_mpv=0.39.0


## Dependency tree
Expand Down
4 changes: 2 additions & 2 deletions buildscripts/include/download-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ sdkmanager () {
"$exe" --sdk_root="${ANDROID_HOME}" "$@"
}
echo y | sdkmanager \
"platforms;android-34" \
"platforms;android-35" \
"build-tools;${v_sdk_build_tools}" \
"ndk;${v_ndk}" \
"cmake;3.22.1"
"cmake;3.30.3"

# gas-preprocessor
mkdir -p bin
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
android-plugin = "8.5.2"
android-plugin = "8.6.1"
androidx-annotation = "1.8.2"
publish-plugin = "2.0.0"

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
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 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions libmpv/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
namespace = "dev.jdtech.mpv"
compileSdk = 35
buildToolsVersion = "35.0.0"
ndkVersion = "27.0.12077973"
ndkVersion = "27.1.12297006"

defaultConfig {
minSdk = 26
Expand All @@ -28,7 +28,7 @@ android {
externalNativeBuild {
cmake {
path = file("src/main/cpp/CMakeLists.txt")
version = "3.22.1"
version = "3.30.3"
}
}

Expand Down

0 comments on commit b51b789

Please sign in to comment.