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 3f886aa commit cb8e90bCopy full SHA for cb8e90b
src/project-management/app-metadata.ts
@@ -22,20 +22,18 @@ export enum AppPlatform {
22
23
export interface AppMetadata {
24
readonly appId: string;
25
- readonly displayName: string;
+ readonly displayName?: string;
26
readonly platform: AppPlatform;
27
+ readonly projectId: string;
28
+ readonly resourceName: string;
29
}
30
31
export interface AndroidAppMetadata extends AppMetadata {
32
readonly platform: AppPlatform.ANDROID;
- readonly resourceName: string;
- readonly projectId: string;
33
readonly packageName: string;
34
35
36
export interface IosAppMetadata extends AppMetadata {
37
readonly platform: AppPlatform.IOS;
38
39
40
readonly bundleId: string;
41
0 commit comments