webIDE里创建extension project时遇到错误的解决方案

版权声明:本文为博主汪子熙原创文章,未经博主允许不得转载。 https://blog.csdn.net/i042416/article/details/89703684

Suppose you try to create a new extension project based on one existing project:

clipboard1

if you meet with this error message below: ( the next button is disabled )
clipboard2

This is caused by the fact that the necessary project json file is not created by standard development for My note application. All you need to do is to create a .project.json file manually and paste the following source code:

{

  "translation": {

    "translationDomain": "",

    "supportedLanguages": "en,fr,de",

    "defaultLanguage": "en",

    "defaultI18NPropertyFile": "i18n.properties",

    "resourceModelName": "i18n"

  }

}

After that the button will be available again:

clipboard3

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

猜你喜欢

转载自blog.csdn.net/i042416/article/details/89703684