2019-11-23 20:27:39 +08:00
|
|
|
{
|
2023-11-28 10:24:33 +08:00
|
|
|
"do_default": [
|
2024-02-22 00:41:07 +08:00
|
|
|
{
|
|
|
|
"action": "cp",
|
|
|
|
"from": "$env:AX_ROOT/templates/common/*",
|
|
|
|
"to": "${projectDir}/",
|
|
|
|
"is_dir": true
|
|
|
|
},
|
2024-02-22 20:06:19 +08:00
|
|
|
{
|
|
|
|
"action": "cp",
|
|
|
|
"from": "$env:AX_ROOT/.clang-format",
|
|
|
|
"to": "${projectDir}/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "cp",
|
|
|
|
"from": "$env:AX_ROOT/.editorconfig",
|
|
|
|
"to": "${projectDir}/"
|
|
|
|
},
|
2023-11-28 10:24:33 +08:00
|
|
|
{
|
|
|
|
"action": "rep",
|
2024-02-22 00:41:07 +08:00
|
|
|
"from": "Dummy",
|
2023-11-28 10:24:33 +08:00
|
|
|
"to": "${projectName}",
|
|
|
|
"files": [
|
|
|
|
"proj.android/settings.gradle",
|
|
|
|
"proj.android/app/res/values/strings.xml",
|
2024-02-22 00:41:07 +08:00
|
|
|
"proj.android/app/AndroidManifest.xml",
|
|
|
|
"proj.winrt/Package.appxmanifest",
|
|
|
|
"proj.winrt/App.xaml",
|
2023-11-28 10:24:33 +08:00
|
|
|
"CMakeLists.txt",
|
2024-02-22 00:41:07 +08:00
|
|
|
"Source/AppDelegate.cpp"
|
2023-11-28 10:24:33 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "rep",
|
2024-02-22 00:41:07 +08:00
|
|
|
"from": "org.axmol.dummy",
|
2023-11-28 10:24:33 +08:00
|
|
|
"to": "${packageName}",
|
|
|
|
"files": [
|
|
|
|
"proj.android/app/build.gradle",
|
|
|
|
"CMakeLists.txt"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "del",
|
|
|
|
"files": [
|
|
|
|
"axproj-template.json"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"do_portrait": [
|
|
|
|
{
|
|
|
|
"action": "rep",
|
|
|
|
"from": "UIInterfaceOrientationLandscapeRight",
|
|
|
|
"to": "UIInterfaceOrientationPortrait",
|
|
|
|
"files": [
|
|
|
|
"proj.ios_mac/ios/targets/ios/Info.plist"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "rep",
|
|
|
|
"from": "UIInterfaceOrientationLandscapeLeft",
|
|
|
|
"to": "UIInterfaceOrientationPortraitUpsideDown",
|
|
|
|
"files": [
|
|
|
|
"proj.ios_mac/ios/targets/ios/Info.plist"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "rep",
|
|
|
|
"pattern": "static\\s+ax\\:\\:Size\\s+([a-zA-Z_\\d]+)\\s*=\\s*ax\\:\\:Size\\(\\s*(\\d+),\\s*(\\d+)\\)",
|
|
|
|
"to": "static ax::Size `$1 = ax::Size(`$3, `$2)",
|
|
|
|
"files": [
|
|
|
|
"Source/AppDelegate.cpp"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "rep",
|
|
|
|
"pattern": "android:screenOrientation=\\\".*\\\"",
|
|
|
|
"to": "android:screenOrientation=`\"portrait`\"",
|
|
|
|
"files": [
|
|
|
|
"proj.android/app/AndroidManifest.xml"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "rep",
|
|
|
|
"pattern": "orientation=\\\".*\\\"",
|
|
|
|
"to": "orientation=`\"portrait`\"",
|
|
|
|
"files": [
|
|
|
|
"proj.ios_mac/ios/targets/ios/LaunchScreen.storyboard"
|
|
|
|
]
|
|
|
|
},
|
2023-11-28 18:45:54 +08:00
|
|
|
{
|
|
|
|
"action": "rep",
|
|
|
|
"pattern": "image name=\\\".*\\\" width=\\\".*\\\" height=\\\".*\\\"",
|
|
|
|
"to": "image name=`\"LaunchScreenBackground.png`\" width=`\"1242`\" height=`\"2208`\"",
|
|
|
|
"files": [
|
|
|
|
"proj.ios_mac/ios/targets/ios/LaunchScreen.storyboard"
|
|
|
|
]
|
|
|
|
},
|
2023-11-28 10:24:33 +08:00
|
|
|
{
|
|
|
|
"action": "cp",
|
2023-11-28 18:45:54 +08:00
|
|
|
"from": "${projectDir}/proj.ios_mac/ios/targets/ios/LaunchScreenBackgroundPortrait.png",
|
|
|
|
"to": "${projectDir}/proj.ios_mac/ios/targets/ios/LaunchScreenBackground.png"
|
2023-11-28 10:24:33 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"action": "del",
|
|
|
|
"files": [
|
2023-11-28 18:45:54 +08:00
|
|
|
"proj.ios_mac/ios/targets/ios/LaunchScreenBackgroundPortrait.png"
|
2023-11-28 10:24:33 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|