This is an automated email from the ASF dual-hosted git repository. erisu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cordova-android.git
The following commit(s) were added to refs/heads/master by this push: new aad36fe5 feat: bump gradle to 8.13 (#1785) aad36fe5 is described below commit aad36fe5651a2eedad701e7139eae722a3dc2a34 Author: エリス <er...@users.noreply.github.com> AuthorDate: Tue Mar 18 10:54:49 2025 +0900 feat: bump gradle to 8.13 (#1785) --- framework/cdv-gradle-config-defaults.json | 2 +- spec/unit/builders/ProjectBuilder.spec.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/framework/cdv-gradle-config-defaults.json b/framework/cdv-gradle-config-defaults.json index a4ad0996..da78463f 100644 --- a/framework/cdv-gradle-config-defaults.json +++ b/framework/cdv-gradle-config-defaults.json @@ -2,7 +2,7 @@ "MIN_SDK_VERSION": 24, "SDK_VERSION": 35, "COMPILE_SDK_VERSION": null, - "GRADLE_VERSION": "8.9", + "GRADLE_VERSION": "8.13", "MIN_BUILD_TOOLS_VERSION": "35.0.0", "AGP_VERSION": "8.7.3", "KOTLIN_VERSION": "1.9.24", diff --git a/spec/unit/builders/ProjectBuilder.spec.js b/spec/unit/builders/ProjectBuilder.spec.js index 5ba21352..9414db8e 100644 --- a/spec/unit/builders/ProjectBuilder.spec.js +++ b/spec/unit/builders/ProjectBuilder.spec.js @@ -134,14 +134,14 @@ describe('ProjectBuilder', () => { execaSpy.and.resolveTo(); }); - it('should run gradle wrapper 8.7', async () => { - await builder.installGradleWrapper('8.7'); - expect(execaSpy).toHaveBeenCalledWith('gradle', ['-p', path.normalize('/root/tools'), 'wrapper', '--gradle-version', '8.7'], jasmine.any(Object)); + it('should run gradle wrapper 8.13', async () => { + await builder.installGradleWrapper('8.13'); + expect(execaSpy).toHaveBeenCalledWith('gradle', ['-p', path.normalize('/root/tools'), 'wrapper', '--gradle-version', '8.13'], jasmine.any(Object)); }); it('CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL should override gradle version', async () => { process.env.CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL = 'https://dist.local'; - await builder.installGradleWrapper('8.7'); + await builder.installGradleWrapper('8.13'); delete process.env.CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL; expect(execaSpy).toHaveBeenCalledWith('gradle', ['-p', path.normalize('/root/tools'), 'wrapper', '--gradle-distribution-url', 'https://dist.local'], jasmine.any(Object)); }); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org For additional commands, e-mail: commits-h...@cordova.apache.org