Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up NDK
uses: nttld/setup-ndk@v1
with:
ndk-version: r21e
ndk-version: r28c
- name: update submodules
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext.ver = [
"hmkit-core-jni" : "1.0.2",
"hmkit-crypto" : "1.4.6",
"hmkit-utils" : "1.4.5",
"hmkit-android" : "2.0.9",
"hmkit-android" : "2.0.10",
"hmkit-auto-api" : "13.1.1",
"command-queue" : "1.1.1",
compileSdk : 28
Expand Down
6 changes: 6 additions & 0 deletions hmkit-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ apply from: "https://raw.githubusercontent.com/tonisives/tools/master/gradle/tes
version ver."${deploy.id}"

android {
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}

compileSdkVersion ver.compileSdk
namespace 'com.highmobility.hmkit'

Expand Down
2 changes: 1 addition & 1 deletion hmkit-android/src/main/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_PLATFORM=android-21
APP_ABI := all
APP_ABI := arm64-v8a x86_64
APP_CPPFLAGS += -fexceptions
APP_STL := c++_static