Ant properties names changed

application-package to application.package
sdk-location to sdk.dir
android-jar to android.jar
android-aidl to android.aidl
in order to make their names compliant with the ant standards and rest
of the property names.
Properties names in alias rules deliberately ommited in this CL.
Some minor style changes introduced.
This commit is contained in:
Piotr Gurgul
2009-08-24 23:06:56 -07:00
parent 424b833edf
commit 2968aa3020
4 changed files with 39 additions and 39 deletions

View File

@@ -35,9 +35,9 @@ import java.util.Map.Entry;
public final class ProjectProperties {
/** The property name for the project target */
public final static String PROPERTY_TARGET = "target";
public final static String PROPERTY_APK_CONFIGS = "apk-configurations";
public final static String PROPERTY_SDK = "sdk-location";
public final static String PROPERTY_APP_PACKAGE = "application-package";
public final static String PROPERTY_APK_CONFIGS = "apk.configurations";
public final static String PROPERTY_SDK = "sdk.dir";
public final static String PROPERTY_APP_PACKAGE = "application.package";
public static enum PropertyType {
BUILD("build.properties", BUILD_HEADER),