I was looking for an ePub reader in android.
I referred PageTurner. Got it’s apk downloaded and it worked.
But when I downloaded it’s source code from github
(as it’s open source) and tried to Import the project, it gives the message that No Projects found to import even though it’s pointing to the correct location.
I searched for similar questions on SO, but didn’t got any help.
I guess I’m missing out libraries and some other stuff that will make this work. Note that bin and gen folders are missing at github link.
I’m using Eclipse Indigo as IDE.
Any idea what’s wrong here? Any help appreciated.
EDIT
1.) From suggestions, I created new project and imported it from existing source but it’s giving errors at virtually every line of code.
Some of the errors are like :
Package x1 does not match with package x2
class RoboActivity not found
method not found
@Inject cannot be resolved to a type
2.) What exactly do I download from Maven site?
Which libraries are required from these.
Moreover, When I tried to install the plugin from instructions, I got 
3.) this link is available for Maven Plugin but I can’t find the plugin here 🙁
Big update: I hadn’t realized that the new ADT likes Maven even less than the old one.
Let me chime in here as the author of PageTurner: personally I don’t use the Eclipse Maven plugin, but I simply generate an Eclipse project with mvn eclipse:eclipse.
If you have never worked with Maven, it’s a command-line build tool similar to Ant (or Unix make). You can download Maven 3 here:
http://maven.apache.org/download.html
Once you have Maven installed, the steps to import PageTurner into your Eclipse environment are:
Run
mvn -Djavax.net.ssl.trustStore=trust.jks -Djavax.net.ssl.trustStorePassword=pageturner -DexcludeTransitive=true dependency:copy-dependenciesinside the source folder
Create a libs folder
Essentially this completely leaves Maven out of the game, except to get the dependencies.