🚀 Expo OTA 更新服务器

✅ 服务器运行中
协议版本: Expo Updates v1
支持平台: iOS, Android

📋 API 端点

GET /api/manifest
获取更新清单 - 需要 expo-platform 和 expo-runtime-version 头部
GET /api/assets/*
获取更新资源文件
GET /api/health
服务器健康检查

📁 当前可用更新

运行时版本: 1.0.5
平台: android-main
路径: /updates/1.0.5/android-main/

🔧 使用方法

在您的 Expo 应用中配置以下设置:

{
  "expo": {
    "updates": {
      "url": "https://your-domain.com/api/manifest"
    },
    "runtimeVersion": "1.0.5"
  }
}

📖 请求示例

curl -H "expo-platform: android" \
     -H "expo-runtime-version: 1.0.5" \
     -H "expo-protocol-version: 1" \
     https://your-domain.com/api/manifest