我正在使用#define _SFR_X(f, type, name, bit) f(type ## name, bit)
...
#define set_bit(sfr, bit) _SFR_BYTE(sfr) |= _BV(bit)
...
#define set_output(pin) _SFR_X(set_bit, PIN, pin)
+ Meteor
构建iOS应用,但无法解决问题。
使用Cordova
命令,Meteor build <path> --server <host>:<port>
指向哪里?我应该用什么服务器来构建iOS应用程序?我应该首先将我的应用部署到Galaxy吗?
答案 0 :(得分:1)
--server <host>:<port>
应指向Meteor服务器的位置(以便您的移动应用程序知道连接到基于Meteor的后端的位置)。例如,如果您已将Meteor后端部署到Galaxy,并且已在https://yourprodurl.com
处将其提供,那么您的--server
设置将如下所示:
--server=https://yourprodurl.com:443
答案 1 :(得分:0)
我这样跑了(为iOS构建)
meteor build ../example-output-folder --mobile-settings settings-staging.json --server https://example-server.meteorapp.com:443