On 02/12/15 18:19, Viacheslav Blinov wrote:
> I'm developing app which only support a subset of hardware architectures
> currently. Since my binary is pretty small I would like to avoid apk
> splits for as long as possible. Unfortunately I depend on external aar's
> which include binaries for arches that I not support, specifically
> arm64. I would like to filter arm64 binaries from external libraries for
> my app, since I do not support this, but I don't wish to use apk splits.
> Is this possible to do at all?

You can exclude individual libraries at the packaging step:

android {
  packagingOptions {
    exclude 'lib/arm64/libfoo.so'
  }
}

Regards,
Chris

-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.
  • ABI filter Viacheslav Blinov
    • Re: ABI filter Christopher Orr

Reply via email to