Adding animal sniffer to display all issues related to android compatibility. (#1050)
This commit is contained in:
parent
8c43e21094
commit
2c60f5b5e3
23
pom.xml
23
pom.xml
|
@ -391,6 +391,29 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
||||||
|
<version>1.22</version>
|
||||||
|
<configuration>
|
||||||
|
<signature>
|
||||||
|
<groupId>net.sf.androidscents.signature</groupId>
|
||||||
|
<artifactId>android-api-level-26</artifactId>
|
||||||
|
<version>8.0.0_r2</version>
|
||||||
|
</signature>
|
||||||
|
<failOnError>false</failOnError>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>check-android-26-compliance</id>
|
||||||
|
<phase>test</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue