Reputation: 1579
I want to open existing Android Studio Project without launching Android Studio with last closed project.
i.e When I launch Android Studio then it opens last closed project on it.
Then I have to close it or go to
File menu -> Open -> Open File Or Project
Rather than i wants to open it from windows file explorer/finder or from terminal where project is stored. like Xcode, Unity and other IDE does.
Or we can say.
can we create a special Android Studio Launcher icon for separate Project in that project directory.
Upvotes: 2
Views: 3975
Reputation: 1579
We can launch android's specific project in android studio from command line tool studio
.
Go to directory where project is stored
user@:~/AndroidStudioProjects$ studio MyProject
If the commands don't work you can run in Studio > "Tools" -> "Create Command Line Launcher..."
Upvotes: 2
Reputation: 2571
That isn't possible. Other IDE projects create a "project file" that associates the contents of the project to that specific IDE.
Netbeans for example is not one of those, and so is Android Studio.
There are only two ways to open a project for Android Studio.
Hopefully in the future they will implement a simpler way to do it!
Upvotes: 2