Keep 'META-INF/services'-files in apk
问题 I have a custom charset which is already working on JavaSE. The class of my CharsetProvider is specified in a file java.nio.charset.spi.CharsetProvider which is located in META-INF/services and everything get's loaded normally and works as expected. However now I'm using the lib on android as well, but the charset isn't loaded in Android-App. How can I integrate my charset, so that it can be used like expected in an Android-App? Charset.forName("MyCS"); At the moment I'm doing a workaround