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.
Asked
Active
Viewed 500 times
0

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

user2108468
- 1
- 1
1 Answers
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.