Android min-sdk-version?

Is there a way to set min-sdk-version for AndroidManifest.xml from project.xml?

Yep!

<android minimum-sdk-version="10" />
<!-- or -->
<config:android minimum-sdk-version="10" />

thanks!! that’s exactly what I need.