gpt4 book ai didi

Android Gradle 构建 : renaming the apk

转载 作者:IT老高 更新时间:2023-10-28 11:12:54 26 4
gpt4 key购买 nike

如何调整我的 build.gradle 以更改 apk(s) 的最终基本名称? (不改变默认后缀)

最佳答案

在 Gradle 1.8 上,project.archivesBaseName 确实有效,但它给出了这样的提示:

Creating properties on demand (a.k.a. dynamic properties) has been deprecated and is scheduled to be removed in Gradle 2.0. Please read http://gradle.org/docs/current/dsl/org.gradle.api.plugins.ExtraPropertiesExtension.html for information on the replacement for dynamic properties. Deprecated dynamic property: "archivesBaseName" on "root project 'myapp'", value: "AnotherName".

要消除警告(并避免您的构建在 Gradle 2.0 上中断),请使用以下命令:

project.ext.set("archivesBaseName", "AnotherName");

...按照 ExtraPropertiesExtension documentation 中的建议。

更新(Gradle 插件 1.1.0)

Android Gradle 插件版本 1.1.0 引入了一个破坏 archivesBaseName as friederbluemle noted 的错误。但幸运的是,这已被修复(在 version 1.1.2 中)。

关于Android Gradle 构建 : renaming the apk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16787493/

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