I have attached a screenshot and I'm trying to import this project into Eclipse but I do not know what directory to select. Here is a screen shot:
In the image what directory do I select during import?
UPDATE:
I've selected the "app" folder and I get the message, "No projects are found to import",
After installing Android Studio (based on IntelliJ) and creating a new project it looks like it's a IntelliJ / Android project not an Eclipse project (there was no .project file). It has the same structure as an IntelliJ project.
Related
I'm new in android development, last day i was doing a project but when i realize that project i don't need, then i just going to project path and delete the project file from hard drive. but after deleting the project, i am trying to create a new project but there is something shows that i didn't see before. and if i import a project from my computer, that time Project Structure don't show "android" option, and all projects show errors! even the Project Structure seems new for me. even i did uninstall my android studio and download new file and installed but it still seem like before!
If you are not seeing Android menu, meaning your project is not recognised as an Android project. Try to open / import your project by selecting the folder that contains .iml, settings.gradle, gradlew, gradle.properties, etc.
I created a Maven project on one computer and uploaded it to Github.
To get it on my other computer I cloned it using Github for Windows and used the Import existing Maven project option in Eclipse.
My project seems fine, but it has these weird yellow icons on all my files.
Any particular reason for these? Can I remove them?
If these are the icons you are talking about...
These are egit icons for git projects and each of those icons on a file means that the file is tracked.
You can disable it on the project by right clicking on the project, then Team->Disconnect
i want to download and edit and android library project from github and make jar file again and use it. i want to download and edit this project:
ACRA project
i use eclipse. and my question is that how can i import this source code to eclipse and edit it? i download it and import it to eclipse but its not normal! it has 3 src folder and alot of folders like doc and ... and it has some errors... you know, i want only src folder with library configurations. it seems its a package for not use in development environment!
as you can see in the picture i uploaded, src package is inside some folders and... its not normal not? please help me
I have used Eclipse before. I changed to IntelliJ. Now I am wondering how to import existing files into IntelliJ 10 IDE. In Eclipse I was used to just drag the directory into the src folder, but I cannot do it here.
IDEA doesn't have such feature, you either set up a project on top of the existing sources or you copy files to the existing project externally, using Finder or your favorite file manager.
Actually you can tell IDEA to open a project and when you get prompted with the file explorer you select the eclipse project file. IDEA will then create it's own specific project files and setup the classpath for you. It's pretty nifty.
I just downloaded a Google App Engine sample Java project. I am trying to import it into eclipse. If I chose file/import/existing projects into workspace, and navigate to the appropriate directory, it doesn't find any projects. I'm speculating this means that dotmatrix is not an Eclipse project. How can I import it?
Thanks.
Project you are trying to import doesn't seem like Eclipse Project.
You can still use this project in Eclipse as Java project by following these steps:
Open Java Perspective in Eclipse.
Right Click in Package explorer pane and select New >> Java Project.
Give appropriate name to your Project and click the option that says "Create project from existing sources."
Select root dir of project downloaded and click finish.
Note: You may need to configure source folders, library and other build paths to complete setup.