January 2019
Intermediate to advanced
392 pages
10h 11m
English
The Android Maven module is used to build applications for the Android OS and assemble libraries. These are to be used to create the Android Archive Library (AAR) and the inheritance APKLIB format, thus utilizing Apache Maven.
Here is a code sample of how to add a dependency of Android in pom.xml:
<dependencies> <!-- https://mvnrepository.com/artifact/org.springframework.android/spring-android-rest-template --> <dependency> <groupId>org.springframework.android</groupId> <artifactId>spring-android-rest-template</artifactId> <version>2.0.0.BUILD-SNAPSHOT</version> </dependency><!-- https://mvnrepository.com/artifact/org.springframework.android/spring-android-core --> <dependency> <groupId>org.springframework.android</groupId> <artifactId>spring-android-core</artifactId> ...
Read now
Unlock full access