Link android.target.classpath not found

I am working on an Ant script to build Android, but I come up with an error

Link android.target.classpath not found

I can not find any information about which android.target.classpath file or where it is installed. Somebody knows?

+6
source share
2 answers

it is in the buit class file android.jar. Not your bug.it - ​​a good habit of finding a bug with logcat

-6
source

With version 20 of the SDK, the new name of the old android.target.classpath is equal to project.target.class.path .

For Android developers, it should be very fun to break the build.xml API with each version.

+29
source

Source: https://habr.com/ru/post/893336/


All Articles