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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user