OSDN Git Service

Ant properties names changed
authorPiotr Gurgul <pgurgul@google.com>
Tue, 25 Aug 2009 06:06:56 +0000 (23:06 -0700)
committerPiotr Gurgul <pgurgul@google.com>
Tue, 25 Aug 2009 06:06:56 +0000 (23:06 -0700)
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.

anttasks/src/com/android/ant/SetupTask.java
scripts/android_rules.xml
scripts/build.template
sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/ProjectProperties.java

index 04afba7..e25d584 100644 (file)
@@ -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
index b8a5380..4d41cae 100644 (file)
@@ -6,7 +6,7 @@
             com.android.ant.AndroidInitTask
 
         The following properties are put in place by the importing task:
-            android-jar, android-aidl, aapt, aidl, and dx
+            android.jar, android.aidl, aapt, aidl, and dx
 
         Additionnaly, the task sets up the following classpath reference:
             android.target.classpath
     <!-- Custom tasks -->
     <taskdef name="aaptexec"
         classname="com.android.ant.AaptExecLoopTask"
-        classpathref="android.antlibs"/>
+        classpathref="android.antlibs" />
 
     <taskdef name="apkbuilder"
         classname="com.android.ant.ApkBuilderTask"
-        classpathref="android.antlibs"/>
+        classpathref="android.antlibs" />
 
     <!-- Properties -->
 
-    <property name="android.tools.dir" location="${sdk-location}/tools" />
+    <property name="android.tools.dir" location="${sdk.dir}/tools" />
 
     <!-- Input directories -->
     <property name="source.dir" location="src" />
 
     <!-- Out directory for a parent project if this project is an instrumentation project -->
     <property name="main.out.dir" location="../${out.dir}" />
-    <property name="main.out.classes.dir" location="${main.out.dir}/classes"/>
+    <property name="main.out.classes.dir" location="${main.out.dir}/classes" />
 
     <!-- Intermediate files -->
     <property name="dex.file.name" value="classes.dex" />
     <property name="intermediate.dex.file" location="${out.dir}/${dex.file.name}" />
 
     <!-- The final package file to generate -->
-    <property name="out.debug.unaligned.package" location="${out.dir}/${ant.project.name}-debug-unaligned.apk"/>
-    <property name="out.debug.package" location="${out.dir}/${ant.project.name}-debug.apk"/>
-    <property name="out.unsigned.package" location="${out.dir}/${ant.project.name}-unsigned.apk"/>
-    <property name="out.unaligned.package" location="${out.dir}/${ant.project.name}-unaligned.apk"/>
-    <property name="out.release.package" location="${out.dir}/${ant.project.name}-release.apk"/>
+    <property name="out.debug.unaligned.package" location="${out.dir}/${ant.project.name}-debug-unaligned.apk" />
+    <property name="out.debug.package" location="${out.dir}/${ant.project.name}-debug.apk" />
+    <property name="out.unsigned.package" location="${out.dir}/${ant.project.name}-unsigned.apk" />
+    <property name="out.unaligned.package" location="${out.dir}/${ant.project.name}-unaligned.apk" />
+    <property name="out.release.package" location="${out.dir}/${ant.project.name}-release.apk" />
 
     <!-- Tools -->
-    <condition property="exe" value=".exe" else=""><os family="windows"/></condition>
-    <property name="adb" location="${android.tools.dir}/adb${exe}"/>
+    <condition property="exe" value=".exe" else=""><os family="windows" /></condition>
+    <property name="adb" location="${android.tools.dir}/adb${exe}" />
     <property name="zipalign" location="${android.tools.dir}/zipalign${exe}" />
 
     <!-- Rules -->
@@ -88,7 +88,7 @@
             <arg value="-S" />
             <arg path="${resource.dir}" />
             <arg value="-I" />
-            <arg path="${android-jar}" />
+            <arg path="${android.jar}" />
         </exec>
     </target>
 
     <target name="-aidl" depends="-dirs">
         <echo>Compiling aidl files into Java classes...</echo>
         <apply executable="${aidl}" failonerror="true">
-            <arg value="-p${android-aidl}" />
+            <arg value="-p${android.aidl}" />
             <arg value="-I${source.dir}" />
             <arg value="-o${gen.dir}" />
             <fileset dir="${source.dir}">
-                <include name="**/*.aidl"/>
+                <include name="**/*.aidl" />
             </fileset>
         </apply>
     </target>
             <src path="${source.dir}" />
             <src path="${gen.dir}" />
             <classpath>
