Skip to content

Commit

Permalink
更新演示的安装包到v4.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
liyujiang-gzu committed Nov 1, 2023
1 parent 12eba4c commit 5b01d64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified demo.apk
Binary file not shown.
6 changes: 3 additions & 3 deletions gradle/app.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ android {
//清除默认架构列表
reset()
//支持的架构:armeabi、armeabi-v7a、arm64-v8a、x86、x86_64、mips、mips64
//目前主流手机都支持armeabi-v7a,armeabi已过时,arm64-v8a是未来的主流,电脑上的模拟器支持x86,mips基本不用于手机
//目前主流手机都支持arm64-v8a,armeabi及armeabi-v7a已过时,电脑上的模拟器支持x86,mips基本不用于手机
if (enableX86Support as boolean) {
//需要的架构,调用前需要先用`reset`将默认架构清除
include 'armeabi-v7a', 'x86'
include 'arm64-v8a', 'x86'
} else {
include 'armeabi-v7a'
include 'arm64-v8a'
}
//是否打一个包含全部架构的包
universalApk false
Expand Down

0 comments on commit 5b01d64

Please sign in to comment.