Changes between Version 41 and Version 42 of AndroidPort


Ignore:
Timestamp:
Jan 1, 2012, 9:22:32 PM (12 years ago)
Author:
Anders Feder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v41 v42  
    114114If you intend to do any development, you may want to install [https://apps.ubuntu.com/cat/applications/oneiric/eclipse-platform/ Eclipse] and the [http://developer.android.com/sdk/eclipse-adt.html#installing Android Development Tools (ADT) plugin for Eclipse]. If you only intend to build the game, the command-line tools provided by the SDK should be sufficient.
    115115
    116 Next, you have to get the Android source code as we will need its header files to compile custom shared libraries. First make sure `git` is installed on your machine:
     116Next, you have to get the Android source code as we will need its header files to compile custom shared libraries. First make sure `git` is installed on your machine:
    117117
    118118{{{
    119119$ sudo apt-get install git
    120120}}}
     121Then [http://source.android.com/source/downloading.html install Google's Repo tool]. Once Repo is installed, create a working directory and download the code:
    121122
    122 
    123 Then [http://source.android.com/source/downloading.html install Google's Repo tool].
     123{{{
     124$ mkdir ~/android
     125$ cd ~/android
     126$ repo init -u https://android.googlesource.com/platform/manifest
     127$ repo sync
     128}}}