Home | History | Annotate | Download | only in ant

Lines Matching full:subant

31 import org.apache.tools.ant.taskdefs.SubAnt;
190 SubAnt subAnt = new SubAnt();
191 subAnt.setTarget(mTarget.getTarget());
192 subAnt.setProject(antProject);
200 subAnt.addFileset(fileSet);
202 // TODO: send the verbose flag from the main build.xml to the subAnt project.
203 //subAnt.setVerbose(true);
206 // by the subant.
210 subAnt.execute();
240 SubAnt subAnt = new SubAnt();
241 subAnt.setTarget(mTarget.getTarget());
242 subAnt.setProject(antProject);
250 subAnt.addFileset(fileSet);
252 // TODO: send the verbose flag from the main build.xml to the subAnt project.
253 //subAnt.setVerbose(true);
262 addProp(subAnt, "do.not.compile", "true");
267 addProp(subAnt, "version.code", Integer.toString(compositeVersionCode));
271 addProp(subAnt, "filter.abi", abi);
301 addProp(subAnt, "aapt.resource.filter", softVariant.getValue());
306 addProp(subAnt, "resource.package.file.name", pkgName + ".ap_");
310 addProp(subAnt, ProjectProperties.PROPERTY_KEY_STORE, keyStore);
311 addProp(subAnt, ProjectProperties.PROPERTY_KEY_ALIAS, keyAlias);
312 addProp(subAnt, "key.store.password", keyStorePassword);
313 addProp(subAnt, "key.alias.password", keyAliasPassword);
317 addProp(subAnt, "out.unsigned.file.name",
319 addProp(subAnt, "out.unaligned.file",
325 addProp(subAnt, "out.release.file",
333 addProp(subAnt, ProjectProperties.PROPERTY_KEY_STORE, "");
334 addProp(subAnt, ProjectProperties.PROPERTY_KEY_ALIAS, "");
338 addProp(subAnt, "out.unsigned.file",
343 // by the subant.
347 subAnt.execute();
368 * Adds a property to a {@link SubAnt} task.
373 private void addProp(SubAnt