File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export const APK_EXTENSION_NAME = ".apk";
4141export class PackageVersion {
4242 static NEXT = "next" ;
4343 static LATEST = "latest" ;
44+ static RC = "rc" ;
4445}
4546
4647const liveSyncOperation = "LiveSync Operation" ;
Original file line number Diff line number Diff line change @@ -712,7 +712,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
712712 }
713713 }
714714
715- if ( platformVersion === constants . PackageVersion . NEXT || platformVersion === constants . PackageVersion . LATEST ) {
715+ if ( platformVersion === constants . PackageVersion . NEXT || platformVersion === constants . PackageVersion . LATEST || platformVersion === constants . PackageVersion . RC ) {
716716 return true ;
717717 }
718718
You can’t perform that action at this time.
0 commit comments