Skip to content

Commit

Permalink
enabled split apks for different abi
Browse files Browse the repository at this point in the history
- `x86`, `x86_64`, `armeabi-v7a`, `arm64-v8a`
  • Loading branch information
itszechs committed Jun 21, 2022
1 parent b504ece commit 4a6423a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ android {
}
}

splits {
abi {
enable true
reset()
include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
universalApk true
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 4a6423a

Please sign in to comment.