The application I am developing needs to access library stubs from 2
different add-ons directory. Both add-ons are intealled via the sdk manager.
Up to version 19 of the Android sdk tools, I was to specify the path to the
library for the second package in ant.properties using
extensible.libs.classpath=${sdk.dir}/add-ons/<vendorspecific>/libs
and I was setting the project target to "Google Inc.:Google APIs:15" so
that maps api could be used.
android update project --target "Google Inc.:Google APIs:15" --path .
Now on Android sdk tools version 20, the usage of extensible.libs.classpath
variable has been removed from build.xml section
<target name="-compile" ...
...
<classpath>
<fileset dir="${extensible.libs.classpath}"
includes="*.jar" />
</classpath>
What is the recommended approach to be able to specify additional classpath
to include library in such case?
Since the add-ons libraries are coming from 2 different vendors, they are
obviously in 2 different locations.
Thanks
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en