Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use NDK r27 and package riscv64 artifacts #193

Merged
merged 1 commit into from
Aug 8, 2024
Merged
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
10 changes: 10 additions & 0 deletions gradle/publishing_aar.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

android {
// Explicitly set the NDK release to ensure we use the latest stable, as
// opposed to the default NDK tied to the AGP version.
ndkVersion = '27.0.12077973'
defaultConfig {
ndk {
// Explicitly enable the 'riscv64' ABI with 'abiFilters' as it is
// not part of the default ABI set today.
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64', 'riscv64'
}
}
publishing {
singleVariant("release") {
withSourcesJar()
Expand Down
Loading