Raphaël Lemaire
Raphaël Lemaire

Reputation: 1309

Is there a online Javadoc for the Phonegap Android API?

I'm searching for the Javadoc of the Phonegap Android API, for the classes like DroidGap and the others in the phonegapp jar.

I didn't find it on the Phonegap site or wiki.

Is there an online version of this documentation ? Is this part of the support ?

Thank you,

Upvotes: 6

Views: 2624

Answers (2)

Jason Dean
Jason Dean

Reputation: 9615

Try building them yourself.

I downloaded the source from GitHub, extracted it, and then at the command line did:

javadoc -d docs -sourcepath framework/src/ com.phonegap

I did this from within the folder where the files were extracted.

docs/ is the name of the new folder it created, in there is an index.html I was able to launch int he browser.

Upvotes: 4

Balaji.K
Balaji.K

Reputation: 4829

Follow the bellow link.

http://docs.phonegap.com/en/1.1.0/index.html

This link consist of the API references for the PhoneGap.

Upvotes: -2

Related Questions