the problem is that this app already builds split APKs as part of the normal building process with gradle, that is, with a single gradle command all APKs are generated for all ABI, I am struggling to figure it out how to properly define the configuration in that case since then the CI complains:
2024-08-26 15:42:59,864 ERROR: Could not build app com.github.arcanechat: More than one resulting apks found in build/com.github.arcanechat/build/outputs/apk/foss/release
I am trying to avoid problematic hacks like done for other configurations where sed command is used to alter the content of build.gradle to force building for a single ABI
that is for a single universal output, the problem is that in a single step I can generate all outputs (for x68, armv7 etc) at once and could return them all in a single config declaration but it seems just not supported by f-droid CI