我在我的Android应用程序中使用Google Speech API,我正在参考Google在文档中提供的sample application。
在此示例中,App level gradle文件中的身份验证过程有几行。
task copySecretKey(type: Copy) {
def File secretKey = file "$System.env.GOOGLE_APPLICATION_CREDENTIALS"
from secretKey.getParent()
include secretKey.getName()
into 'src/main/res/raw'
rename secretKey.getName(), "credential.json"}
preBuild.dependsOn(copySecretKey)
在此代码中,我没有得到GOOGLE_APPLICATION_CREDENTIALS以及我应该粘贴我的JSON的位置。
先谢谢。
答案 0 :(得分:0)
文件是json文件的位置。它们只是向您展示如何使用系统变量,假设您已将其设置为所述fule的位置