Skip to content

Instantly share code, notes, and snippets.

@lexer
Created January 5, 2012 07:55
Show Gist options
  • Save lexer/1564176 to your computer and use it in GitHub Desktop.
Save lexer/1564176 to your computer and use it in GitHub Desktop.
Android maven settings.xml
<settings>
<profiles>
<profile>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sign.keystore>${user.home}/keystore/KEYSTORE.keystore</sign.keystore>
<sign.alias>ALIAS</sign.alias>
<sign.keypass>KEYPASS</sign.keypass>
<sign.storepass>STOREPASS</sign.storepass>
<android.sdk.path>${user.home}/android-sdk</android.sdk.path>
</properties>
</profile>
</profiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment