aboutsummaryrefslogtreecommitdiffstats
path: root/anttasks
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2010-05-11 18:05:56 -0700
committerXavier Ducrohet <xav@android.com>2010-05-12 15:41:18 -0700
commitd5579c79e7dcb1eda9835f5a2c7299be7eab28b0 (patch)
tree65fbc83944a75ae5d3072fa3c668a7cb8b839bd1 /anttasks
parent59da9bc56197599974ec72e9c4f35bf089548e56 (diff)
downloadsdk-d5579c79e7dcb1eda9835f5a2c7299be7eab28b0.zip
sdk-d5579c79e7dcb1eda9835f5a2c7299be7eab28b0.tar.gz
sdk-d5579c79e7dcb1eda9835f5a2c7299be7eab28b0.tar.bz2
Refactored the Android Manifest into sdklib.
API change to make it use IFileWrapper instead of IFile. Old AndroidManifestParser changed to AndroidManifestHelper which is now mostly wrapper methods to add Eclipse specific parameters. Also moved ADT...AndroidConstants.CLASS_* to sdklib...SdkConstants (needed by the parser) and removed AndroidConstants.FN_ANDROID_MANIFEST since SdkConstants.FN_ANDROID_MANIFEST_XML existed too. Moved the Eclipse implementation of IAbstractFile/Folder Change-Id: I59bdbe90ba9a4c0b5bb2c4c68945b8877d4eed3d
Diffstat (limited to 'anttasks')
-rw-r--r--anttasks/src/com/android/ant/MultiApkExportTask.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/anttasks/src/com/android/ant/MultiApkExportTask.java b/anttasks/src/com/android/ant/MultiApkExportTask.java
index 50325a4..850004e 100644
--- a/anttasks/src/com/android/ant/MultiApkExportTask.java
+++ b/anttasks/src/com/android/ant/MultiApkExportTask.java
@@ -76,7 +76,11 @@ public class MultiApkExportTask extends Task {
private final static int INDEX_MINOR = 2;
private final static int INDEX_MINSDK = 3;
private final static int INDEX_ABI = 4;
- private final static int INDEX_MAX = 5;
+ private final static int INDEX_OPENGL = 5;
+ private final static int INDEX_SCREENSIZE = 6;
+ private final static int INDEX_LOCALES = 7;
+ private final static int INDEX_DENSITY = 8;
+ private final static int INDEX_MAX = 9;
String outputName;
String relativePath;
@@ -565,6 +569,8 @@ public class MultiApkExportTask extends Task {
dataList.add(data);
data.minSdkVersion = minSdkVersion;
+
+
// only look for more exports if the target is not clean.
if (mTarget != Target.CLEAN) {
// load the project properties