Android Adding A Cp866 Charset
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 f
Solution 1:
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.
Post a Comment for "Android Adding A Cp866 Charset"