aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.gradle4
-rw-r--r--files/ant/build.xml2
2 files changed, 5 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index d8acb68..350f466 100644
--- a/build.gradle
+++ b/build.gradle
@@ -37,6 +37,10 @@ sdk {
into 'ant'
notice 'files/ant/NOTICE'
}
+ item('files/proguard-project.txt') {
+ into 'lib'
+ notice null
+ }
item('files/devices.xml') {
into 'lib'
diff --git a/files/ant/build.xml b/files/ant/build.xml
index 66d7139..222e7d1 100644
--- a/files/ant/build.xml
+++ b/files/ant/build.xml
@@ -157,7 +157,6 @@
<condition property="exe" value=".exe" else=""><os family="windows" /></condition>
<condition property="bat" value=".bat" else=""><os family="windows" /></condition>
<property name="adb" location="${android.platform.tools.dir}/adb${exe}" />
- <property name="zipalign" location="${android.tools.dir}/zipalign${exe}" />
<property name="lint" location="${android.tools.dir}/lint${bat}" />
<!-- Intermediate files -->
@@ -485,6 +484,7 @@
<property name="aidl" location="${android.build.tools.dir}/aidl${exe}" />
<property name="aapt" location="${android.build.tools.dir}/aapt${exe}" />
<property name="dx" location="${android.build.tools.dir}/dx${bat}" />
+ <property name="zipalign" location="${android.build.tools.dir}/zipalign${exe}" />
<!-- read the previous build mode -->
<property file="${out.build.prop.file}" />