Force dependencies to abifilter

I’m developing Android application which has native libraries. I use ‘armeabi’ as abifilter. But I use library (.aar) which has arm64-v8a, armeabi-v7a, x84, x86_64 . When I build application my native shared library exists on armeabi but external library’s native libraries exists on these folder which I dont want because I want to force armeabi for all devices. Current I can not support x86. But when I run my application on device which supports armeabi-v7a and armeabi, device sees armeabi-v7a folder and try to find my native library inside of this folder and crashes because my native library doesnt exists on this abi.
To sum up how can I force external library to use just armeabi?