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 5bb91f9 commit 6d97a5fCopy full SHA for 6d97a5f
lib/project-data.ts
@@ -288,14 +288,14 @@ export class ProjectData implements IProjectData {
288
config: INsConfig
289
): Mobile.IProjectIdentifier {
290
const identifier: Mobile.IProjectIdentifier = {
291
- ios: "",
292
- android: "",
+ ios: config.id,
+ android: config.id,
293
};
294
- if (config.ios) {
295
- identifier.ios = config.ios.id || config.id;
+ if (config.ios && config.ios.id) {
+ identifier.ios = config.ios.id;
296
}
297
- if (config.android) {
298
- identifier.android = config.android.id || config.id;
+ if (config.android && config.android.id) {
+ identifier.android = config.android.id;
299
300
301
return identifier;
0 commit comments