Using maven android archetype with eclipse

后端 未结 2 1413
清酒与你
清酒与你 2021-01-31 22:04

I am trying to use the following archetype. https://github.com/akquinet/android-archetypes/wiki/Android-release-archetype

I can follow the instructions on the page fine

2条回答
  •  情深已故
    2021-01-31 22:41

    If you are starting with a new project you can use the Maven Android archetypes to create Android projects completely within Eclipse you just need to do the following:

    1. Create a new Maven Project (File -> New -> Project... then select Maven -> Maven Project).
    2. When prompted to Select Archetype click Add Archetype...
    3. In the dialog that appears enter "de.akquinet.android.archetypes" for Archetype Group Id.
    4. In Archetype Artifact Id enter "android-quickstart".
    5. In Archetype Version enter "1.0.6" and continue.
    6. When prompted enter your desired project group and artifact ID, version and, optionally, set the "platform" property for the Android version (defaults to '7').
    7. Set the "android-plugin-version" property for the Android version to '3.0.0'.
    8. Click Finish
    9. Right-click on new project and select Maven -> Update Project Configuration.

提交回复
热议问题