Skip to content

Files

Latest commit

03e7598 · Jul 9, 2025

History

History

templates

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 7, 2023
Jun 30, 2025
Jan 3, 2024
May 9, 2025
Jan 9, 2025
Mar 7, 2025
Oct 28, 2024
Jun 30, 2025
Jul 9, 2025
Mar 5, 2025
Jan 13, 2023
Mar 9, 2023
Apr 10, 2023
Jan 3, 2024
Jul 12, 2022
Jul 18, 2022
Dec 4, 2023
Nov 26, 2024
Oct 28, 2024
Oct 28, 2024
Apr 14, 2025
Jan 3, 2024
Aug 14, 2023
Jan 3, 2024
Jun 30, 2025
Jun 30, 2025
Jun 30, 2025
Jun 30, 2025
Jun 30, 2025
Jun 30, 2025
Jun 18, 2022
Jun 6, 2023
Jun 18, 2022
Apr 18, 2022

README.md

compatibility-info.json

This 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
    }
}

The VERSION_RANGE syntax examples

Simple conditions
  1. >=3.6.0
  2. >3.5.1
  3. <3.5.1
  4. <=3.5.1
  5. 3.3.2 , specify version
  6. !3.5.0 , excluded version
Composite conditions

The space is the 'AND' operation, and the '||' is the 'OR' operation

  1. >=3.6.0 <3.7.0
  2. 3.4.2 || >= 3.6.0
  3. >=3.4.0 !3.4.2 <3.5.0 || 3.6.0
Wildcard conditions
  1. 3.x is equivalent to >=3.0.0 <4.0.0
  2. 3.4.x is equivalent to `>= 3.4.0 <3.5.0