Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cvzi committed Oct 18, 2024
1 parent d55df25 commit 0ec38e3
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ android {
kotlinOptions {
jvmTarget = libs.versions.jvm.get().toInteger()
}
externalNativeBuild.cmake.path file('src/main/cpp/CMakeLists.txt')
externalNativeBuild.cmake {
version libs.versions.cmake.get()
path file('src/main/cpp/CMakeLists.txt')
}
lint {
disable 'MissingTranslation'
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.10.2)
cmake_minimum_required(VERSION 3.30.5)

# Declares and names the project.

Expand Down
5 changes: 3 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
sdk-target= "35"
sdk-compile = "35"
sdk-min = "29"
ndk = "27.1.12297006"
ndk = "28.0.12433566"
jvm = "17"
cmake = "3.30.5"

agp = "8.7.0"
agp = "8.7.1"
kotlin = "2.0.20"
licensereport = "0.9.8"

Expand Down

0 comments on commit 0ec38e3

Please sign in to comment.