Skip to content

Instantly share code, notes, and snippets.

@emartynov
Created April 5, 2013 15:42
Show Gist options
  • Save emartynov/5320312 to your computer and use it in GitHub Desktop.
Save emartynov/5320312 to your computer and use it in GitHub Desktop.
Android maven plugin configuration for resources
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android-maven-plugin.version}</version>
<configuration>
<resourceDirectory>${project.build.directory}/filtered-res</resourceDirectory>
<assetsDirectory>${project.build.directory}/filtered-assets</assetsDirectory>
<androidManifestFile>${project.build.directory}/AndroidManifest.xml</androidManifestFile>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment