diff options
author | Xavier Ducrohet <xav@android.com> | 2010-01-21 12:30:36 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2010-01-21 15:18:44 -0800 |
commit | ccea4ad79984504212b29788bec9d42e54846c2b (patch) | |
tree | caf3d6deb208f060fe7727e8c6a73ad727b3fa6d /anttasks | |
parent | 32cfca5838558c0beb9b771e3b2e880047eb8053 (diff) | |
download | sdk-ccea4ad79984504212b29788bec9d42e54846c2b.zip sdk-ccea4ad79984504212b29788bec9d42e54846c2b.tar.gz sdk-ccea4ad79984504212b29788bec9d42e54846c2b.tar.bz2 |
Add support for packaging gdbserver in the apk in Ant.
This must only be done in debug so there's a new flag
to detect debug mode. Support for this is added to the
build script, the Ant task and ApkBuilder itself.
Change-Id: Iaebdc60cc3e8fa08c8cb75c885a6a0db556bfd86
Diffstat (limited to 'anttasks')
-rw-r--r-- | anttasks/src/com/android/ant/ApkBuilderTask.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/anttasks/src/com/android/ant/ApkBuilderTask.java b/anttasks/src/com/android/ant/ApkBuilderTask.java index 85a6445..b1e6d80 100644 --- a/anttasks/src/com/android/ant/ApkBuilderTask.java +++ b/anttasks/src/com/android/ant/ApkBuilderTask.java @@ -64,6 +64,7 @@ public class ApkBuilderTask extends Task { private String mBaseName; private boolean mVerbose = false; private boolean mSigned = true; + private boolean mDebug = false; private final ArrayList<Value> mZipList = new ArrayList<Value>(); private final ArrayList<Value> mFileList = new ArrayList<Value>(); @@ -111,6 +112,14 @@ public class ApkBuilderTask extends Task { } /** + * Sets the value of the "debug" attribute. + * @param debug the debug mode value. + */ + public void setDebug(boolean debug) { + mDebug = debug; + } + + /** * Returns an object representing a nested <var>zip</var> element. */ public Object createZip() { @@ -171,6 +180,7 @@ public class ApkBuilderTask extends Task { ApkBuilderImpl apkBuilder = new ApkBuilderImpl(); apkBuilder.setVerbose(mVerbose); apkBuilder.setSignedPackage(mSigned); + apkBuilder.setDebugMode(mDebug); try { // setup the list of everything that needs to go in the archive. @@ -207,7 +217,7 @@ public class ApkBuilderTask extends Task { String parameter = v.mPath; File f = new File(parameter); - ApkBuilderImpl.processNativeFolder(f, mNativeLibraries); + ApkBuilderImpl.processNativeFolder(f, mDebug, mNativeLibraries); } // create the Path item that will contain all the generated APKs |