diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2010-10-27 16:45:46 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2010-10-27 16:45:46 -0700 |
commit | 7b8e64de9afc64602d2c7dee1a721fd7c04f546d (patch) | |
tree | 7f62c5d9d9a27b7b8a897b72099f7adc44f1fa79 | |
parent | 2067929e3e3297b0fd93baec2c3794461e7bcc54 (diff) | |
parent | 40a26da69f5973d2570f4e9067131fd4c01b1bfe (diff) | |
download | sdk-7b8e64de9afc64602d2c7dee1a721fd7c04f546d.zip sdk-7b8e64de9afc64602d2c7dee1a721fd7c04f546d.tar.gz sdk-7b8e64de9afc64602d2c7dee1a721fd7c04f546d.tar.bz2 |
merge from tools_r8
Change-Id: I8792be345899be48cbe7c22f386f09fd4aa13691
-rw-r--r-- | files/ant/lib_rules.xml | 5 | ||||
-rw-r--r-- | files/ant/main_rules.xml | 3 |
2 files changed, 2 insertions, 6 deletions
diff --git a/files/ant/lib_rules.xml b/files/ant/lib_rules.xml index a1b2217..96dc407 100644 --- a/files/ant/lib_rules.xml +++ b/files/ant/lib_rules.xml @@ -32,11 +32,6 @@ <!-- Properties --> - <!-- Tells adb which device to target. You can change this from the command line - by invoking "ant -Dadb.device.arg=-d" for device "ant -Dadb.device.arg=-e" for - the emulator. --> - <property name="adb.device.arg" value="" /> - <property name="android.tools.dir" location="${sdk.dir}/tools" /> <!-- Name of the application package extracted from manifest file --> <xpath input="AndroidManifest.xml" expression="/manifest/@package" diff --git a/files/ant/main_rules.xml b/files/ant/main_rules.xml index f573f48..7be13d7 100644 --- a/files/ant/main_rules.xml +++ b/files/ant/main_rules.xml @@ -42,6 +42,7 @@ <property name="adb.device.arg" value="" /> <property name="android.tools.dir" location="${sdk.dir}/tools" /> + <property name="android.platform.tools.dir" location="${sdk.dir}/platform-tools" /> <!-- Name of the application package extracted from manifest file --> <xpath input="AndroidManifest.xml" expression="/manifest/@package" output="manifest.package" /> @@ -157,7 +158,7 @@ <!-- Tools --> <condition property="exe" value=".exe" else=""><os family="windows" /></condition> - <property name="adb" location="${android.tools.dir}/adb${exe}" /> + <property name="adb" location="${android.platform.tools.dir}/adb${exe}" /> <property name="zipalign" location="${android.tools.dir}/zipalign${exe}" /> <!-- Emma configuration --> |