如何在 Android Studio 中更改 debug.keystore 位置?
How to change the debug.keystore location in Android Studio?
我正在使用 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 文件中指定密钥库位置,例如:
android {
signingConfigs {
debug {
storeFile file("/root/.android/debug.keystore")
}
}
}
我正在使用 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 文件中指定密钥库位置,例如:
android {
signingConfigs {
debug {
storeFile file("/root/.android/debug.keystore")
}
}
}