fix: adjust Cargo features to fix android build (#375)

This commit is contained in:
Lucas Fernandes Nogueira
2023-05-19 06:59:26 -07:00
committed by GitHub
parent ba4ef9a037
commit fdec66c69f
10 changed files with 53 additions and 25 deletions
@@ -21,7 +21,7 @@ open class RustPlugin : Plugin<Project> {
val abiList = (findProperty("abiList") as? String)?.split(',') ?: defaultAbiList
val defaultArchList = listOf("arm64", "arm", "x86", "x86_64");
val archList = (findProperty("archList") as? String)?.split(',') ?: listOf("arm64", "arm", "x86", "x86_64")
val archList = (findProperty("archList") as? String)?.split(',') ?: defaultArchList
val targetsList = (findProperty("targetList") as? String)?.split(',') ?: listOf("aarch64", "armv7", "i686", "x86_64")