gpt4 book ai didi

android - 如何在 Android Studio 中为我的 Shell 脚本设置路径?

转载 作者:行者123 更新时间:2023-12-03 13:27:37 31 4
gpt4 key购买 nike

我要设置脚本路径 对于我在 android 项目中的脚本,没有使用严格的路径( /User/Documents/MyApp/tools/script.sh )以及 “工作目录” .
我知道我可以使用 “外部工具”但是这个解决方案不起作用,因为所有项目开发人员都必须使用“外部工具”设置导入我的 jar 文件
我可以写这个吗路径 使用 $项目文件目录$ 变量?
enter image description here

最佳答案

截至目前,有no direct way to use these variables在配置的路径值中。
或者,您可以创建一个 gradle taskapp/gradle运行 shell 脚本的文件:

task runSS {
doLast{
exec {
// chmod u+rwx demo.sh to make file executable
executable "../demo.sh"
}
}
}

// other gradle tasks

Make sure to change the permission of the file to executable by using chmod u+rwx file_name.


现在运行文件:
enter image description here
输出:
enter image description here

关于android - 如何在 Android Studio 中为我的 Shell 脚本设置路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63937171/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com