Aspose.word android can not find asposewobfuscated.zzF4 file

When I create a project, I put aspose-words-1.12-android-jdk16.jar in libs, put

aspose-words-1.12-libs-android-jdk16.apk in assets.When I use Document class in code, it could prompts that can not find asposewobfuscated.zzF4 file. And can not debug successfully. Could you tell me why? How to solve this problem? Thank you very much!

Hi Ou,

Thanks for your inquiry. Please download this Android Studio test project. Hope, this helps.

Best regards,

Hello, I have test the sample, could you please modify this code:

Document doc = new Document();
com.aspose.words.DocumentBuilder builder = new com.aspose.words.DocumentBuilder(doc);
builder.write("SUPER!");

to this:

Document doc = new Document(path);// path points to a doc file in sd card
com.aspose.words.DocumentBuilder builder = new com.aspose.words.DocumentBuilder(doc);
builder.write("SUPER!");

and test it again! Thank you very much!

Hi Ou,

Thanks for your inquiry. There is another useful thread from where you can get details. I have also attached ‘classes-dex2jar.jar’ here for your reference. Hope, this helps.

Hope, this helps.