diff options
Diffstat (limited to 'make/jogamp-androidtasks.xml')
-rw-r--r-- | make/jogamp-androidtasks.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/make/jogamp-androidtasks.xml b/make/jogamp-androidtasks.xml index 9521607..666228b 100644 --- a/make/jogamp-androidtasks.xml +++ b/make/jogamp-androidtasks.xml @@ -32,6 +32,7 @@ --> <macrodef name="aapt.signed"> + <attribute name="jarsrcdir" default="/non.existing.src.path"/> <attribute name="jarbuilddir" /> <attribute name="jarbasename" /> <attribute name="nativebuilddir" /> @@ -85,6 +86,12 @@ </fileset> </copy> + <copy todir="${m.aapt.build.apk}/image" failonerror="false" includeEmptyDirs="false"> + <fileset dir="@{jarsrcdir}" + includes="**" + excludes="**/*.java"/> + </copy> + <copy file="@{androidmanifest.path}" tofile="${m.aapt.build.apk}/image/AndroidManifest.xml"/> <copy file="@{jarmanifest.path}" failonerror="false" tofile="${m.aapt.build.apk}/image/META-INF/MANIFEST.MF"/> |