Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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,

like image 214
Raphaël Lemaire Avatar asked Oct 03 '11 09:10

Raphaël Lemaire


People also ask

What is app made from JavaScript and PhoneGap called?

Hybrid apps are developed using web technologies: HTML5, CSS and JavaScript, then put inside a native container such Adobe PhoneGap. These native containers run the web application code and package it into an app.

Does Cordova need Android studio?

Cordova-Android requires the Android SDK, which can be installed on either macOS, Linux, or Windows. For the base system requirements, see the Android Studio's System Requirements.


1 Answers

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.

like image 103
Jason Dean Avatar answered Oct 19 '22 02:10

Jason Dean