Words for Android start-up problem

My application (which used to work) now won’t start. I get the following error:

10-02 14:07:49.255: E/AndroidRuntime(8361): java.lang.NoClassDefFoundError: asposewobfuscated.zzG2
10-02 14:07:49.255: E/AndroidRuntime(8361): at com.aspose.words.zzZQ6.zzZ(Unknown Source)
10-02 14:07:49.255: E/AndroidRuntime(8361): at com.aspose.words.zzZQ6.zzV(Unknown Source)
10-02 14:07:49.255: E/AndroidRuntime(8361): at com.aspose.words.zzZQ6.zzW(Unknown Source)
10-02 14:07:49.255: E/AndroidRuntime(8361): at com.aspose.words.License.setLicense(Unknown Source)

I copied the .jar file into my libs folder and the .apk file into my assets folder. What else do I have to do to use the new split libraries?

Hi Daniel,


Thanks for your inquiry. We have now divided the library into following two archives. For example:

  • aspose-words-1.11-android-jdk15.jar: The first one includes public API and its auxiliary methods.
  • aspose-words-1.11-libs-android-jdk15.apk: The second one includes third party jars, basic classes and resources.

To include Aspose.Words for Android into the project you should place “aspose-words-1.11-android-jdk15.jar” in the folder “libs” of your project, and the archive “aspose-words-1.11-libs-android-jdk15.apk” into the folder “assets". After that you need to indicate in “AndroidManifest.xml” file that you are going to use AsposeWords application as the basic one. Please see the following markup:
<application
android:allowBackup=“true”
android:icon="@drawable/ic_launcher"
android:name=“com.aspose.words.AsposeWordsApplication”
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity

I hope, this helps.

Best regards,