Gerard Rozsavolgyi
Gerard Rozsavolgyi

Reputation: 5074

where has android command line gone ?

In the releases from AndroidStudio 2.3, the command line tools like android create project have gone. Two other tools have been introduced: sdkmanager and avdmanager but it seems that there is nothing similar for creating an android project from command line. Is there any explanation about that ? And is there a workaround for those who like using the command line ?

Upvotes: 1

Views: 109

Answers (1)

Arun Shankar
Arun Shankar

Reputation: 2593

As per android docs, the manual command line tools are no longer supported in android studio

https://developer.android.com/studio/tools/help/android.html

For adb operations, you can use terminal in android studio

Update

You can use skdmanager to use command line. More details Here

Upvotes: 1

Related Questions