gpt4 book ai didi

android - 将 Wally 导入 Android Studio

转载 作者:行者123 更新时间:2023-11-30 02:14:51 24 4
gpt4 key购买 nike

我正在尝试导入 Wally进入 Android Studio,我对我必须做什么感到困惑。

它在 Github 页面中声明我需要将我的发布和调试 keystore 文件指定到项目根目录中的本地属性文件中。

我已经使用 gradle 文件将它导入到我的 Android studio 中,一切看起来都很好。

我可以看到 local.properties 文件,当我打开它时它显示如下:

enter image description here

如 Github 页面上所述,我应在此文件中的何处指定我的调试?

我是 Android studio 的新手,如果这是一个愚蠢的问题,我很抱歉,但我很困惑我需要在哪里指定我的文件,就像它说我需要在 Github 页面上为项目编译。

谢谢。

编辑

这是我目前所拥有的:

enter image description here

在 local.properties 中我有:

keystore.props.file=../../keystore.properties

在我的 local.propeties 中:

store=../../AlphaKeystore.jks
alias=alpha
pass=mypass
storePass=mypass

然后我在 build.gradle 中收到以下错误:

enter image description here

我做错了什么吗?谢谢。

编辑 2

这是我在日志中得到的内容,在进行修改后我在 build.gradle 中仍然遇到相同的错误:

enter image description here

最佳答案

debug key并没有保存在local.properties中,你只需要将它放在根文件夹中即可(作者显然打错了......)。项目中的 local.properties 除了指向 Android SDK 的路径外,不用于任何其他用途。您需要在项目文件夹之外制作另一个。您将在下面看到应该将文件放在哪里。

Notice that the local.properties is located outside the project

突出显示的 local.properties 包含:

keystore.props.file=../../keystore.properties

keystore.properties 应包含发布别名、密码和存储密码:

store=../../keystore.jks
alias=your_alias
pass=your_password
storePass=your_store_password

请注意,这些 .properties 文件只是纯文本文件,因此制作它们没有技巧。

关于android - 将 Wally 导入 Android Studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29523025/

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