Skip to content

Commit 7f9b0f2

Browse files
committed
Bump NDK versions to match -latest Github runner images.
1 parent c62655c commit 7f9b0f2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

plugin/src/test/groovy/com/nishtahir/NdkVersionTest.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ class NdkVersionTest extends AbstractTest {
5757
ndkVersion << [
5858
// Partial list of NDK versions supported by Github Actions, per
5959
// https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
60-
"25.2.9519653",
61-
"26.2.11394342",
60+
"26.3.11579264",
61+
"27.2.12479018",
6262
]
6363
}
6464
}

plugin/src/test/groovy/com/nishtahir/SimpleAndroidApp.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class SimpleAndroidApp {
275275
boolean kaptWorkersEnabled = true
276276

277277
VersionNumber androidVersion = Versions.latestAndroidVersion()
278-
VersionNumber ndkVersion = Versions.latestAndroidVersion() >= android("3.4.0") ? VersionNumber.parse("26.2.11394342") : null
278+
VersionNumber ndkVersion = Versions.latestAndroidVersion() >= android("3.4.0") ? VersionNumber.parse("26.3.11579264") : null
279279

280280
VersionNumber kotlinVersion = VersionNumber.parse("1.3.72")
281281
File projectDir

samples/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'org.mozilla.rust-android-gradle.rust-android'
1717

1818
android {
1919
compileSdkVersion 27
20-
ndkVersion "26.2.11394342"
20+
ndkVersion "26.3.11579264"
2121

2222
defaultConfig {
2323
applicationId "com.nishtahir.androidrust"

samples/library/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'org.mozilla.rust-android-gradle.rust-android'
1717

1818
android {
1919
compileSdkVersion 27
20-
ndkVersion "26.2.11394342"
20+
ndkVersion "26.3.11579264"
2121

2222
defaultConfig {
2323
minSdkVersion 21

0 commit comments

Comments
 (0)