-                <fileset dir="${external.libs.dir}" includes="*.jar"/>
-                <pathelement path="${main.out.classes.dir}"/>
+                <fileset dir="${external.libs.dir}" includes="*.jar" />
+                <pathelement path="${main.out.classes.dir}" />
             </classpath>
          </javac>
     </target>
             <arg value="--dex" />
             <arg value="--output=${intermediate.dex.file}" />
             <arg path="${out.classes.dir}" />
-            <fileset dir="${external.libs.dir}" includes="*.jar"/>
+            <fileset dir="${external.libs.dir}" includes="*.jar" />
         </apply>
     </target>
 
                 manifest="AndroidManifest.xml"
                 resources="${resource.dir}"
                 assets="${asset.dir}"
-                androidjar="${android-jar}"
+                androidjar="${android.jar}"
                 outfolder="${out.dir}"
                 basename="${ant.project.name}" />
     </target>
         <!-- Gets passwords -->
         <input
                 message="Please enter keystore password (store:${key.store}):"
-                addproperty="key.store.password"/>
+                addproperty="key.store.password" />
         <input
                 message="Please enter password for alias '${key.alias}':"
-                addproperty="key.alias.password"/>
+                addproperty="key.alias.password" />
 
         <!-- Signs the APK -->
         <echo>Signing final apk...</echo>
                 keystore="${key.store}"
                 storepass="${key.store.password}"
                 alias="${key.alias}"
-                keypass="${key.alias.password}"/>
+                keypass="${key.alias.password}" />
 
         <!-- Zip aligns the APK -->
         <echo>Running zip align on final apk...</echo>
     <!-- Uninstalls the package from the default emulator/device -->
     <target name="-uninstall-check">
         <condition property="uninstall.run">
-           <isset property="application-package" />
+           <isset property="application.package" />
         </condition>
     </target>
 
     <target name="-uninstall-error" depends="-uninstall-check" unless="uninstall.run">
-        <echo>Unable to run 'ant uninstall', application-package is not defined in build.properties</echo>
+        <echo>Unable to run 'ant uninstall', application.package is not defined in build.properties</echo>
     </target>
 
     <target name="uninstall" depends="-uninstall-error" if="uninstall.run" description="Uninstalls the application from a running emulator or device.">
-        <echo>Uninstalling ${application-package} from the default emulator or device...</echo>
+        <echo>Uninstalling ${application.package} from the default emulator or device...</echo>
         <exec executable="${adb}" failonerror="true">
             <arg value="uninstall" />
-            <arg value="${application-package}" />
+            <arg value="${application.package}" />
         </exec>
     </target>
 
index 8a9ea73..ca15954 100644 (file)
@@ -11,7 +11,7 @@
          used by the Ant rules.
          Here are some properties you may want to change/update:
 
-         application-package
+         application.package
              the name of your application package as defined in the manifest. Used by the
              'uninstall' rule.
          source.dir
@@ -29,7 +29,7 @@
     <property file="build.properties" />
 
     <!-- The default.properties file is created and updated by the 'android' tool, as well
-         as ADT. 
+         as ADT.
          This file is an integral part of the build system for your application and
          should be checked in in Version Control Systems. -->
     <property file="default.properties" />
     <!-- Custom Android task to deal with the project target, and import the proper rules.
          This requires ant 1.6.0 or above. -->
     <path id="android.antlibs">
-        <pathelement path="${sdk-location}/tools/lib/anttasks.jar" />
-        <pathelement path="${sdk-location}/tools/lib/sdklib.jar" />
-        <pathelement path="${sdk-location}/tools/lib/androidprefs.jar" />
-        <pathelement path="${sdk-location}/tools/lib/apkbuilder.jar" />
-        <pathelement path="${sdk-location}/tools/lib/jarutils.jar" />
+        <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />
+        <pathelement path="${sdk.dir}/tools/lib/sdklib.jar" />
+        <pathelement path="${sdk.dir}/tools/lib/androidprefs.jar" />
+        <pathelement path="${sdk.dir}/tools/lib/apkbuilder.jar" />
+        <pathelement path="${sdk.dir}/tools/lib/jarutils.jar" />
     </path>
 
     <taskdef name="setup"
@@ -58,7 +58,7 @@
          - copy the content of the main node <project> from android_rules.xml
          - paste it in this build.xml below the <setup /> task.
          - disable the import by changing the setup task below to <setup import="false" />
-         
+
          This will ensure that the properties are setup correctly but that your customized
          build steps are used.
     -->
index f2b73c0..8ab7fcb 100644 (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),