electrode-io / electrode-native

A platform to ease integration&delivery of React Native apps in existing mobile applications

Home Page:https://native.electrode.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ern code-push release doesn't recognize custom application name in cauldron

ozcanzaferayan opened this issue · comments

In cauldron.json file, I specified appName like below. But ern doesn't recognize this and takes as MyAppAndroid. And this leads to Codepush 404 error.

Should resolve like My-Team/MyAppAndroid

{
  "name": "Cauldron",
  "nativeApps": [
    {
      "name": "MyApp",
      "platforms": [
        {
          "name": "android",
          "config": {
            "codePush": {
              "appName": "My-Team/MyAppAndroid"
            }
          }
        }
      ]
    }
  ],
  "schemaVersion": "3.0.0"
}