Skip to content
Snippets Groups Projects
Commit f16e4f37 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

gradle: allow to configure ABIs to build

Change-Id: I6d7c30bf3594a5219ad37b38e9966c0664fc57bd
parent 45ff14ec
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,8 @@ android {
}
ndk {
debugSymbolLevel = "FULL"
abiFilters += listOf("arm64-v8a", "x86_64", "armeabi-v7a")
abiFilters += properties["archs"]?.toString()?.split(",") ?: listOf("arm64-v8a", "x86_64", "armeabi-v7a")
println ("Building for ABIs $abiFilters")
}
}
}
......
archs=
archs=arm64-v8a,x86_64,armeabi-v7a
org.gradle.jvmargs=-Xmx3048M
android.useAndroidX=true
android.enableJetifier=false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment