Skip to content

Commit

Permalink
x86
Browse files Browse the repository at this point in the history
  • Loading branch information
lizongying committed Jun 20, 2024
1 parent ab71075 commit acff1d4
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 更新日誌

### v2.1.8

* 支持x86設備

### v2.1.7

*
Expand Down
7 changes: 4 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
cmake {
arguments "-DIS_SO_BUILD=${project.hasProperty('IS_SO_BUILD') ? project.IS_SO_BUILD : true}"

// abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
abiFilters "armeabi-v7a", "arm64-v8a"
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
// abiFilters "armeabi-v7a", "arm64-v8a"
}
}

Expand All @@ -37,7 +37,8 @@ android {
ndk {
// Specifies the ABI configurations of your native
// libraries Gradle should build and package with your app.
abiFilters "armeabi-v7a", "arm64-v8a"
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
// abiFilters "armeabi-v7a", "arm64-v8a"
}
multiDexEnabled true
}
Expand Down
Binary file modified app/src/main/cpp/arm64-v8a/libnative.so
Binary file not shown.
Binary file added app/src/main/cpp/x86/libnative.so
Binary file not shown.
Binary file added app/src/main/cpp/x86_64/libnative.so
Binary file not shown.
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version_code": 33621760, "version_name": "v2.1.7"}
{"version_code": 33622016, "version_name": "v2.1.8"}

0 comments on commit acff1d4

Please sign in to comment.