Is there an online javadoc for the Android Phonegap API?

I am looking for the Javadoc Android Phonegap API for classes such as DroidGap and others in the phonegapp bank.

I did not find it on the Phonegap website or wiki.

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

Thanks,

+6
source share
2 answers

Try to create them yourself.

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

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

I did this from the folder in which the files were extracted.

docs / is the name of the created new folder, in which there is index.html, I was able to launch its browser.

+4
source

Follow the link below.

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

This link consists of API links for PhoneGap.

-2
source

Source: https://habr.com/ru/post/898504/


All Articles