如何降级 NativeScript 中的 Gradle?
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来有一种方法可以指定要在项目本身中使用的 gradle 版本。但它没有在任何地方记录。
我在 github 上的代码存储库中找到了这些参考文献:
https://github.com/NativeScript/nativescript-cli/search?q= runtimeGradleVersion
但是,在项目外的
gradle.properties
文件中设置gradle
版本很容易。Linux
在典型的 Linux(Debian) nodejs|npm 安装中,该文件的位置是:
例如,如果您希望指定
gradle
的版本6.4
,只需更改行 from:到
Windows
文件的位置应位于:
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 ingradle.properties
file.Linux
On typical Linux(Debian) nodejs|npm installation, the location of this file is:
For example, if you wish to specify the version
6.4
ofgradle
, simply change the line from:to
Windows
The location of the file shall be under: