Question

That's it, actually. I prefer not to use Eclipse, and want to use the command line.

I've tried to just build it without doing anything special, but it gave me errors like:

package com.giderosmobile.android.player does not exist
cannot find symbol AudioDevice
 etc.

Also, if it's possible, I'd like to use another IDE and use the command line for the entire process. Is this possible? If yes, how?

This is my first question here on SO, so please correct me if I'm asking it wrong.

Was it helpful?

Solution

Well first, I noticed that there was no included ant build file, and it was missing several other things. So first things first...

{sdkdir}/tools/android update project --path [locationToProject]

Will generate your build files and everything else.

But it looks like from trying to build this failed because it wants to import location

com.giderosmobile.android.player.*

You might be missing that dependency or the package is named incorrectly...

[Edit]

I swapped this line:

import com.giderosmobile.android.player.*;

with

import com.giderosmobile.android.player.AudioDevice;
import com.giderosmobile.android.player.JavaNativeBridge;

And it built just fine using 'ant debug'. Hope that helps!

[Edit 2]

Move "gideros.jar" into the libs folder

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top