aboutsummaryrefslogtreecommitdiffstats
path: root/make/jogamp-androidtasks.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-05-09 15:04:44 +0200
committerSven Gothel <[email protected]>2012-05-09 15:04:44 +0200
commit64d17fc39efcfff0f8187b2b8a1c433520dc2973 (patch)
treee4325aae2d592eec8f4f34e6e3fe625b87c14155 /make/jogamp-androidtasks.xml
parent069a37b9c247e5e24d91f933dff80e6a90d7f67a (diff)
Fix Android AAPT Task/Macro: Put temp src/classes folder (R.java) aside image folder ..
.. so they are not included in the APK. Including them in the APK causes Google market/play to use both as platform filters (0 devices if no native folder is present).
Diffstat (limited to 'make/jogamp-androidtasks.xml')
-rw-r--r--make/jogamp-androidtasks.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/make/jogamp-androidtasks.xml b/make/jogamp-androidtasks.xml
index 64becda..f37e42c 100644
--- a/make/jogamp-androidtasks.xml
+++ b/make/jogamp-androidtasks.xml
@@ -74,10 +74,10 @@
<delete file="${m.aapt.release.file.name}" includeEmptyDirs="true" quiet="true" failonerror="false" />
<delete dir="${m.aapt.build.apk}" includeEmptyDirs="true" quiet="true" failonerror="false" />
+ <mkdir dir="${m.aapt.build.apk}/temp/src" />
+ <mkdir dir="${m.aapt.build.apk}/temp/classes" />
<mkdir dir="${m.aapt.build.apk}/image/assets" />
<mkdir dir="${m.aapt.build.apk}/image/lib/@{android.abi}" />
- <mkdir dir="${m.aapt.build.apk}/image/lib/src" />
- <mkdir dir="${m.aapt.build.apk}/image/lib/classes" />
<copy todir="${m.aapt.build.apk}/image/lib/@{android.abi}">
<fileset dir="@{nativebuilddir}">
<include name="*@{nativebasename}*.${native.library.suffix}" />
@@ -110,7 +110,7 @@
<arg line="-I"/>
<arg line="${android.jar}"/>
<arg line="-J"/>
- <arg line="${m.aapt.build.apk}/image/lib/src"/>
+ <arg line="${m.aapt.build.apk}/temp/src"/>
</exec>
<echo>aapt.signed @{jarbasename}: compiling R.java...</echo>
@@ -119,9 +119,9 @@
target="${target.targetlevel}"
bootclasspath="${target.rt.jar}"
debug="false" extdirs=""
- destdir="${m.aapt.build.apk}/image/lib/classes"
+ destdir="${m.aapt.build.apk}/temp/classes"
verbose="true">
- <src path="${m.aapt.build.apk}/image/lib/src" />
+ <src path="${m.aapt.build.apk}/temp/src" />
<classpath>
<!-- path refid="@{jarclasspathrefid}"/-->
<pathelement location="@{jarbuilddir}/@{jarbasename}.jar" />
@@ -134,7 +134,7 @@
<arg line="--dex"/>
<arg line="--output=${m.aapt.dex.file}"/>
<arg line="@{jarbuilddir}/@{jarbasename}.jar"/>
- <arg line="${m.aapt.build.apk}/image/lib/classes"/>
+ <arg line="${m.aapt.build.apk}/temp/classes"/>
</exec>
<path id="android.antlibs">