-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Piotr Adamczyk
committed
Sep 29, 2020
1 parent
f141364
commit e24bfc6
Showing
3 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,8 @@ object IosCatalog { | |
|
||
fun softwareVersionsAsTable(projectId: String) = getVersionsList(projectId).asPrintableTable() | ||
|
||
fun describeSoftwareVersion(projectId: String, versionId: String) = getVersionsList(projectId).getDescription(versionId) | ||
fun describeSoftwareVersion(projectId: String, versionId: String) = | ||
getVersionsList(projectId).getDescription(versionId) | ||
|
||
private fun getVersionsList(projectId: String) = iosDeviceCatalog(projectId).versions | ||
|
||
|
@@ -36,7 +37,8 @@ object IosCatalog { | |
|
||
private fun getLocales(projectId: String) = iosDeviceCatalog(projectId).runtimeConfiguration.locales | ||
|
||
fun supportedOrientationsAsTable(projectId: String) = iosDeviceCatalog(projectId).runtimeConfiguration.orientations.asPrintableTable() | ||
fun supportedOrientationsAsTable(projectId: String) = | ||
iosDeviceCatalog(projectId).runtimeConfiguration.orientations.asPrintableTable() | ||
|
||
fun supportedXcode(version: String, projectId: String) = xcodeVersions(projectId).contains(version) | ||
|
||
|
@@ -71,8 +73,7 @@ If this project has already been granted access, please make sure you are using | |
on the Blaze or Flame billing plans, and that you have run | ||
gcloud config set billing/quota_project project | ||
If you are still having issues, please email [email protected] for support.""", | ||
e | ||
If you are still having issues, please email [email protected] for support.""", e | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters