Skip to content

Update Application with An Application Class Declared

CASE : android:name exsit :

Update Application With an Application Class

Your Application class must extend the goo.console.GooConsole.

Open your AndroidManifest file, go to <application and find the name of the class declared at android:name like this :

<application 
    android:name="YOUR_APPLICATION_CLASS_HERE" ...

Example :

<application 
    android:name="packgename.YourApplicationName" ...

Look for the class and open it, for example you must open the class File packgename.YourApplicationName

And update it like this :

public class YourApplicationName extends Application

to

public class YourApplicationName extends goo.console.GooConsole

Add this declaration to the top for Manifest :

xmlns:tools="http://schemas.android.com/tools"

And under the "android:name= " add this line :

tools:replace="android:name"