DBDigital / nookdevs

Automatically exported from code.google.com/p/nookdevs Please note I am not a developer. I only created this to prevent the code from being lost with the shutdown of GoogleCode. If you wish to work on this, contact me and I will add you. :)
0 stars 0 forks source link

Missing items from nookLibrary source? #115

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I'm getting a lot of errors building nookLibrary, and when researching them, 
they appear to be legitimately missing symbols from icepdf.

    [javac] Compiling 36 source files to /home/ben/Projects/nookdevs/nookLibrary/bin/classes
    [javac] /home/ben/Projects/nookdevs/nookLibrary/src/com/nookdevs/library/PdfMetaReader.java:20: cannot find symbol
    [javac] symbol  : class PInfo
    [javac] location: package org.icepdf.core.pobjects
    [javac] import org.icepdf.core.pobjects.PInfo;

This for instance, I decided to look for myself to see if I could find this 
PInfo symbol.

ben@server:~/Projects/nookdevs/nookLibrary$ ls src/org/icepdf/core/pobjects/
annotations  Document.java  fonts  Page.java  PageTree.java  PRectangle1.java

No PInfo.java...

I know you use eclipse and not ant, but surely these should come up as errors 
in eclipse also? The full listing is at http://pastebin.com/NdSkWxNY .

Please note I use this same setup to build nookTaskManager, so I am able to 
build apps, just not nookLibrary.

Original issue reported on code.google.com by benburkh...@gmail.com on 6 Aug 2010 at 6:55

GoogleCodeExporter commented 8 years ago

Original comment by benburkh...@gmail.com on 6 Aug 2010 at 7:02

GoogleCodeExporter commented 8 years ago
There is a icepdf-core.jar in nookDependency project. This has the remaining 
classes.
Only the classes I modified to compile in android is in the nookLibrary project.
All of the projects in here will depend on nookCommon and some also on 
nookDependency projects. 

Here here is classpath settings in eclipse-
<classpathentry combineaccessrules="false" kind="src" path="/nookDependency"/>
    <classpathentry kind="src" path="src"/>
    <classpathentry kind="src" path="gen"/>
    <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
    <classpathentry combineaccessrules="false" exported="true" kind="src" path="/nookCommon"/>
      <classpathentry exported="true" kind="lib" path="/nookDependency/icepdf-core.jar"/>
      <classpathentry kind="output" path="bin"/>

Original comment by hari.swa...@gmail.com on 6 Aug 2010 at 7:35

GoogleCodeExporter commented 8 years ago

Original comment by hari.swa...@gmail.com on 9 Aug 2010 at 9:10