1<?xml version="1.0" encoding="UTF-8"?> 2<project name="NativeActivity" default="help"> 3 4<property name="cubeWithLayersDir" location="../libs-with-layers" /> 5<property name="cubeDir" location="../libs" /> 6<property name="layersDir" location="../../../build-android/libs" /> 7 8<echo>CubeWithLayers: Creating libs-with-layers</echo> 9<mkdir dir="${cubeWithLayersDir}"/> 10 11<echo>CubeWithLayers: Copying libs from demos/android</echo> 12<copy todir="${cubeWithLayersDir}"> 13<fileset dir="${cubeDir}"/> 14</copy> 15 16<echo>CubeWithLayers: Copying layers from build-android</echo> 17<copy todir="${cubeWithLayersDir}"> 18<fileset dir="${layersDir}"/> 19</copy> 20 21<!-- Point ndk-build at the libs-with-layers common dir --> 22<echo>CubeWithLayers: Overriding native.libs.absolute.dir with ${cubeWithLayersDir}</echo> 23<property name="native.libs.absolute.dir" location="${cubeWithLayersDir}" /> 24 25</project> 26