templates/README.md
compatibility-info.jsonThis file is used to declare the compatibility of template files with previous versions.
Example:
{
// include all supported native platforms, such as windows, ios, android, mac etc.
"native": // required
{
"default": ">=3.6.0", // required, applied if any specific platform value is not provided
"windows": VERSION_RANGE // optional, supported version for Windows
"mac": VERSION_RANGE // optional, supported version for Mac
"ios": VERSION_RANGE // optional, supported version for iOS
"android": VERSION_RANGE // optional, supported version for Android
}
}
VERSION_RANGE syntax examples>=3.6.0>3.5.1<3.5.1<=3.5.13.3.2 , specify version!3.5.0 , excluded versionThe space is the 'AND' operation, and the '||' is the 'OR' operation
>=3.6.0 <3.7.03.4.2 || >= 3.6.0>=3.4.0 !3.4.2 <3.5.0 || 3.6.03.x is equivalent to >=3.0.0 <4.0.03.4.x is equivalent to `>= 3.4.0 <3.5.0