Changes between Version 3 and Version 4 of DeveloperGuidelines/Mobile/Android
- Timestamp:
- 07/22/10 11:46:32 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Mobile/Android
v3 v4 5 5 * Install Java 1.6+ 6 6 7 * Install Android SDK http://developer.android.com/sdk/index.html7 * Install Android SDK: http://developer.android.com/sdk/index.html 8 8 9 9 * Install ANT, primarily a cross platform Java build automation tool. … … 12 12 # Add '%ANT_HOME%\bin' directory to 'PATH' environment variable.[[BR]] 13 13 14 * Clone "Collect" source from repository 14 === Clone "Collect" source from repository === 15 15 16 First you need yet another SCM tool, introducing HG Mercurial: 17 Install HG Mercurial appropriate to your platform: http://mercurial.selenic.com/downloads/ During setup defaults will suffice. 16 First you need yet another SCM tool, HG Mercurial: 17 * http://mercurial.selenic.com/downloads/ 18 * defaults will suffice during setup 18 19 19 20 * Next we'll copy the code per http://code.google.com/p/opendatakit/source/checkout?repo=collect 20 21 21 Get a local copy of the opendatakit collect repository with this command: ''hg clone https://collect.opendatakit.googlecode.com/hg/ opendatakit-collect'' 22 Get a local copy of the opendatakit collect repository with this command: 23 {{{ 24 hg clone https://collect.opendatakit.googlecode.com/hg/ opendatakit-collect 25 }}} 22 26 23 27 Assuming the source: "https://collect.opendatakit.googlecode.com/hg/ opendatakit-collect" and destination of c:\temp\collect, source files from Google will be located @ c:\temp\collect\src[[BR]] 24 28 25 * Editing Code 29 === Editing Code === 26 30 27 31 Import project into Eclipse (loaded with Android plugin http://developer.android.com/sdk/eclipse-adt.html) … … 33 37 To deploy you'll need to create a self signed keystore and use the .apk packaging wizard(Right click on project, menu Android tools, Export signed). 34 38 35 References: 39 === References === 36 40 * ANT samples 37 41 * http://code.google.com/p/autoandroid/wiki/AndroidAnt 38 42 * http://www.disgruntledrats.com/?p=27 39 * [http://code.google.com/p/opendatakit/source/checkout?repo=collect "Collect" Google code repository] 40 * http://developer.android.com/sdk/installing.html 43 44 ---- 45 [wiki:BluePrintMessagingModuleJ2ME]