Declaring Android Libraries

In Android, libraries can be provided as jar.

Jar files

To be able to import a jar in the specific code for an Android target, declare it using the tag <specific><android><library>.

<specific>
   <android>
      <!-- Android third party library -->
      <library path="lib/myLibrary.jar"/>
   </android>
</specific>