How do you share an Android project?

2019-04-06 16:49发布

I am trying to send the files from an Android project so that a friend of mine can open a new Android project in eclipse and mess around with code/run the project from their home machine. However, I have run into some problems dealing with missing manifest files, and non-matching signatures.

What is the simplest procedure for bundling up an Android project (not an .apk) to send to someone for their use in eclipse?

2条回答
时光不老,我们不散
2楼-- · 2019-04-06 17:32

The easiest way would be to create a Archive File export. It bundles the projects in your workspace into an exported .zip file. This .zip file can then be import by the other person into eclipse through the Existing Project importer.

To export:

  • File > Export > Archive File

To import:

  • File > Import > Existing Projects into Workspace
  • Select the exported .zip file as the Selected archive file
查看更多
Fickle 薄情
3楼-- · 2019-04-06 17:52

Put it on a source control server, like SVN. If you don't have one, you can use something like Google Code ( http://code.google.com ). Eclipse has built-in source control features to update and commit things to source control.

查看更多
登录 后发表回答