Skip to content

Commit

Permalink
Update AGP
Browse files Browse the repository at this point in the history
  • Loading branch information
vvb2060 committed Dec 14, 2023
1 parent d66fd3e commit 6fde503
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you only want to use curl tool, unzip apk, extract `libcurl.so` and rename it
Gradle:

```gradle
implementation 'io.github.vvb2060.ndk:curl:8.4.0'
implementation 'io.github.vvb2060.ndk:curl:8.5.0'
```

This library is [Prefab](https://google.github.io/prefab/), so you will need to enable it in your project (Android Gradle Plugin 4.1+):
Expand Down Expand Up @@ -71,6 +71,12 @@ target_link_libraries(app curl::curl_static)

## Version

### 8.5.0
- curl 8.5.0
- nghttp2 1.58.0
- nghttp3 1.1.0
- ngtcp2 1.1.0

### 8.4.0
- curl 8.4.0
- nghttp2 1.57.0
Expand Down
4 changes: 2 additions & 2 deletions curl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
android {
compileSdk = 34
buildToolsVersion = "34.0.0"
ndkVersion = "26.0.10636728"
ndkVersion = "26.1.10909125"
namespace = "io.github.vvb2060.ndk.curl"
defaultConfig {
minSdk = 21
Expand Down Expand Up @@ -74,7 +74,7 @@ publishing {
mavenJava(MavenPublication) {
group = "io.github.vvb2060.ndk"
artifactId = "curl"
version = "8.4.0"
version = "8.5.0"
afterEvaluate {
from(components.release)
}
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.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ pluginManagement {
mavenCentral()
}
plugins {
id("com.android.application") version "8.1.2"
id("com.android.library") version "8.1.2"
id("org.jetbrains.kotlin.android") version "1.9.10"
id("com.android.application") version "8.2.0"
id("com.android.library") version "8.2.0"
id("org.jetbrains.kotlin.android") version "1.9.20"
}
}
dependencyResolutionManagement {
Expand Down
2 changes: 1 addition & 1 deletion tool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
android {
compileSdk = 34
buildToolsVersion = "34.0.0"
ndkVersion = "26.0.10636728"
ndkVersion = "26.1.10909125"
namespace = "io.github.vvb2060.ndk.curl"
defaultConfig {
applicationId = "io.github.vvb2060.ndk.curl"
Expand Down

0 comments on commit 6fde503

Please sign in to comment.