|
108 | 108 | "type": "pickList", |
109 | 109 | "label": "Build target", |
110 | 110 | "defaultValue": "standalone", |
111 | | - "helpMarkDown": "Build platform to build the Unity project for.", |
| 111 | + "helpMarkDown": "Build platform to build the Unity project for / the build platform targeted by the specified profile.", |
112 | 112 | "groupName": "build", |
113 | | - "visibleRule": "buildFlow = platform", |
114 | 113 | "options": { |
115 | 114 | "standalone": "Standalone (agent-based)", |
116 | 115 | "Win": "Windows Standalone (32-bit)", |
|
210 | 209 | "helpMarkDown": "(Optional) Specify additional command line arguments, see the [documentation](https://docs.unity3d.com/Manual/CommandLineArguments.html) for more info." |
211 | 210 | }, |
212 | 211 | { |
213 | | - "name": "buildAppBundle", |
| 212 | + "name": "androidBuildAppBundle", |
214 | 213 | "type": "boolean", |
215 | 214 | "label": "Build Android App Bundle (Google Play)", |
216 | 215 | "groupName": "platform", |
|
220 | 219 | "visibleRule": "buildTarget == Android && buildScriptType == default" |
221 | 220 | }, |
222 | 221 | { |
223 | | - "name": "signAppBundle", |
| 222 | + "name": "androidSignAppBundle", |
224 | 223 | "type": "boolean", |
225 | 224 | "label": "Sign APK / app bundle", |
226 | 225 | "groupName": "platform", |
227 | | - "defaultValue": true, |
| 226 | + "defaultValue": false, |
228 | 227 | "required": false, |
229 | 228 | "helpMarkDown": "Whether to sign the produced APK / app bundle using a custom keystore.", |
230 | 229 | "visibleRule": "buildTarget == Android && buildScriptType == default" |
231 | 230 | }, |
232 | 231 | { |
233 | | - "name": "keystoreName", |
| 232 | + "name": "androidKeystoreName", |
234 | 233 | "type": "filePath", |
235 | 234 | "helpMarkDown": "Android keystore name / file path.", |
236 | 235 | "label": "Keystore file path", |
237 | 236 | "groupName": "platform", |
238 | 237 | "required": true, |
239 | 238 | "defaultValue": "", |
240 | | - "visibleRule": "buildTarget == Android && signAppBundle == true && buildScriptType == default" |
| 239 | + "visibleRule": "buildTarget == Android && androidSignAppBundle == true && buildScriptType == default" |
241 | 240 | }, |
242 | 241 | { |
243 | | - "name": "keystorePass", |
| 242 | + "name": "androidKeystorePass", |
244 | 243 | "type": "string", |
245 | 244 | "label": "Keystore password", |
246 | 245 | "groupName": "platform", |
247 | 246 | "helpMarkDown": "Android keystore password.", |
248 | 247 | "required": true, |
249 | 248 | "defaultValue": "", |
250 | | - "visibleRule": "buildTarget == Android && signAppBundle == true && buildScriptType == default" |
| 249 | + "visibleRule": "buildTarget == Android && androidSignAppBundle == true && buildScriptType == default" |
251 | 250 | }, |
252 | 251 | { |
253 | | - "name": "keystoreAliasName", |
| 252 | + "name": "androidKeystoreAliasName", |
254 | 253 | "type": "string", |
255 | 254 | "label": "Keystore alias name", |
256 | 255 | "groupName": "platform", |
257 | 256 | "helpMarkDown": "Android key alias name.", |
258 | 257 | "required": true, |
259 | 258 | "defaultValue": "", |
260 | | - "visibleRule": "buildTarget == Android && signAppBundle == true && buildScriptType == default" |
| 259 | + "visibleRule": "buildTarget == Android && androidSignAppBundle == true && buildScriptType == default" |
261 | 260 | }, |
262 | 261 | { |
263 | | - "name": "keystoreAliasPass", |
| 262 | + "name": "androidKeystoreAliasPass", |
264 | 263 | "type": "string", |
265 | 264 | "label": "Keystore alias password", |
266 | 265 | "groupName": "platform", |
267 | 266 | "helpMarkDown": "Password for the key used for signing an Android application. If left empty, the keystore main password is assumed.", |
268 | 267 | "required": false, |
269 | 268 | "defaultValue": "", |
270 | | - "visibleRule": "buildTarget == Android && signAppBundle == true && buildScriptType == default" |
| 269 | + "visibleRule": "buildTarget == Android && androidSignAppBundle == true && buildScriptType == default" |
271 | 270 | } |
272 | 271 | ], |
273 | 272 | "outputVariables": [ |
|
0 commit comments