diff options
author | Piotr Gurgul <pgurgul@google.com> | 2009-08-24 23:06:56 -0700 |
---|---|---|
committer | Piotr Gurgul <pgurgul@google.com> | 2009-08-24 23:06:56 -0700 |
commit | 3f1f33d535c984594dc29c6dc8a58cfc26e62c77 (patch) | |
tree | 667b4cf1c83862a370a8118aac0adb02225ba0f3 /anttasks | |
parent | 4e8d9f1f90cf62add6af65bc7d835f73fada59d5 (diff) | |
download | sdk-3f1f33d535c984594dc29c6dc8a58cfc26e62c77.zip sdk-3f1f33d535c984594dc29c6dc8a58cfc26e62c77.tar.gz sdk-3f1f33d535c984594dc29c6dc8a58cfc26e62c77.tar.bz2 |
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.
Diffstat (limited to 'anttasks')
-rw-r--r-- | anttasks/src/com/android/ant/SetupTask.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/anttasks/src/com/android/ant/SetupTask.java b/anttasks/src/com/android/ant/SetupTask.java index 04afba7..e25d584 100644 --- a/anttasks/src/com/android/ant/SetupTask.java +++ b/anttasks/src/com/android/ant/SetupTask.java @@ -60,9 +60,9 @@ public final class SetupTask extends ImportTask { private final static String ANDROID_RULES = "android_rules.xml"; // ant property with the path to the android.jar - private final static String PROPERTY_ANDROID_JAR = "android-jar"; + private final static String PROPERTY_ANDROID_JAR = "android.jar"; // ant property with the path to the framework.jar - private final static String PROPERTY_ANDROID_AIDL = "android-aidl"; + private final static String PROPERTY_ANDROID_AIDL = "android.aidl"; // ant property with the path to the aapt tool private final static String PROPERTY_AAPT = "aapt"; // ant property with the path to the aidl tool |