如何在Android Studio中使用终端?

时间:2016-01-10 12:21:12

标签: android android-studio google-api

我正在尝试将Google登录集成到我的应用中,并且我正在关注此tutorial。但是,我试图将配置文件添加到我的项目中,并且教程说我应该使用此命令:

$ move path-to-download/google-services.json app/

当我在Android Studio中打开终端并写下命令时说:

'$' is not recognized as an internal or external command

我也注意到它与命令提示符类似(我使用的是Windows)。我可以复制.json文件并将其粘贴到我的app文件夹中吗?

2 个答案:

答案 0 :(得分:0)

' $'是用户提示,你应该省略' $'并且该命令应该起作用

答案 1 :(得分:0)

我认为$(美元符号)表示基于Unix的OS终端的新行开始。在Windows操作系统中,命令应为

MOVE [Source] [Target]

有关详细信息,请check this link.

或者您可以将其复制并粘贴到您的应用文件夹中。这就足够了。