Doclava cannot find symbol SystemProperties (Android javadoc) -
i running doclava (javadoc android-style doclava doclet) on existing codebase. @ stage i'm using javadoc via simple command line, not ant or eclipse issue. i've paths seem necessary jar , source files , have closed off large number of warnings already. codebase builds , runs fine.
however, left instances of 1 particular warning:
com.blah.blah.filename:42: error: cannot find symbol import android.os.systemproperties; ^ symbol: class systemproperties location: package android.os
does have suggestions need remove last warning?
i've found answer of sorts. see where android.os.systemproperties?.
essentially, android.os.systemproperies internal class deliberately 'hidden' published sdk api , shouldn't in use. because hidden @hide it's invisible javadoc / doclava, hence error.
the ideal answer original question have been 1 somehow pacified javadoc without having mod source code. don't think possible if out there knows different, i'd grateful.
Comments
Post a Comment