将www.example.com和com. your. bundle. identifier分别替换为应用的软件包和捆绑包标识符。将YOUR_GOOGLE_MAPS_API_KEY替换为GoogleMapAPI密钥,将YOUR_APP_CENTER_SECRET替换为App Center应用密钥。com.your.package.name and com.your.bundle.identifier with your app's package and bundle identifiers, respectively. Replace YOUR_GOOGLE_MAPS_API_KEY with your Google Maps API key, and YOUR_APP_CENTER_SECRET with your App Center app secret. 安装和配置App Center CLI:通过运行以下命令安装App Center CLI: npm install -g appcenter-cli appcenter login eas build --platform all 将YOUR_APP_CENTER_APP_NAME替换为App Center应用名称,并在--description参数中提供应用的发行说明。 部署您的应用:将你的应用上载到App Center后,你可以使用App Center门户将其部署给用户。你还可以配置App Center以自动将新版本部署到特定通讯组或所有用户。就是这样!你的Expo应用现在已连接到App Center,你可以使用App Center管理应用的版本和分发。
1条答案
按热度按时间kx1ctssn1#
使用以下步骤连接expo或eas。
在App Center中创建新应用:转到App Center Jmeter 板,然后单击"添加新应用"按钮创建新应用。
配置EAS凭据:在Expo项目中,添加
app.config.js
文件(如果该文件尚不存在)。在该文件中,添加以下代码:将www.example.com和com. your. bundle. identifier分别替换为应用的软件包和捆绑包标识符。将
YOUR_GOOGLE_MAPS_API_KEY
替换为GoogleMapAPI密钥,将YOUR_APP_CENTER_SECRET
替换为App Center应用密钥。com.your.package.name and com.your.bundle.identifier with your app's package and bundle identifiers, respectively. ReplaceYOUR_GOOGLE_MAPS_API_KEY
with your Google Maps API key, andYOUR_APP_CENTER_SECRET
with your App Center app secret.安装和配置App Center CLI:通过运行以下命令安装App Center CLI:
npm install -g appcenter-cli
appcenter login
eas build --platform all
将
YOUR_APP_CENTER_APP_NAME
替换为App Center应用名称,并在--description
参数中提供应用的发行说明。部署您的应用:将你的应用上载到App Center后,你可以使用App Center门户将其部署给用户。你还可以配置App Center以自动将新版本部署到特定通讯组或所有用户。就是这样!你的Expo应用现在已连接到App Center,你可以使用App Center管理应用的版本和分发。