summaryrefslogtreecommitdiff
path: root/android/qa/sc/build.xml
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-08-03 10:49:00 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-08-03 10:50:21 +0100
commitab852cc0b6fe6e3a8b398b7fa0313a1425adf31b (patch)
treeb535de961c8751ff0bac5187c8672725cc2be2b7 /android/qa/sc/build.xml
parentb18e6c7d2c35e781884c30af472143cd2fbc01a6 (diff)
android: share the clobbering of ant rules to not compress resources
Change-Id: Id2aa869f05b09dc22676d63390ec10bf575571ef
Diffstat (limited to 'android/qa/sc/build.xml')
-rw-r--r--android/qa/sc/build.xml31
1 files changed, 1 insertions, 30 deletions
diff --git a/android/qa/sc/build.xml b/android/qa/sc/build.xml
index a55977ad994e..8c88493bc2f3 100644
--- a/android/qa/sc/build.xml
+++ b/android/qa/sc/build.xml
@@ -81,34 +81,5 @@
-->
<!-- version-tag: 1 -->
<import file="${sdk.dir}/tools/ant/build.xml" />
-
- <!-- Re-define the "-package-resources" target to not compress resources -->
-
- <target name="-package-resources" depends="-crunch">
- <!-- only package resources if *not* a library project -->
- <do-only-if-not-library elseText="Library project: do not package resources..." >
- <aapt executable="${aapt}"
- command="package"
- versioncode="${version.code}"
- versionname="${version.name}"
- debug="${build.is.packaging.debug}"
- manifest="AndroidManifest.xml"
- assets="${asset.absolute.dir}"
- androidjar="${android.jar}"
- apkfolder="${out.absolute.dir}"
- nocrunch="${build.packaging.nocrunch}"
- resourcefilename="${resource.package.file.name}"
- resourcefilter="${aapt.resource.filter}"
- projectLibrariesResName="project.libraries.res"
- projectLibrariesPackageName="project.libraries.package"
- previousBuildType="${build.last.target}"
- buildType="${build.target}">
- <res path="${out.res.absolute.dir}" />
- <res path="${resource.absolute.dir}" />
- <nocompress /> <!-- forces no compression on any files in assets or res/raw -->
- <!-- <nocompress extension="xml" /> forces no compression on specific file extensions in assets and res/raw -->
- </aapt>
- </do-only-if-not-library>
- </target>
-
+ <import file="${android.library.reference.1}/no-resource-compress.xml" />
</project>