We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a638f7d commit b437693Copy full SHA for b437693
lib/services/android-project-service.ts
@@ -590,7 +590,8 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
590
const platformVersion = this.getCurrentPlatformVersion(this.getPlatformData(projectData), projectData);
591
const newRuntimeGradleRoutineVersion = "3.3.0";
592
593
- return semver.gte(platformVersion, newRuntimeGradleRoutineVersion);
+ const normalizedPlatformVersion = `${semver.major(platformVersion)}.${semver.minor(platformVersion)}.0`;
594
+ return semver.gte(normalizedPlatformVersion, newRuntimeGradleRoutineVersion);
595
}
596
597
0 commit comments