Skip to content

Commit 158bcf6

Browse files
committed
设置 Demo 工程仅保留 arm64-v8a 架构的 so 库
1 parent 1b9b41e commit 158bcf6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

app/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ android {
1414
defaultConfig {
1515
applicationId 'com.hjq.easy.demo'
1616
minSdk 23
17+
18+
// 仅保留 arm64-v8a 架构(需要注意的是 mmkv 库在 2.0 及之后的版本已经不支持在 32 位的机器上面运行)
19+
ndk {
20+
abiFilters 'arm64-v8a'
21+
}
1722
}
1823

1924
// 支持 JDK 1.8

0 commit comments

Comments
 (0)