compliancechecker


Maven-Plugin for checking API compliance to a certain Android API Level

Developers who are writing java libraries that should be used in J2SE as well as in android projects have sooner or later to make sure that they are compliant to a certain android api level. This maven plugin allows to check your compiled class files against a certain android api level for compliance.

Usage

Annotate your code that should be checked. ``` @AndroidCompatible(apiLevel = 7) public class ShouldBeCompliant {

} And run the plugin using maven. com.googlecode.android-compliance-checker android-compliance-plugin 0.0.1-SNAPSHOT /opt/android_sdk process-classes check ```

Build

Check the sources out using git. git clone https://code.google.com/p/compliancechecker/ And run maven in the android-maven-plugin directory. mvn clean install

Project Information

The project was created on Jul 13, 2012.

Labels:
java android maven plugin