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";
41
41
export class PackageVersion {
42
42
static NEXT = "next" ;
43
43
static LATEST = "latest" ;
44
+ static RC = "rc" ;
44
45
}
45
46
46
47
const liveSyncOperation = "LiveSync Operation" ;
Original file line number Diff line number Diff line change @@ -712,7 +712,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
712
712
}
713
713
}
714
714
715
- if ( platformVersion === constants . PackageVersion . NEXT || platformVersion === constants . PackageVersion . LATEST ) {
715
+ if ( platformVersion === constants . PackageVersion . NEXT || platformVersion === constants . PackageVersion . LATEST || platformVersion === constants . PackageVersion . RC ) {
716
716
return true ;
717
717
}
718
718
You can’t perform that action at this time.
0 commit comments