Advertisement
arsen_aar

Untitled

Nov 6th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.68 KB | None | 0 0
  1.     <!-- HACK to add the android-support-v4.jar to the classpath directly from the SDK -->
  2.     <target name="-pre-compile">
  3.         <echo>ORIGINAL jars.path : ${toString:project.all.jars.path}</echo>
  4.    
  5.         <path id="project.all.jars.path.hacked">
  6.                 <path path="${toString:project.all.jars.path}"/>
  7.                 <fileset dir="${jar.libs.dir}">
  8.                     <include name="*.jar"/>
  9.                 </fileset>
  10.         </path>
  11.  
  12.         <path id="project.all.jars.path">
  13.             <path path="${toString:project.all.jars.path.hacked}"/>
  14.         </path>
  15.        
  16.         <echo>HACKED jars.path : ${toString:project.all.jars.path}</echo>
  17.     </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement