0

I'm trying to implement cp 866 support to my Android application. I use InteliJ Idea Community Edition 12.0.3. I want to put META-INF\service\java.nio.charset.spi.CharsetProvider file into my .apk. But I don't know how to do that.

Joachim Sauer
  • 302,674
  • 57
  • 556
  • 614

1 Answers1

0

All files in META-INF-folders are ignored by JavaResourceFilter which is used by ApkBuilder.

The only way to include these files into your apk is to put them there after packaging.

I just did a little customization to build.xml in android-sdk and it works well.

See my post.

Community
  • 1
  • 1
AlexS
  • 5,295
  • 3
  • 38
  • 54