sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.chrisbanes.photoview</groupId> <artifactId>sample</artifactId> <version>1.2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.chrisbanes.photoview</groupId> <artifactId>sample</artifactId> <packaging>apk</packaging> <name>PhotoView Sample</name> <parent> <groupId>com.github.chrisbanes.photoview</groupId> <artifactId>parent</artifactId> <version>1.2.2</version> </parent> <dependencies> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>library</artifactId> <type>jar</type> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.android</groupId> <artifactId>support-v4</artifactId> <version>r7</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> </plugin> </plugins> </build> </project>