Skip to content

Commit

Permalink
🧑‍💻🐳 chore: update 打包 so 库支持
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxiang committed Feb 13, 2023
1 parent 1acca68 commit 4555926
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,12 @@ android {
addManifestPlaceholders([
'app_name': '@string/app_name'
])
// cpu架构so库
// 仅保留两种架构的 so 库,根据 Bugly 统计得出
ndk {
abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86","x86_64"
// armeabi:万金油架构平台(占用率:0%)
// armeabi-v7a:曾经主流的架构平台(占用率:10%)
// arm64-v8a:目前主流架构平台(占用率:95%)
abiFilters "armeabi-v7a", "arm64-v8a"
}
}
}
Expand Down

0 comments on commit 4555926

Please sign in to comment.