Phonegap:如何从macincloud向iOS应用商店提交iOS应用?

时间:2016-10-19 15:48:22

标签: ios cordova

我已经在phonegap上构建了我的应用程序。测试了它,一切正常,所以我很乐意发表它。

所以我创建了const gcm = require('node-gcm'); //Google Cloud Messaging const gcmKey = ''; // Your gcm key in quotes const deviceToken = ''; // Receiver device token const sender = new gcm.Sender(gcmKey); var message = new gcm.Message(); message.addData({ title: 'Push', body: 'This is push notification', otherProperty: true, }); sender.send(message, {registrationIds: [token]}, (err) => { if (err) { console.error(err); } else { console.log('Sent'); } }); 并创建了distribution certificates文件,现在可以提交审核和发布了。

我没有mac机器,但我发现了很多关于使用 macincloud 将应用程序提交到应用程序商店的信息。

然而,我遇到的问题是我不知道该怎么做。

是否有关于如何执行此操作的明确说明或教程?

请注意,我已经找到了很多关于macincloud的教程,但它们都是关于macincloud上的创建应用程序以及 NOT 关于将应用程序提交到应用商店!

任何帮助将不胜感激。

提前致谢。

1 个答案:

答案 0 :(得分:3)

想通了。

我必须使用itunes connectapplication up-loader才能完成工作。