org.kevoree.library.android.nfcdemo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kevoree.corelibrary.android</groupId>
<artifactId>org.kevoree.library.android.nfcdemo</artifactId>
<version>2.0.5</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>org.kevoree.library.android.root</artifactId>
<groupId>org.kevoree.corelibrary.android</groupId>
<version>2.0.5</version>
<relativePath>../org.kevoree.library.android.root/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.kevoree.library.android.nfcdemo</artifactId>
<name>Kevoree :: CoreLibrary :: Android :: NFC Demo</name>
<dependencies>
<dependency>
<groupId>org.kevoree.corelibrary.android</groupId>
<artifactId>org.kevoree.library.android.nodeType</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- android dex phase -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>generate-dex</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${android.tools.dx}</executable>
<arguments>
<argument>--dex</argument>
<argument>--core-library</argument>
<argument>--output=${project.build.directory}/classes.dex</argument>
<argument>${project.build.directory}/${project.build.finalName}.jar</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>prepare-dexed-jar</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${android.tools.aapt}</executable>
<workingDirectory>${project.build.directory}</workingDirectory>
<arguments>
<argument>add</argument>
<argument>${project.build.directory}/${project.build.finalName}.jar</argument>
<argument>classes.dex</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>