I'm trying to set up phonegap for 3 days now. The docs will only get me to the "phonegap add android" part which returns an error so I tried this tutorial from Adobe http://www.adobe.com/devnet/html5/articles/getting-started-with-phonegap-in-eclipse-for-android.html
This part:
Change the base class from Activity to DroidGap ; this is in the class definition following the word extends :
public class MainActivity extends DroidGap {
will cause two errors. One is resolved by simply changing protected
to public
on some function.
The error i can't resolve is this one:
"The Method getSupportFragmentManager is undefined for MainActivity".
The whole process of setting up phonegap is very frustrating, any help is very, VERY much appreciated.