Skip to content

Commit

Permalink
Update docs on splitting APKs (#496)
Browse files Browse the repository at this point in the history
Gradle v3.1 complains about conflicting configuration as below

<pre>
Conflicting configuration : 'armeabi-v7a,x86' in ndk abiFilters cannot be present when splits abi filters are set : x86,armeabi-v7a
</pre>
  • Loading branch information
alvinthen authored and hramos committed Aug 8, 2018
1 parent b717f68 commit 49da2d9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/signed-apk-android.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ By default, the generated APK has the native code for both x86 and ARMv7a CPU ar
You can create an APK for each CPU by changing the following line in android/app/build.gradle:

```diff
- ndk {
- abiFilters "armeabi-v7a", "x86"
- }
- def enableSeparateBuildPerCPUArchitecture = false
+ def enableSeparateBuildPerCPUArchitecture = true
```
Expand Down

0 comments on commit 49da2d9

Please sign in to comment.