Changes between Version 43 and Version 44 of AndroidPort


Ignore:
Timestamp:
Jan 2, 2012, 8:18:27 AM (12 years ago)
Author:
Anders Feder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v43 v44  
    108108
    109109== Setting up your workstation ==
    110 For everything else than actually running the application, we will use a PC workstation. This section will assume your workstation runs Ubuntu Linux, but the steps should be relatively easy to adapt to other platforms.
     110For everything else than actually running the application, we will use a PC workstation. This section will assume your workstation runs Ubuntu Linux, but the steps should be relatively easy to adapt to other platforms. Let's begin by setting up a working directory for the project:
    111111
    112 First of all, you need to [http://developer.android.com/sdk/installing.html install the Android SDK]. Download the SDK package from [http://developer.android.com/sdk/index.html this page] and unpack it somewhere you can remember. You also need to install a Java Development Kit (JDK) if you haven't already, e.g. [https://apps.ubuntu.com/cat/applications/oneiric/default-jdk/ the standard JDK from Ubuntu Software Center].
     112{{{
     113mkdir ~/android
     114}}}
     115
     116
     117Next, you need to [http://developer.android.com/sdk/installing.html install the Android SDK]. Download the SDK package from [http://developer.android.com/sdk/index.html this page] to the project directory and unpack it there, e.g.:
     118
     119{{{
     120cd ~/android
     121tar -xvf android-sdk_r16-linux.tgz
     122}}}
     123
     124
     125You also need to install a Java Development Kit (JDK) if you haven't already, e.g. [https://apps.ubuntu.com/cat/applications/oneiric/default-jdk/ the standard JDK from Ubuntu Software Center].
    113126
    114127If 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.
     
    122135
    123136{{{
    124 $ mkdir ~/android
    125137$ cd ~/android
    126138$ repo init -u https://android.googlesource.com/platform/manifest