Skip to content

Commit

Permalink
Merge pull request #193 from prashanthswami/package-riscv64
Browse files Browse the repository at this point in the history
Use NDK r27 and package riscv64 artifacts
  • Loading branch information
kkoser authored Aug 8, 2024
2 parents 1ed459a + b85d3b4 commit c9f2a00
Showing 1 changed file with 10 additions and 0 deletions.
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

0 comments on commit c9f2a00

Please sign in to comment.