通过Apple开发者门户进行身份验证失败EAS ios构建

yfjy0ee7  于 2023-03-05  发布在  iOS
关注(0)|答案(1)|浏览(173)

我正在创建React Native应用程序。是否可以在没有付费Apple开发者帐户的情况下构建IOS开发版本?我希望能够在不支付真正Apple开发者帐户费用的情况下测试我的应用程序,并打算在准备发布时付费。这是否可能,或者是否有任何变通方案可供我使用IOS上的自定义插件测试我的应用程序?

sgtfey8w

sgtfey8w1#

没有苹果开发者帐户,你只能为模拟器构建,在下面添加"模拟器":true on your eas.json build new development profile

{
    "build": {
      "preview": {
        "ios": {
          "simulator": true
        }
      },
      "developmentios": { "developmentClient": true, "distribution": "internal", "ios": { "simulator": true } },
      "production": {}
    }
  }

建立命令

eas build --profile developmentios --platform ios

参考:https://docs.expo.dev/build-reference/simulators/

相关问题