gpt4 book ai didi

android - 在android studio中设置dexguard许可文件

转载 作者:太空宇宙 更新时间:2023-11-03 11:31:48 25 4
gpt4 key购买 nike

我没有在 dexguard 中找到 dexguard-license.txt 文件。请帮助我在 android studio 中设置 gradle这是我的 gradle 控制台输出

Executing tasks: [:app:assembleDebug]
.....
Can't find a DexGuard license file.
You should place your license file dexguard-license.txt
1) in a location defined by the Java system property 'dexguard.license',
2) in a location defined by the OS environment variable 'DEXGUARD_LICENSE',
3) in your home directory,
4) in the class path, or
5) in the same directory as the DexGuard jar.

最佳答案

已经有一段时间没有更新答案了,所以我想我会更新,因为 DexGuard 的许可证文件设置发生了变化。

我刚刚将 Android Studio 版本从 2.2.3 更新到 2.3,并将我的 Gradle 版本从 2.14.1 升级到 3.3。升级到 Gradle 版本 3.3 后,我收到了 OP 记录的相同错误:

Can't find a DexGuard license file.
You should place your license file dexguard-license.txt
1) in a location defined by the Java system property 'dexguard.license',
2) in a location defined by the OS environment variable 'DEXGUARD_LICENSE',
3) in your home directory,
4) in the class path, or
5) in the same directory as the DexGuard jar.

我的 DexGuard 配置在使用 Gradle 版本 2.14.1 时运行良好,我的 dexguard-license.txt 文件与 DexGuard jar 位于同一目录(建议 #5)。

事实证明,DexGuard 的文档说明如下:

Note: when using Gradle 3.1+, the license file will not be found anymore when placed in the same directory as the DexGuard plugin jar.

(来源:DexGuard 7.3.10 文档 -> 快速入门 -> 设置您的许可证文件)

我想将我的许可证文件保存在与 DexGuard jar 相同的目录中,因此我实现了建议 #1。我通过将以下行添加到我的项目的 gradle.properties 文件来做到这一点:

systemProp.dexguard.license=./app/libs/Dexguard_7_3_10

请注意,我的 DexGaurd jar 和 dexguard-license.txt 文件位于以下目录中:{project folder}/app/libs/DexGuard_7_3_10/

我选择了这个解决方案,因为我不仅在本地构建而且还在 Jenkins CI 上构建。该解决方案使我不必在构建服务器本身上实现任何更改(即本地环境变量、将文件复制到服务器主目录或类路径选项)。我希望这可以帮助其他偶然发现此问题并发现错误消息令人困惑的人。

关于android - 在android studio中设置dexguard许可文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31131804/

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