Skip to content

Commit 0fe4a2b

Browse files
authored
Fix build if android-runtime version is "next". (#3229)
1 parent b343e26 commit 0fe4a2b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/services/android-project-service.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,10 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
650650
}
651651
}
652652

653+
if (platformVersion === constants.PackageVersion.NEXT || platformVersion === constants.PackageVersion.LATEST) {
654+
return true;
655+
}
656+
653657
const androidStudioCompatibleTemplate = "3.4.0";
654658
const normalizedPlatformVersion = `${semver.major(platformVersion)}.${semver.minor(platformVersion)}.0`;
655659

0 commit comments

Comments
 (0)