Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created June 30, 2013 13:57
Show Gist options
  • Save yuuichi-fujioka/5895220 to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/5895220 to your computer and use it in GitHub Desktop.
Create android project with Maven.
mvn archetype:generate \
-DarchetypeArtifactId=android-library-quickstart \
-DarchetypeGroupId=de.akquinet.android.archetypes \
-DarchetypeVersion=1.0.10 \
-Dandroid-plugin-version=3.6.0 \
-DgroupId=com.foo.bar \
-DartifactId=my-android-project \
-Dpackage=com.foo.bar.android
mvn archetype:generate \
-DarchetypeArtifactId=android-quickstart \
-DarchetypeGroupId=de.akquinet.android.archetypes \
-DarchetypeVersion=1.0.10 \
-Dandroid-plugin-version=3.6.0 \
-DgroupId=com.foo.bar \
-DartifactId=my-android-project \
-Dpackage=com.foo.bar.android
mvn archetype:generate \
-DarchetypeArtifactId=android-release \
-DarchetypeGroupId=de.akquinet.android.archetypes \
-DarchetypeVersion=1.0.10 \
-Dandroid-plugin-version=3.6.0 \
-DgroupId=com.foo.bar \
-DartifactId=my-android-project \
-Dpackage=com.foo.bar.android
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment