When I try to build a gideros project using android studio, it comes up with the error:
C:\Users\Zizanyman\AndroidStudioProjects\Flappy\app\src\main\java\com\giderosmobile\android\FlappyActivity.java
Error:(18, 1) error: package com.giderosmobile.android.player does not exist
Error:(54, 3) error: cannot find symbol variable WeakActivityHolder
Error:(56, 3) error: cannot find symbol variable GiderosApplication
Error:(67, 3) error: cannot find symbol variable GiderosApplication
The errors seem to be in these lines:
import com.giderosmobile.android.player.*;
import com.giderosmobile.android.player.*;
WeakActivityHolder.set(this);
GiderosApplication.onCreate(externalClasses);
GiderosApplication.getInstance().onStart();
GiderosApplication.getInstance().onRestart();
GiderosApplication.getInstance().onStop();
GiderosApplication.onDestroy();
GiderosApplication.getInstance().onPause(); |
...and all the other lines that start with GiderosApplication.
Does anybody know why this is happening?
Comments