我已经在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 关于将应用程序提交到应用商店!
任何帮助将不胜感激。
提前致谢。
答案 0 :(得分:3)
想通了。
我必须使用itunes connect
和application up-loader
才能完成工作。