diff --git a/new-project.sh b/new-project.sh index 593641bb..112e732d 100755 --- a/new-project.sh +++ b/new-project.sh @@ -192,6 +192,7 @@ cp "-r" "tools/UrhoCooker" "$projPath/tools" cp "template/obfuscar.xml" "$projPath/obfuscar.xml" +cp "template/global.json" "$projPath/global.json" mkdir "-p" "$projPath/platform" mkdir "-p" "$projPath/platform/android/java" diff --git a/script/create-project.sh b/script/create-project.sh index 2dd3017e..899209ca 100644 --- a/script/create-project.sh +++ b/script/create-project.sh @@ -176,6 +176,7 @@ cp "-R" "tools/bash_mini/." "$projPath/tools/bash" cp "-r" "tools/UrhoCooker" "$projPath/tools" cp "template/obfuscar.xml" "$projPath/obfuscar.xml" +cp "template/global.json" "$projPath/global.json" mkdir "-p" "$projPath/platform" mkdir "-p" "$projPath/platform/android/java" diff --git a/template/global.json b/template/global.json new file mode 100644 index 00000000..3d271556 --- /dev/null +++ b/template/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "6.0.100", + "rollForward": "feature", + "allowPrerelease": false + } +} \ No newline at end of file