如何降级 NativeScript 中的 Gradle?

发布于 2025-01-13 09:47:50 字数 193 浏览 1 评论 0原文

在我的 NativeScript 项目中,上次 Gradle 更新后,我无法构建新的 Bundle 文件(适用于 Android 版本)。此错误与某些插件与新 Gradle 版本的兼容性有关。

我认为如果我可以将 Gradle 版本降级到以前的版本,构建将会成功。

有什么方法可以对 NativeScript 项目进行 Grandle 降级吗?

In my NativeScript project, after the last Gradle update, I can't build a new Bundle file (for Android release). This error is about the compatibility of some plugins with the new Gradle version.

I think if I could downgrade the Gradle version to the previous one, the build will succeed.

Is any way that I could do the Grandle downgrade on a NativeScript project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铜锣湾横着走 2025-01-20 09:47:50

看起来有一种方法可以指定要在项目本身中使用的 gradle 版本。但它没有在任何地方记录。

我在 github 上的代码存储库中找到了这些参考文献:
https://github.com/NativeScript/nativescript-cli/search?q= runtimeGradleVersion

但是,在项目外的 gradle.properties 文件中设置 gradle 版本很容易。


Linux

在典型的 Linux(Debian) nodejs|npm 安装中,该文件的位置是:

/usr/local/lib/node_modules/nativescript/vendor/gradle-plugin/gradle/wrapper/gradle-wrapper.properties

例如,如果您希望指定 gradle 的版本 6.4,只需更改行 from:

distributionUrl=https\://services.gradle.org/distributions/gradle-{{runtimeGradleVersion}}-bin.zip

distributionUrl=https\://services.gradle.org/distributions/gradle-6.4-bin.zip

Windows

文件的位置应位于:

C:\Users\<username>\AppData\Roaming\npm\nativescript\vendor\gradle-plugin\gradle\wrapper\gradle-wrapper.properties

Looks like there is a way to specify the version of gradle to use in the project itself. But it is not documented anywhere.

I found these references in their code repository on github:
https://github.com/NativeScript/nativescript-cli/search?q=runtimeGradleVersion

However, it is easy to set gradle version outside the project in gradle.properties file.


Linux

On typical Linux(Debian) nodejs|npm installation, the location of this file is:

/usr/local/lib/node_modules/nativescript/vendor/gradle-plugin/gradle/wrapper/gradle-wrapper.properties

For example, if you wish to specify the version 6.4 of gradle, simply change the line from:

distributionUrl=https\://services.gradle.org/distributions/gradle-{{runtimeGradleVersion}}-bin.zip

to

distributionUrl=https\://services.gradle.org/distributions/gradle-6.4-bin.zip

Windows

The location of the file shall be under:

C:\Users\<username>\AppData\Roaming\npm\nativescript\vendor\gradle-plugin\gradle\wrapper\gradle-wrapper.properties
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文