diff options
author | Xavier Ducrohet <xav@android.com> | 2012-08-14 16:19:54 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-08-15 10:32:14 -0700 |
commit | 813bf88a44dab30cdeb5a4462bd174355bc48f55 (patch) | |
tree | 13e0cc0375a21a17f7ae3495fe317fad356b7fbb /common/src/com/android | |
parent | 2528d6f1dd7074f6a3e3b2e4d31ccc76c62558a8 (diff) | |
download | sdk-813bf88a44dab30cdeb5a4462bd174355bc48f55.zip sdk-813bf88a44dab30cdeb5a4462bd174355bc48f55.tar.gz sdk-813bf88a44dab30cdeb5a4462bd174355bc48f55.tar.bz2 |
Add Ant support for UI automation test.
Also fix a bug in a custom ant task where minSdkVersion and targetApi
were swapped.
Change-Id: Id9bac802377a04270e76def42eaf6a8fb4b3f874
Diffstat (limited to 'common/src/com/android')
-rw-r--r-- | common/src/com/android/SdkConstants.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/src/com/android/SdkConstants.java b/common/src/com/android/SdkConstants.java index b9be585..26db7aa 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -16,8 +16,6 @@ package com.android; -import com.android.AndroidConstants; - import java.io.File; /** @@ -60,6 +58,8 @@ public final class SdkConstants { /** Name of the framework library, i.e. "android.jar" */ public static final String FN_FRAMEWORK_LIBRARY = "android.jar"; //$NON-NLS-1$ + /** Name of the framework library, i.e. "uiautomator.jar" */ + public static final String FN_UI_AUTOMATOR_LIBRARY = "uiautomator.jar"; //$NON-NLS-1$ /** Name of the layout attributes, i.e. "attrs.xml" */ public static final String FN_ATTRS_XML = "attrs.xml"; //$NON-NLS-1$ /** Name of the layout attributes, i.e. "attrs_manifest.xml" */ |