1

I have an android application created and built in eclipse, it's made of 2 projects containing several packages. I need to build it out of eclipse in order to get the build.xml file. I found this:

  android create project \
--package com.example.helloandroid \
--activity HelloAndroid \
--target 2 \
--path <path-to-your-project>/HelloAndroid

problem is, I have many packages and I'm not sure how to build it. do I need to specify all of them? how?

Noga
  • 145
  • 1
  • 7
  • my solution was to build my project in eclipse, using the option of export -> ant buildfile which generated the build.xml file I needed. – Noga Mar 03 '12 at 10:46

1 Answers1

0

This seems similar to the solution you're looking for I assume:

Compile android project to apk without eclipse

Community
  • 1
  • 1
eWizardII
  • 1,916
  • 4
  • 32
  • 55