When I use the third-party library ActiveMQ in an Android project, after packaging it with proguard, an error occurs during running:
Caused by: java.io.IOException: Could not find factory class for resource: META-INF/services//apache/activemq/transport/failover
When I use jadx to decompile I find that the project built with ProGuard does not have the resources/META-INF/services
directory, but the project built without ProGuard does have the resources/META-INF/services
directory.
How can I keep the resources/META-INF/services
directory?