In this tutorial, what is the "class that extends DroidGap"

android, cordova, java

Solution

The intro tutorial instructs you to change the superclass of your new main class to `DroidGap` instead of the default (`Activity`)—so you created and named the "class that extends `DroidGap`"; that's the reason they describe it this way. It's your project's intro `Activity`/main class.

Problem

I just did the Cordova Hello, World tutorial and now I'm trying to add a splash screen. The tutorial says In the onCreate method of the class that extends DroidGap, add the following two lines. What is the class that extends DroidGap? How do I find it? What is this tutorial talking about?

Original source