Where is the 'gettarget' macro definition in Android's build.xml -


Then Google went ahead and published a change on build.xml Android, which uses RP20, the Classpath variable Depending on the removal, it seems that now in my project it is using:

  project.target.class.path   

therefore I am using it with the latest SDK in my build.xml tool installed on my machine, and everything is peachy on my end ... but my remote Jenkins Hwar no likey. To solve my problem from both sides I thought I would just remove the code that sets this feature from Android build.xml, and sets my own property. The bit of code in Android Build.XML that appears to be setting up this property is part of the build-setup goal:

  & gettarget androidJarFileOut = "project.target.android Jar "AndroidAidlFileOut =" project.target.framework.aidl "bootClassPathOut =" project.target.class.path "targetApiOut =" project.target.apilevel "minSdkVersionOut =" project.minSdkVersion "/>   

I'm assuming that this is a macro, but when I see it in the intelligencer, the entire part of the code shines with the nose of Rudolph shining in the ice storm. Where is this being defined?

gettarget is an Android ant task, com.android.ant.GetTargetTask.

My guess is that the gettarget functions set the value of all the properties whose names pass as parameters.

Comments