gpt4 book ai didi

android - 如何更改 Android Studio 中的 debug.keystore 位置?

转载 作者:行者123 更新时间:2023-11-29 18:35:38 26 4
gpt4 key购买 nike

我正在使用 Ubuntu 进行 Android 开发。我每次都以 root 用户身份启动 Android Studio。所以我的SDK文件都在/root/Android/Sdk.

我的 debug.keystore 文件也位于

/root/.android/debug.keystore

但是每当我运行我的应用程序时,都会出现以下错误

/home/USERNAME/.android/debug.keystore (No such file or directory)

看起来 Android Studio 正在寻找 /home/USERNAME/.android/debug.keystore 中的 debug.keystore 而不是 /root/.android/debug.keystore 因此出现错误。

我该如何更改它并强制 Android Studio 在我的 /root/.android 目录中查找 debug.keystore 文件?

One solution I thought of was to launch Android Studio as a local user (non-root user), so that everything fits up. But that'll have two installations of Android Studio on my system (one as root and one as local user) and I don't want that.

如有任何帮助,我们将不胜感激。谢谢。

最佳答案

您可以在应用的 build.gradle 文件中指定 keystore 位置,例如:

android {
signingConfigs {
debug {
storeFile file("/root/.android/debug.keystore")
}
}
}

关于android - 如何更改 Android Studio 中的 debug.keystore 位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54491858/

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