Skip to content

Commit 49da2d9

Browse files
alvinthenhramos
authored andcommitted
Update docs on splitting APKs (#496)
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>
1 parent b717f68 commit 49da2d9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/signed-apk-android.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ By default, the generated APK has the native code for both x86 and ARMv7a CPU ar
112112
You can create an APK for each CPU by changing the following line in android/app/build.gradle:
113113

114114
```diff
115+
- ndk {
116+
- abiFilters "armeabi-v7a", "x86"
117+
- }
115118
- def enableSeparateBuildPerCPUArchitecture = false
116119
+ def enableSeparateBuildPerCPUArchitecture = true
117120
```

0 commit comments

Comments
 (0)